File tree Expand file tree Collapse file tree 6 files changed +29
-3
lines changed Expand file tree Collapse file tree 6 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 3
3
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
4
4
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
5
5
6
+ ## [ 2.2.5] - 2019-01-16
7
+ ### Fixed
8
+ - Update handling of HTTP 412 - Precondition Failed errors
9
+ - Update --display-config to display sync_list if configured
10
+ - Add a check for 'id' key on metadata update to prevent 'std.json.JSONException@std/json.d(494): Key not found: id'
11
+ - Update handling of 'remote' folder designation as 'root' items
12
+ - Ensure that remote deletes are handled correctly
13
+ - Handle 'Item not found' exception when unable to query OneDrive 'root' for changes
14
+ - Add handling for JSON response error when OneDrive API returns a 404 due to OneDrive API regression
15
+ - Fix items highlighted by codacy review
16
+
17
+ ### Added
18
+ - Add --force-http-1.1 flag to downgrade any HTTP/2 curl operations to HTTP 1.1 protocol
19
+ - Support building with ldc2 and usage of pkg-config for lib finding
20
+
6
21
## [ 2.2.4] - 2018-12-28
7
22
### Fixed
8
23
- Resolve JSONException when supplying --get-O365-drive-id option with a string containing spaces
Original file line number Diff line number Diff line change @@ -333,6 +333,14 @@ An example of the log file is below:
333
333
2018-Apr-07 17:09:38.5708652 Applying changes of Path ID: <redacted>
334
334
```
335
335
336
+ ### Notifications
337
+ If notification support is compiled in, the following events will trigger a notification within the display manager session:
338
+ * Aborting a sync if .nosync file is found
339
+ * Cannot create remote directory
340
+ * Cannot upload file changes
341
+ * Cannot delete remote file / folder
342
+ * Cannot move remote file / folder
343
+
336
344
### Uninstall
337
345
``` text
338
346
sudo make uninstall
File renamed without changes.
Original file line number Diff line number Diff line change 1
- .TH ONEDRIVE "1" "December 2018 " "2.2.4 " "User Commands"
1
+ .TH ONEDRIVE "1" "January 2019 " "2.2.5 " "User Commands"
2
2
.SH NAME
3
3
onedrive \- folder synchronization with OneDrive
4
4
.SH SYNOPSIS
@@ -51,6 +51,9 @@ Only download remote changes
51
51
\fB \-\- enable \- logging \fP
52
52
Enable client activity to a separate log file
53
53
.TP
54
+ \fB \-\- force \- http \- 1.1 \fP
55
+ Force the use of HTTP 1.1 for all operations
56
+ .TP
54
57
\fB \-\- get \- O365 \- drive \- id \fP ARG
55
58
Query and return the Office 365 Drive ID for a given Office 365 SharePoint Shared Library
56
59
.TP
Original file line number Diff line number Diff line change 1
1
pkgname=onedrive
2
- pkgver=2.2.4
2
+ pkgver=2.2.5
3
3
pkgrel=1 # patch-level (Increment this when patch is applied)
4
4
pkgdesc=" A free OneDrive Client for Linux. This is a fork of the https://github.com/skilion/onedrive repository"
5
5
license=(" unknown" )
Original file line number Diff line number Diff line change 6
6
%endif
7
7
8
8
Name: onedrive
9
- Version: 2.2.4
9
+ Version: 2.2.5
10
10
Release: 1%{?dist }
11
11
Summary: Microsoft OneDrive Client
12
12
Group: System Environment/Network
You can’t perform that action at this time.
0 commit comments