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

Compare commits

...

10 Commits

Author SHA1 Message Date
Girish Ramakrishnan
d281fb8aef Version 0.4.0 2017-10-14 11:52:22 -07:00
Girish Ramakrishnan
d72a041d67 Use syncthing 0.14.39 2017-10-14 11:47:27 -07:00
Dennis Schwerdel
88a47bcf1a Update to 0.14.38 2017-09-21 23:06:33 +02:00
Dennis Schwerdel
6be20dbf5e Update to 0.14.37 2017-09-05 18:36:50 +02:00
Girish Ramakrishnan
eeabcd9b30 Merge branch 'update_to_0_14_36' into 'master'
Update to 0 14 36

See merge request !2
2017-08-28 16:24:28 +00:00
Girish Ramakrishnan
f56054506e Version 0.3.2 2017-08-24 11:45:12 -07:00
Girish Ramakrishnan
de4b8ff977 Update to 0.14.36 2017-08-24 11:35:09 -07:00
Girish Ramakrishnan
8c74b83013 Fix the version mess
0.3.0 was released without a changelog since I forgot to check that in
git (?)
2017-08-23 08:53:36 -07:00
Dennis Schwerdel
1f2ad16358 Updated to 0.14.35 2017-08-08 18:23:07 +02:00
Dennis Schwerdel
62b4fe40c1 Fixed tests 2017-08-08 18:22:39 +02:00
6 changed files with 34 additions and 6 deletions

View File

@@ -31,3 +31,27 @@
[0.2.5]
* Updated to version 0.14.32
[0.3.0]
* Updated to version 0.14.33
[0.3.1]
* Updated to version 0.14.35
[0.3.2]
* Updated to version 0.14.36
[0.3.3]
* Updated to version 0.14.37
[0.3.4]
* Updated to version 0.14.38
[0.4.0]
* Updated to version 0.14.39
* #4357: Removing paused folders no longer triggers a crash.
* #4360: Add further security related HTTP headers
* #4375: Improve info level logging in some cases
* #4377: Improve GUI tooltips in chromium based browsers
* #4382: Hide temporary files on Windows
* #4387: Add -device-id command line switch

View File

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

View File

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

View File

@@ -28,7 +28,7 @@ RUN ./configure \
--build=cloudron-river
RUN make install
ENV VERSION 0.14.32
ENV VERSION 0.14.39
RUN mkdir -p /app/code \
&& wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - \

View File

@@ -15,8 +15,8 @@
"mocha": "^2.5.3",
"rimraf": "^2.5.3",
"selenium-server-standalone-jar": "^2.53.1",
"selenium-webdriver": "^2.53.3",
"selenium-webdriver": "^2.53.1",
"superagent": "^1.4.0",
"chromedriver": "^2.27.0"
"chromedriver": "^2.31.0"
}
}

View File

@@ -63,7 +63,9 @@ describe('Application life cycle test', function () {
function loadPage(callback) {
browser.manage().deleteAllCookies().then(function () {
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn);
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
return browser.get('https://' + app.fqdn);
});
}).then(function () {
return pageLoaded();
}).then(function () {
@@ -96,6 +98,8 @@ describe('Application life cycle test', function () {
function removeFolder(callback) {
browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
return browser.get('https://' + app.fqdn);
}).then(function () {
return pageLoaded();
}).then(function() {
return browser.findElement(by.css('#folders button')).click();