albertony
0f3aa17fb6
build: improve backend docs autogenerated marker line
...
Replace custom rem hugo shortcode template with HTML comment. HTML comments are now
allowed in Hugo without enabling unsafe HTML parsing.
Improve the text in the comment: Remove unnecessary quoting, and avoid impression that
make backenddocs has to be run and results committed, since we have a lint check which
will then report error because we want to prevent manual changes in autogenerated sections.
Disable the markdownlint rule line-length on the autogenerated marker line.
Make the autogenerated marker detection a bit more robust.
See #8942 for more details.
2025-11-04 21:56:01 +01:00
Nick Craig-Wood
a0bcdc2638
Archive backend to read archives on cloud storage.
...
Initial support with Zip and Squashfs archives.
Fixes #8633
See #2815
2025-10-28 11:05:41 +00:00
Lakshmi-Surekha
ed87f82d21
build: enable support for aix/ppc64
...
* Adds "aix/ppc64" to the cross-compile target list.
* Including AIX in the build tag of "metadata_other.go".
* Excluding AIX from the main ncdu build tags.
* Marking AIX as an unsupported platform for ncdu.
* Excluding AIX from the fallback redirect implementation.
* Excluding AIX from unix build tags to avoid undefined unix.WNOHANG.
2025-10-27 13:34:58 +00:00
vastonus
c4eef3065f
build: remove obsolete build tag
2025-10-21 18:56:06 +01:00
Nick Craig-Wood
e7f11af1ca
build: stop markdown linter leaving behind docker containers
2025-10-20 11:51:23 +01:00
Nick Craig-Wood
71b9b4ad7a
build: use sequence Split introduced in go1.24
2025-09-15 12:45:57 +01:00
nielash
fee4716343
bin: add bisync.md generator
...
This change adds make_bisync_docs.go step to dynamically update the list of
ignored and failed tests in bisync.md
2025-09-01 14:43:40 -04:00
Nick Craig-Wood
85deea82e4
build: add local markdown linting to make check
2025-08-28 16:56:40 +01:00
Nick Craig-Wood
cfd0d28742
fs: tls: add --client-pass support for encrypted --client-key files
...
This also widens the supported types
- Unencrypted PKCS#1 ("BEGIN RSA PRIVATE KEY")
- Unencrypted PKCS#8 ("BEGIN PRIVATE KEY")
- Encrypted PKCS#8 ("BEGIN ENCRYPTED PRIVATE KEY")
- Legacy PEM encryption (e.g., DEK-Info headers), which are automatically detected.
2025-08-22 12:19:29 +01:00
albertony
75582b804b
docs: fix markdownlint issues md007/ul-indent md004/ul-style
2025-07-21 20:23:16 +02:00
albertony
b2f43f39ba
docs: fix markdownlint issues md007/ul-indent md004/ul-style (bin/update-authors.py)
2025-07-21 20:23:16 +02:00
albertony
d1ac6c2fe1
build: limit check for edits of autogenerated files to only commits in a pull request
2025-07-17 16:20:38 +02:00
albertony
da9c99272c
build: extend check for edits of autogenerated files to all commits in a pull request
2025-07-17 16:20:38 +02:00
albertony
b259241c07
docs: ignore author email piyushgarg80
...
This should merge the two duplicates:
- piyushgarg <piyushgarg80@gmail.com >
- Piyush <piyushgarg80>
2025-07-11 13:49:06 +02:00
Nick Craig-Wood
9d464e8e9a
Version v1.70.0
2025-06-17 17:53:11 +01:00
kingston125
4a1b5b864c
Add FileLu cloud storage backend
2025-06-06 15:15:07 +01:00
Nick Craig-Wood
51fd697c7a
build: fix check_autogenerated_edits.py flagging up files that didn't exist
...
Before this change new backend docs would have their changes flagged
which is undesirable for the first revision.
2025-06-05 16:37:01 +01:00
Nick Craig-Wood
6a7e68aaf2
build: check docs for edits of autogenerated sections
...
This adds a lint step which checks the top commit for edits to
autogenerated doc sections.
2025-03-10 22:07:19 +00:00
emyarod
cdfd748241
chore: update contributor email
2025-02-16 07:52:20 +00:00
Dimitri Papadopoulos
b1d4de69c2
docs: fix typos found by codespell in docs and code comments
2025-01-16 10:39:01 +01:00
Nick Craig-Wood
530658e0cc
doc: make man page well formed for whatis - fixes #7430
2025-01-13 18:35:27 +00:00
yuval-cloudinary
7e4b8e33f5
cloudinary: add cloudinary backend - fixes #7989
2025-01-06 10:54:03 +00:00
Nick Craig-Wood
6ade1055d5
bin/test_backend_sizes.py fix compile flags and s3 reporting
...
This now compiles rclone with CGO_ENABLED=0 which is closer to the
release compile.
It also removes pikpak if testing s3 as the two depend on each
other.
2024-12-13 11:34:11 +00:00
David Seifert
acd5a893e2
test_all: POSIX head/tail invocations
...
* head -number is not allowed by POSIX.1-2024:
https://pubs.opengroup.org/onlinepubs/9799919799/utilities/head.html
https://devmanual.gentoo.org/tools-reference/head-and-tail/index.html
2024-11-20 18:02:07 +00:00
lostb1t
51db76fd47
Add ICloud Drive backend
2024-10-02 10:19:11 +01:00
Dan McArdle
353270263a
Makefile: Prevent doc recipe from creating dir named '$HOME'
...
Prior to this commit, running `make doc` had the unwanted side effect of
creating a directory literally named `$HOME` in the source tree.
Fixed #8092
2024-09-24 10:38:25 +01:00
Nick Craig-Wood
49f69196c2
Version v1.68.0
2024-09-08 16:21:56 +01:00
albertony
bcdfad3c83
build: update logging statements to make json log work - fixes #6038
...
This changes log statements from log to fs package, which is required for --use-json-log
to properly make log output in JSON format. The recently added custom linting rule,
handled by ruleguard via gocritic via golangci-lint, warns about these and suggests
the alternative. Fixing was therefore basically running "golangci-lint run --fix",
although some manual fixup of mainly imports are necessary following that.
2024-09-06 17:04:18 +01:00
albertony
88b0757288
build: update custom linting rule for log to suggest new non-format functions
2024-09-06 17:04:18 +01:00
albertony
604d6bcb9c
build: enable custom linting rules with ruleguard via gocritic
2024-09-06 17:04:18 +01:00
Sam Harrison
ae9960a4ed
filescom: add Files.com backend
2024-08-15 17:00:39 +01:00
Nick Craig-Wood
c1a98768bc
Implement Gofile backend - fixes #4632
2024-08-14 21:15:37 +01:00
Fornax
3b3625037c
Add pixeldrain backend
...
This commit adds support for pixeldrain's experimental filesystem API.
2024-08-12 13:35:44 +01:00
Nick Craig-Wood
642d4082ac
test_backend_sizes.py calculates space in the binary each backend uses #7998
2024-08-09 12:13:24 +01:00
Nick Craig-Wood
0470450583
build: disable wasm/js build due to go bug
...
Rclone is too big for js/wasm until
https://github.com/golang/go/issues/64856 is fixed
2024-08-04 12:18:34 +01:00
Florian Klink
aed77a8fb2
tree-wide: replace /bin/bash with /usr/bin/env bash
...
The latter is more portable, while the former only works on systems
where /bin/bash exists (or is symlinked appropriately).
2024-06-11 12:47:47 +01:00
Nick Craig-Wood
1fef8e667c
build: migrate bucket storage for the project to new provider
...
This changes
- beta.rclone.org
- www.rclone.org
- pub.rclone.org
- downloads.rclone.org
2024-04-25 17:04:18 +01:00
albertony
68bf6aa584
build: remove build constraint syntax for go 1.16 and older
2024-04-18 16:53:55 +02:00
psychopatt
522ab1de6d
docs: remove email from authors
2024-03-26 11:45:22 +00:00
iotmaestro
4b5c10f72e
Add a new backend for uloz.to
...
Note that this temporarily skips uploads of files over 2.5 GB.
See https://github.com/rclone/rclone/pull/7552#issuecomment-1956316492
for details.
2024-03-26 09:46:47 +00:00
Nick Craig-Wood
b6013a5e68
Version v1.66.0
2024-03-10 11:22:43 +00:00
Nick Craig-Wood
6e4dd2ab96
docs: ignore amazon cloud drive doc stub when building the docs
2024-01-25 16:35:33 +00:00
Nick Craig-Wood
0e746f25a3
amazonclouddrive: remove Amazon Drive backend code and docs #7539
...
The Amazon Drive backend is closed from 2023-12-31.
See: https://www.amazon.com/b?ie=UTF8&node=23943055011
2024-01-04 17:05:54 +00:00
emyarod
4751980659
docs: update contributor email
2023-12-08 11:21:26 +00:00
Nick Craig-Wood
82b963e372
Version v1.65.0
2023-11-26 16:07:39 +00:00
Abhinav Dhiman
36eb3cd660
imagekit: Added ImageKit backend
2023-11-24 18:18:01 +00:00
Nick Craig-Wood
47ca0c326e
fs: implement --metadata-mapper to transform metatadata with a user supplied program
2023-11-18 17:49:35 +00:00
viktor
a466ababd0
backend: add Linkbox backend
...
Add backend for linkbox.io with read and write capabilities
fixes #6960 #6629
2023-11-18 17:14:45 +00:00
Nick Craig-Wood
ddaf01ece9
azurefiles: finish docs and implementation and add optional interfaces
...
- use rclone's http Transport
- fix handling of 0 length files
- combine into one file and remove uneeded abstraction
- make `chunk_size` and `upload_concurrency` settable
- make auth the same as azureblob
- set the Features correctly
- implement `--azurefiles-max-stream-size`
- remove arbitrary sleep on Mkdir
- implement `--header-upload`
- implement read and write MimeType for objects
- implement optional methods
- About
- Copy
- DirMove
- Move
- OpenWriterAt
- PutStream
- finish documentation
- disable build on plan9 and js
Fixes #365
Fixes #7378
2023-11-18 16:48:23 +00:00
Nick Craig-Wood
cdf5a97bb6
bin/update_authors.py: add authors from Co-authored-by: lines too
2023-11-16 16:59:55 +00:00