mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-13 08:19:09 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8c74b83013 | ||
|
1f2ad16358 | ||
|
62b4fe40c1 |
@@ -34,3 +34,6 @@
|
|||||||
[0.3.0]
|
[0.3.0]
|
||||||
* Updated to version 0.14.33
|
* Updated to version 0.14.33
|
||||||
|
|
||||||
|
[0.3.1]
|
||||||
|
* Updated to version 0.14.35
|
||||||
|
|
||||||
|
@@ -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": "0.3.0",
|
"version": "0.3.1",
|
||||||
"healthCheckPath": "/check",
|
"healthCheckPath": "/check",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages Syncthing <upstream>v0.14.33</upstream>.
|
This app packages Syncthing <upstream>v0.14.35</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.
|
||||||
|
|
||||||
|
@@ -28,7 +28,7 @@ RUN ./configure \
|
|||||||
--build=cloudron-river
|
--build=cloudron-river
|
||||||
RUN make install
|
RUN make install
|
||||||
|
|
||||||
ENV VERSION 0.14.33
|
ENV VERSION 0.14.35
|
||||||
|
|
||||||
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 - \
|
||||||
|
@@ -15,8 +15,8 @@
|
|||||||
"mocha": "^2.5.3",
|
"mocha": "^2.5.3",
|
||||||
"rimraf": "^2.5.3",
|
"rimraf": "^2.5.3",
|
||||||
"selenium-server-standalone-jar": "^2.53.1",
|
"selenium-server-standalone-jar": "^2.53.1",
|
||||||
"selenium-webdriver": "^2.53.3",
|
"selenium-webdriver": "^2.53.1",
|
||||||
"superagent": "^1.4.0",
|
"superagent": "^1.4.0",
|
||||||
"chromedriver": "^2.27.0"
|
"chromedriver": "^2.31.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -63,7 +63,9 @@ describe('Application life cycle test', function () {
|
|||||||
|
|
||||||
function loadPage(callback) {
|
function loadPage(callback) {
|
||||||
browser.manage().deleteAllCookies().then(function () {
|
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 () {
|
}).then(function () {
|
||||||
return pageLoaded();
|
return pageLoaded();
|
||||||
}).then(function () {
|
}).then(function () {
|
||||||
@@ -96,6 +98,8 @@ describe('Application life cycle test', function () {
|
|||||||
|
|
||||||
function removeFolder(callback) {
|
function removeFolder(callback) {
|
||||||
browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
|
browser.get('https://' + username + ':' + encodeURIComponent(password) + '@' + app.fqdn).then(function () {
|
||||||
|
return browser.get('https://' + app.fqdn);
|
||||||
|
}).then(function () {
|
||||||
return pageLoaded();
|
return pageLoaded();
|
||||||
}).then(function() {
|
}).then(function() {
|
||||||
return browser.findElement(by.css('#folders button')).click();
|
return browser.findElement(by.css('#folders button')).click();
|
||||||
|
Reference in New Issue
Block a user