mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-15 17:39:09 +00:00
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
ef295ffb0b | ||
|
0a1c5ceed2 | ||
|
23f4e2abd9 | ||
|
af1a53e0ca | ||
|
8ba346c847 | ||
|
1f12c096f8 | ||
|
5358d94cb0 | ||
|
eb3c1d27dc | ||
|
7d9d8049d0 | ||
|
ac1fe56e47 |
20
CHANGELOG
20
CHANGELOG
@@ -157,3 +157,23 @@
|
||||
[1.8.0]
|
||||
* Update Syncthing to 1.5.0
|
||||
* Update to new Cloudron base image
|
||||
|
||||
[1.9.0]
|
||||
* Update Syncthing to 1.6.1
|
||||
|
||||
[1.10.0]
|
||||
* Update Syncthing to 1.7.1
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.7.0)
|
||||
* #6552: panic: Stop called more than once on ... created by nat.Service
|
||||
* #6564: Closing an already removed connection causes GUI error message
|
||||
* #6646: Misleading error message when to be deleted dir contains receive-only changes
|
||||
* #6653: panic: nil pointer dereference in leveldb.(*DB).isClosed()
|
||||
|
||||
[1.11.0]
|
||||
* Update Syncthing to 1.9.0
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.9.0)
|
||||
* Offline nodes after drive replacement automatically heal and join back into the cluster, refer #10416
|
||||
* Listing improvements with parallel disk.Walk calls across many nodes, refer #10420
|
||||
* certs now supports multiple domains for TLS termination, refer #10207
|
||||
* Context now passed around at storage layer for future context support, refer #10321
|
||||
|
||||
|
@@ -5,7 +5,7 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Decentralized file synchronization",
|
||||
"version": "1.8.0",
|
||||
"version": "1.11.0",
|
||||
"healthCheckPath": "/healthcheck",
|
||||
"httpPort": 8000,
|
||||
"addons": {
|
||||
@@ -27,12 +27,13 @@
|
||||
"storage",
|
||||
"sync"
|
||||
],
|
||||
"minBoxVersion": "4.1.4",
|
||||
"minBoxVersion": "5.3.0",
|
||||
"forumUrl": "https://forum.cloudron.io/category/56/syncthing",
|
||||
"documentationUrl": "https://cloudron.io/documentation/apps/syncthing/",
|
||||
"mediaLinks": [
|
||||
"https://s3.amazonaws.com/cloudron-app-screenshots/net.syncthing.cloudronapp2/53bc9300d71bb5bf32362f8213194a0c3a415429/1.png",
|
||||
"https://s3.amazonaws.com/cloudron-app-screenshots/net.syncthing.cloudronapp2/53bc9300d71bb5bf32362f8213194a0c3a415429/2.png",
|
||||
"https://s3.amazonaws.com/cloudron-app-screenshots/net.syncthing.cloudronapp2/53bc9300d71bb5bf32362f8213194a0c3a415429/3.png"
|
||||
"https://cloudron-app-screenshots.s3.amazonaws.com/net.syncthing.cloudronapp2/53bc9300d71bb5bf32362f8213194a0c3a415429/1.png",
|
||||
"https://cloudron-app-screenshots.s3.amazonaws.com/net.syncthing.cloudronapp2/53bc9300d71bb5bf32362f8213194a0c3a415429/2.png",
|
||||
"https://cloudron-app-screenshots.s3.amazonaws.com/net.syncthing.cloudronapp2/53bc9300d71bb5bf32362f8213194a0c3a415429/3.png"
|
||||
],
|
||||
"postInstallMessage": "file://POSTINSTALL.md"
|
||||
}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
This app packages Syncthing <upstream>1.5.0</upstream>.
|
||||
This app packages Syncthing <upstream>1.9.0</upstream>.
|
||||
|
||||
Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||
|
||||
|
@@ -1,6 +1,6 @@
|
||||
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
||||
|
||||
ARG VERSION=1.5.0
|
||||
ARG VERSION=1.9.0
|
||||
|
||||
RUN mkdir -p /app/code
|
||||
WORKDIR /app/code
|
||||
|
@@ -1,8 +1,7 @@
|
||||
Use the following credentials for initial setup:
|
||||
This app is pre-setup with an admin account. The initial credentials are:
|
||||
|
||||
`username`: admin
|
||||
**Username**: admin <br/>
|
||||
**Password**: changeme <br/>
|
||||
|
||||
`password`: changeme
|
||||
|
||||
**Please change the admin password on first login**
|
||||
Please change the admin password immediately.
|
||||
|
||||
|
797
test/package-lock.json
generated
797
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,14 +9,13 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^80.0.2",
|
||||
"ejs": "^3.0.2",
|
||||
"chromedriver": "^85.0.0",
|
||||
"expect.js": "^0.3.1",
|
||||
"mkdirp": "^1.0.4",
|
||||
"mocha": "^7.1.1",
|
||||
"mocha": "^8.1.3",
|
||||
"rimraf": "^3.0.2",
|
||||
"selenium-server-standalone-jar": "^3.141.59",
|
||||
"selenium-webdriver": "^3.6.0",
|
||||
"superagent": "^5.2.2"
|
||||
"superagent": "^6.1.0"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user