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

Compare commits

...

8 Commits

Author SHA1 Message Date
Girish Ramakrishnan
4d2b344777 Version 1.6.0 2019-10-01 09:19:50 -07:00
Girish Ramakrishnan
10195c2a89 Update Syncthing to 1.3.0 2019-10-01 09:10:45 -07:00
Girish Ramakrishnan
b3460d9e7f Version 1.5.2 2019-09-03 09:49:53 -07:00
Girish Ramakrishnan
b1e74c7192 Update Syncthing to 1.2.2 2019-09-03 09:34:12 -07:00
Girish Ramakrishnan
2b377640c9 Version 1.5.1 2019-08-07 06:50:26 -07:00
Girish Ramakrishnan
3cac63e432 Fix tests 2019-08-07 06:50:00 -07:00
Girish Ramakrishnan
738113abba Update webdriver 2019-08-07 06:21:33 -07:00
Girish Ramakrishnan
21ab976570 Update syncthing to 1.2.1 2019-08-07 06:20:04 -07:00
7 changed files with 1143 additions and 392 deletions

View File

@@ -127,3 +127,12 @@
[1.5.0] [1.5.0]
* Update Syncthing to 1.2.0 * Update Syncthing to 1.2.0
[1.5.1]
* Update Syncthing to 1.2.1
[1.5.2]
* Update Syncthing to 1.2.2
[1.6.0]
* Update Syncthing to 1.3.0

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.5.0", "version": "1.6.0",
"healthCheckPath": "/healthcheck", "healthCheckPath": "/healthcheck",
"httpPort": 8000, "httpPort": 8000,
"addons": { "addons": {

View File

@@ -1,4 +1,4 @@
This app packages Syncthing <upstream>1.2.0</upstream>. This app packages Syncthing <upstream>1.3.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. 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.2.0 ARG VERSION=1.3.0
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

1497
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": "^2.36.0", "chromedriver": "^76.0.0",
"ejs": "^2.4.2", "ejs": "^2.6.2",
"expect.js": "^0.3.1", "expect.js": "^0.3.1",
"mkdirp": "^0.5.1", "mkdirp": "^0.5.1",
"mocha": "^2.5.3", "mocha": "^6.2.0",
"rimraf": "^2.5.3", "rimraf": "^2.6.3",
"selenium-server-standalone-jar": "^2.53.1", "selenium-server-standalone-jar": "^3.141.5",
"selenium-webdriver": "^2.53.3", "selenium-webdriver": "^3.6.0",
"superagent": "^1.4.0" "superagent": "^5.1.0"
} }
} }

View File

@@ -10,8 +10,10 @@ var execSync = require('child_process').execSync,
path = require('path'), path = require('path'),
webdriver = require('selenium-webdriver'); webdriver = require('selenium-webdriver');
var by = webdriver.By, var by = require('selenium-webdriver').By,
until = webdriver.until; until = require('selenium-webdriver').until,
Key = require('selenium-webdriver').Key,
Builder = require('selenium-webdriver').Builder;
var accessKey = 'admin', var accessKey = 'admin',
secretKey = 'secretkey'; secretKey = 'secretkey';
@@ -25,8 +27,7 @@ process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
describe('Application life cycle test', function () { describe('Application life cycle test', function () {
this.timeout(0); this.timeout(0);
var chrome = require('selenium-webdriver/chrome'); var server, browser = new Builder().forBrowser('chrome').build();
var server, browser = new chrome.Driver();
var username = 'admin', password = 'changeme'; var username = 'admin', password = 'changeme';
before(function (done) { before(function (done) {