Releases: siom79/jdrivesync
Releases · siom79/jdrivesync
v0.5.0
Version 0.4.3
- Downloading files that are not Google Docs documents works with v3-API
- If folder is deleted and already exists in .trash folder, it is removed locally and not moved
Version 0.4.2
- Update Metadata works correctly with Google Drive API v3
Version 0.4.1
- Upgraded URL for resumable uploads to v3 API (#22)
Version 0.4.0
Version 0.3.0
- jdrivesync no longer creates per default a log file in current working directory. You can use the option
--log-file
instead to provide the location of a log file. (#5) - jdrivesync now stores the authentication file per default in the user's home directory. You can change this location by using the new option
-a
. (#6) - The new option
--no-delete
does not delete files during synchronization. (#8) - Fixed: Trailing space characters in directory names no longer cause an aborting error. (#13)
- Fixed: Checksum computation does use small byte buffer to circumvent memory pressure. (#14)
Version 0.2.4
- The FINE logging that was default up to version 0.2.3 is now optional and can be enabled by using the new command line options
-v
or--verbose
- Google App documents are ignored during download from Google Drive
Version 0.2.3
- new command line options
--network-number-of-retries
and--network-sleep-between-retries
- chunked uploads using
Drive.getRequestFactory()
instead ofDrive.files().insert()
- new command line option
--http-chunk-size
allows to set size of chunks for chunked upload - chunked uploads are resumable
Version 0.2.2
- Upload speed has been improved by using Google Drive SDK's
drive.getRequestFactory().buildPostRequest()
instead ofdrive.files().insert()
Version 0.2.1
- Added output of upload speed
- removed option for file encryption