mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-13 00:15:14 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
4af07bb9b9 | ||
|
303a00f082 |
@@ -34,12 +34,3 @@
|
||||
[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
|
||||
|
||||
|
@@ -5,7 +5,7 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Decentralized file synchronization",
|
||||
"version": "0.3.3",
|
||||
"version": "0.3.0",
|
||||
"healthCheckPath": "/check",
|
||||
"httpPort": 8000,
|
||||
"addons": {
|
||||
|
@@ -1,4 +1,4 @@
|
||||
This app packages Syncthing <upstream>v0.14.37</upstream>.
|
||||
This app packages Syncthing <upstream>v0.14.33</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.
|
||||
|
||||
|
@@ -28,7 +28,7 @@ RUN ./configure \
|
||||
--build=cloudron-river
|
||||
RUN make install
|
||||
|
||||
ENV VERSION 0.14.37
|
||||
ENV VERSION 0.14.33
|
||||
|
||||
RUN mkdir -p /app/code \
|
||||
&& wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - \
|
||||
|
@@ -15,8 +15,8 @@
|
||||
"mocha": "^2.5.3",
|
||||
"rimraf": "^2.5.3",
|
||||
"selenium-server-standalone-jar": "^2.53.1",
|
||||
"selenium-webdriver": "^2.53.1",
|
||||
"selenium-webdriver": "^2.53.3",
|
||||
"superagent": "^1.4.0",
|
||||
"chromedriver": "^2.31.0"
|
||||
"chromedriver": "^2.27.0"
|
||||
}
|
||||
}
|
||||
|
@@ -63,9 +63,7 @@ describe('Application life cycle test', function () {
|
||||
|
||||
function loadPage(callback) {
|
||||
browser.manage().deleteAllCookies().then(function () {
|
||||
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
|
||||
return browser.get('https://' + app.fqdn);
|
||||
});
|
||||
return browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn);
|
||||
}).then(function () {
|
||||
return pageLoaded();
|
||||
}).then(function () {
|
||||
@@ -98,8 +96,6 @@ 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();
|
||||
|
Reference in New Issue
Block a user