mirror of
https://github.com/rclone/rclone.git
synced 2025-01-09 15:58:28 +01:00
Version 1.27
This commit is contained in:
parent
1f3e48f18f
commit
e62c0a58a7
31
MANUAL.html
31
MANUAL.html
@ -1500,6 +1500,37 @@ nounc = true</code></pre>
|
|||||||
<p>This will use UNC paths on <code>c:\src</code> but not on <code>z:\dst</code>. Of course this will cause problems if the absolute path length of a file exceeds 258 characters on z, so only use this option if you have to.</p>
|
<p>This will use UNC paths on <code>c:\src</code> but not on <code>z:\dst</code>. Of course this will cause problems if the absolute path length of a file exceeds 258 characters on z, so only use this option if you have to.</p>
|
||||||
<h2 id="changelog">Changelog</h2>
|
<h2 id="changelog">Changelog</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>v1.27 - 2016-01-31
|
||||||
|
<ul>
|
||||||
|
<li>New Features</li>
|
||||||
|
<li>Easier headless configuration with <code>rclone authorize</code></li>
|
||||||
|
<li>Add support for multiple hash types - we now check SHA1 as well as MD5 hashes.</li>
|
||||||
|
<li><code>delete</code> command which does obey the filters (unlike <code>purge</code>)</li>
|
||||||
|
<li><code>dedupe</code> command to deduplicate a remote. Useful with Google Drive.</li>
|
||||||
|
<li>Add <code>--ignore-existing</code> flag to skip all files that exist on destination.</li>
|
||||||
|
<li>Add <code>--delete-before</code>, <code>--delete-during</code>, <code>--delete-after</code> flags.</li>
|
||||||
|
<li>Add <code>--memprofile</code> flag to debug memory use.</li>
|
||||||
|
<li>Warn the user about files with same name but different case</li>
|
||||||
|
<li>Make <code>--include</code> rules add their implict exclude * at the end of the filter list</li>
|
||||||
|
<li>Deprecate compiling with go1.3</li>
|
||||||
|
<li>Amazon Cloud Drive</li>
|
||||||
|
<li>Fix download of files > 10 GB</li>
|
||||||
|
<li>Fix directory traversal ("Next token is expired") for large directory listings</li>
|
||||||
|
<li>Remove 409 conflict from error codes we will retry - stops very long pauses</li>
|
||||||
|
<li>Backblaze B2</li>
|
||||||
|
<li>SHA1 hashes now checked by rclone core</li>
|
||||||
|
<li>Drive</li>
|
||||||
|
<li>Add <code>--drive-auth-owner-only</code> to only consider files owned by the user - thanks Björn Harrtell</li>
|
||||||
|
<li>Export Google documents</li>
|
||||||
|
<li>Dropbox</li>
|
||||||
|
<li>Make file exclusion error controllable with -q</li>
|
||||||
|
<li>Swift</li>
|
||||||
|
<li>Fix upload from unprivileged user.</li>
|
||||||
|
<li>S3</li>
|
||||||
|
<li>Fix updating of mod times of files with <code>+</code> in.</li>
|
||||||
|
<li>Local</li>
|
||||||
|
<li>Add local file system option to disable UNC on Windows.</li>
|
||||||
|
</ul></li>
|
||||||
<li>v1.26 - 2016-01-02
|
<li>v1.26 - 2016-01-02
|
||||||
<ul>
|
<ul>
|
||||||
<li>New Features</li>
|
<li>New Features</li>
|
||||||
|
29
MANUAL.md
29
MANUAL.md
@ -2374,6 +2374,35 @@ file exceeds 258 characters on z, so only use this option if you have to.
|
|||||||
Changelog
|
Changelog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
* v1.27 - 2016-01-31
|
||||||
|
* New Features
|
||||||
|
* Easier headless configuration with `rclone authorize`
|
||||||
|
* Add support for multiple hash types - we now check SHA1 as well as MD5 hashes.
|
||||||
|
* `delete` command which does obey the filters (unlike `purge`)
|
||||||
|
* `dedupe` command to deduplicate a remote. Useful with Google Drive.
|
||||||
|
* Add `--ignore-existing` flag to skip all files that exist on destination.
|
||||||
|
* Add `--delete-before`, `--delete-during`, `--delete-after` flags.
|
||||||
|
* Add `--memprofile` flag to debug memory use.
|
||||||
|
* Warn the user about files with same name but different case
|
||||||
|
* Make `--include` rules add their implict exclude * at the end of the filter list
|
||||||
|
* Deprecate compiling with go1.3
|
||||||
|
* Amazon Cloud Drive
|
||||||
|
* Fix download of files > 10 GB
|
||||||
|
* Fix directory traversal ("Next token is expired") for large directory listings
|
||||||
|
* Remove 409 conflict from error codes we will retry - stops very long pauses
|
||||||
|
* Backblaze B2
|
||||||
|
* SHA1 hashes now checked by rclone core
|
||||||
|
* Drive
|
||||||
|
* Add `--drive-auth-owner-only` to only consider files owned by the user - thanks Björn Harrtell
|
||||||
|
* Export Google documents
|
||||||
|
* Dropbox
|
||||||
|
* Make file exclusion error controllable with -q
|
||||||
|
* Swift
|
||||||
|
* Fix upload from unprivileged user.
|
||||||
|
* S3
|
||||||
|
* Fix updating of mod times of files with `+` in.
|
||||||
|
* Local
|
||||||
|
* Add local file system option to disable UNC on Windows.
|
||||||
* v1.26 - 2016-01-02
|
* v1.26 - 2016-01-02
|
||||||
* New Features
|
* New Features
|
||||||
* Yandex storage backend - thank you Dmitry Burdeev ("dibu")
|
* Yandex storage backend - thank you Dmitry Burdeev ("dibu")
|
||||||
|
36
MANUAL.txt
36
MANUAL.txt
@ -2337,6 +2337,42 @@ characters on z, so only use this option if you have to.
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
- v1.27 - 2016-01-31
|
||||||
|
- New Features
|
||||||
|
- Easier headless configuration with rclone authorize
|
||||||
|
- Add support for multiple hash types - we now check SHA1 as well
|
||||||
|
as MD5 hashes.
|
||||||
|
- delete command which does obey the filters (unlike purge)
|
||||||
|
- dedupe command to deduplicate a remote. Useful with Google
|
||||||
|
Drive.
|
||||||
|
- Add --ignore-existing flag to skip all files that exist on
|
||||||
|
destination.
|
||||||
|
- Add --delete-before, --delete-during, --delete-after flags.
|
||||||
|
- Add --memprofile flag to debug memory use.
|
||||||
|
- Warn the user about files with same name but different case
|
||||||
|
- Make --include rules add their implict exclude * at the end of
|
||||||
|
the filter list
|
||||||
|
- Deprecate compiling with go1.3
|
||||||
|
- Amazon Cloud Drive
|
||||||
|
- Fix download of files > 10 GB
|
||||||
|
- Fix directory traversal ("Next token is expired") for large
|
||||||
|
directory listings
|
||||||
|
- Remove 409 conflict from error codes we will retry - stops very
|
||||||
|
long pauses
|
||||||
|
- Backblaze B2
|
||||||
|
- SHA1 hashes now checked by rclone core
|
||||||
|
- Drive
|
||||||
|
- Add --drive-auth-owner-only to only consider files owned by the
|
||||||
|
user - thanks Björn Harrtell
|
||||||
|
- Export Google documents
|
||||||
|
- Dropbox
|
||||||
|
- Make file exclusion error controllable with -q
|
||||||
|
- Swift
|
||||||
|
- Fix upload from unprivileged user.
|
||||||
|
- S3
|
||||||
|
- Fix updating of mod times of files with + in.
|
||||||
|
- Local
|
||||||
|
- Add local file system option to disable UNC on Windows.
|
||||||
- v1.26 - 2016-01-02
|
- v1.26 - 2016-01-02
|
||||||
- New Features
|
- New Features
|
||||||
- Yandex storage backend - thank you Dmitry Burdeev ("dibu")
|
- Yandex storage backend - thank you Dmitry Burdeev ("dibu")
|
||||||
|
2
Makefile
2
Makefile
@ -65,7 +65,7 @@ beta: doc
|
|||||||
serve: website
|
serve: website
|
||||||
cd docs && hugo server -v -w
|
cd docs && hugo server -v -w
|
||||||
|
|
||||||
tag:
|
tag: doc
|
||||||
@echo "Old tag is $(LAST_TAG)"
|
@echo "Old tag is $(LAST_TAG)"
|
||||||
@echo "New tag is $(NEW_TAG)"
|
@echo "New tag is $(NEW_TAG)"
|
||||||
echo -e "package fs\n\n// Version of rclone\nconst Version = \"$(NEW_TAG)\"\n" | gofmt > fs/version.go
|
echo -e "package fs\n\n// Version of rclone\nconst Version = \"$(NEW_TAG)\"\n" | gofmt > fs/version.go
|
||||||
|
@ -1,12 +1,41 @@
|
|||||||
---
|
---
|
||||||
title: "Documentation"
|
title: "Documentation"
|
||||||
description: "Rclone Changelog"
|
description: "Rclone Changelog"
|
||||||
date: "2015-01-02"
|
date: "2015-01-31"
|
||||||
---
|
---
|
||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
* v1.27 - 2016-01-31
|
||||||
|
* New Features
|
||||||
|
* Easier headless configuration with `rclone authorize`
|
||||||
|
* Add support for multiple hash types - we now check SHA1 as well as MD5 hashes.
|
||||||
|
* `delete` command which does obey the filters (unlike `purge`)
|
||||||
|
* `dedupe` command to deduplicate a remote. Useful with Google Drive.
|
||||||
|
* Add `--ignore-existing` flag to skip all files that exist on destination.
|
||||||
|
* Add `--delete-before`, `--delete-during`, `--delete-after` flags.
|
||||||
|
* Add `--memprofile` flag to debug memory use.
|
||||||
|
* Warn the user about files with same name but different case
|
||||||
|
* Make `--include` rules add their implict exclude * at the end of the filter list
|
||||||
|
* Deprecate compiling with go1.3
|
||||||
|
* Amazon Cloud Drive
|
||||||
|
* Fix download of files > 10 GB
|
||||||
|
* Fix directory traversal ("Next token is expired") for large directory listings
|
||||||
|
* Remove 409 conflict from error codes we will retry - stops very long pauses
|
||||||
|
* Backblaze B2
|
||||||
|
* SHA1 hashes now checked by rclone core
|
||||||
|
* Drive
|
||||||
|
* Add `--drive-auth-owner-only` to only consider files owned by the user - thanks Björn Harrtell
|
||||||
|
* Export Google documents
|
||||||
|
* Dropbox
|
||||||
|
* Make file exclusion error controllable with -q
|
||||||
|
* Swift
|
||||||
|
* Fix upload from unprivileged user.
|
||||||
|
* S3
|
||||||
|
* Fix updating of mod times of files with `+` in.
|
||||||
|
* Local
|
||||||
|
* Add local file system option to disable UNC on Windows.
|
||||||
* v1.26 - 2016-01-02
|
* v1.26 - 2016-01-02
|
||||||
* New Features
|
* New Features
|
||||||
* Yandex storage backend - thank you Dmitry Burdeev ("dibu")
|
* Yandex storage backend - thank you Dmitry Burdeev ("dibu")
|
||||||
|
@ -2,40 +2,40 @@
|
|||||||
title: "Rclone downloads"
|
title: "Rclone downloads"
|
||||||
description: "Download rclone binaries for your OS."
|
description: "Download rclone binaries for your OS."
|
||||||
type: page
|
type: page
|
||||||
date: "2015-12-31"
|
date: "2016-01-31"
|
||||||
---
|
---
|
||||||
|
|
||||||
Rclone Download v1.26
|
Rclone Download v1.27
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
* Windows
|
* Windows
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-windows-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-windows-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-windows-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-windows-amd64.zip)
|
||||||
* OSX
|
* OSX
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-osx-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-osx-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-osx-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-osx-amd64.zip)
|
||||||
* Linux
|
* Linux
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-linux-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-linux-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-linux-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-linux-amd64.zip)
|
||||||
* [ARM - 32 Bit](http://downloads.rclone.org/rclone-v1.26-linux-arm.zip)
|
* [ARM - 32 Bit](http://downloads.rclone.org/rclone-v1.27-linux-arm.zip)
|
||||||
* FreeBSD
|
* FreeBSD
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-freebsd-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-freebsd-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-freebsd-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-freebsd-amd64.zip)
|
||||||
* [ARM - 32 Bit](http://downloads.rclone.org/rclone-v1.26-freebsd-arm.zip)
|
* [ARM - 32 Bit](http://downloads.rclone.org/rclone-v1.27-freebsd-arm.zip)
|
||||||
* NetBSD
|
* NetBSD
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-netbsd-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-netbsd-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-netbsd-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-netbsd-amd64.zip)
|
||||||
* [ARM - 32 Bit](http://downloads.rclone.org/rclone-v1.26-netbsd-arm.zip)
|
* [ARM - 32 Bit](http://downloads.rclone.org/rclone-v1.27-netbsd-arm.zip)
|
||||||
* OpenBSD
|
* OpenBSD
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-openbsd-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-openbsd-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-openbsd-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-openbsd-amd64.zip)
|
||||||
* Plan 9
|
* Plan 9
|
||||||
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.26-plan9-386.zip)
|
* [386 - 32 Bit](http://downloads.rclone.org/rclone-v1.27-plan9-386.zip)
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-plan9-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-plan9-amd64.zip)
|
||||||
* Solaris
|
* Solaris
|
||||||
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.26-solaris-amd64.zip)
|
* [AMD64 - 64 Bit](http://downloads.rclone.org/rclone-v1.27-solaris-amd64.zip)
|
||||||
|
|
||||||
You can also find a [mirror of the downloads on github](https://github.com/ncw/rclone/releases/tag/v1.26).
|
You can also find a [mirror of the downloads on github](https://github.com/ncw/rclone/releases/tag/v1.27).
|
||||||
|
|
||||||
Downloads for scripting
|
Downloads for scripting
|
||||||
=======================
|
=======================
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package fs
|
package fs
|
||||||
|
|
||||||
// Version of rclone
|
// Version of rclone
|
||||||
const Version = "v1.26"
|
const Version = "v1.27"
|
||||||
|
Loading…
Reference in New Issue
Block a user