1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2025-09-13 08:19:09 +00:00

Compare commits

...

6 Commits

Author SHA1 Message Date
Girish Ramakrishnan
a13b1dcdaf Version 1.7.2 2020-04-08 09:49:11 -07:00
Girish Ramakrishnan
3b9ef649d8 Update tests 2020-04-08 09:45:20 -07:00
Girish Ramakrishnan
fb8bb68aa8 style fixes 2020-04-08 09:43:15 -07:00
Girish Ramakrishnan
f62a05aa0b Update syncthing to 1.4.2 2020-04-08 09:43:08 -07:00
Girish Ramakrishnan
20046fe36c Version 1.7.1 2020-04-07 00:33:51 -07:00
Girish Ramakrishnan
6dbe2e26a7 Update syncthing to 1.4.1 2020-04-06 11:54:36 -07:00
7 changed files with 349 additions and 501 deletions

View File

@@ -148,3 +148,9 @@
[1.7.0] [1.7.0]
* Update Syncthing to 1.4.0 * Update Syncthing to 1.4.0
[1.7.1]
* Update Syncthing to 1.4.1
[1.7.2]
* Update Syncthing to 1.4.2

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md", "description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG", "changelog": "file://CHANGELOG",
"tagline": "Decentralized file synchronization", "tagline": "Decentralized file synchronization",
"version": "1.7.0", "version": "1.7.2",
"healthCheckPath": "/healthcheck", "healthCheckPath": "/healthcheck",
"httpPort": 8000, "httpPort": 8000,
"addons": { "addons": {

View File

@@ -1,4 +1,4 @@
This app packages Syncthing <upstream>1.4.0</upstream>. This app packages Syncthing <upstream>1.4.2</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. 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.

View File

@@ -1,6 +1,6 @@
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617 FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
ARG VERSION=1.4.0 ARG VERSION=1.4.2
RUN mkdir -p /app/code \ RUN mkdir -p /app/code \
&& wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - \ && wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - \
| tar -xz -C /app/code --strip-components=1 | tar -xz -C /app/code --strip-components=1

View File

@@ -5,11 +5,11 @@ set -eu
mkdir -p /app/data/config /app/data/folders /run/syncthing mkdir -p /app/data/config /app/data/folders /run/syncthing
# if this if the first run, generate a useful config # if this if the first run, generate a useful config
if [ ! -f /app/data/config/config.xml ]; then if [[ ! -f /app/data/config/config.xml ]]; then
echo "=> Generating config" echo "=> Generating config"
STNODEFAULTFOLDER=1 /app/code/syncthing --generate="/app/data/config" STNODEFAULTFOLDER=1 /app/code/syncthing --generate="/app/data/config"
# The password value was determined by reading config.xml and setting value in the GUI # The password value (changeme) was determined by reading config.xml and setting value in the GUI
# urAccepted is 0 for not decided, -1 for no reporting # urAccepted is 0 for not decided, -1 for no reporting
xmlstarlet ed --inplace \ xmlstarlet ed --inplace \
--subnode "//configuration/gui" -t elem -n user -v "admin" \ --subnode "//configuration/gui" -t elem -n user -v "admin" \

822
test/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,14 +9,14 @@
"author": "", "author": "",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"chromedriver": "^79.0.0", "chromedriver": "^80.0.2",
"ejs": "^3.0.1", "ejs": "^3.0.2",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mkdirp": "^0.5.1", "mkdirp": "^1.0.4",
"mocha": "^7.0.0", "mocha": "^7.1.1",
"rimraf": "^3.0.0", "rimraf": "^3.0.2",
"selenium-server-standalone-jar": "^3.141.59", "selenium-server-standalone-jar": "^3.141.59",
"selenium-webdriver": "^3.6.0", "selenium-webdriver": "^3.6.0",
"superagent": "^5.2.1" "superagent": "^5.2.2"
} }
} }