mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-14 17:09:07 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2d4e328955 | ||
|
ef3a205467 | ||
|
9400c1a99f | ||
|
ff751142d4 | ||
|
2032c881a5 |
@@ -15,3 +15,12 @@
|
|||||||
* Uses syncthing generated config (thanks to @rymnel)
|
* Uses syncthing generated config (thanks to @rymnel)
|
||||||
* Fixed typo in manifest (thanks to @rymnel)
|
* Fixed typo in manifest (thanks to @rymnel)
|
||||||
* Running under user cloudron
|
* Running under user cloudron
|
||||||
|
|
||||||
|
[0.2.1]
|
||||||
|
* Fixed description
|
||||||
|
|
||||||
|
[0.2.2]
|
||||||
|
* Add to sync category in app store
|
||||||
|
|
||||||
|
[0.2.3]
|
||||||
|
* Updated to version 0.14.30
|
||||||
|
@@ -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.2.0",
|
"version": "0.2.3",
|
||||||
"healthCheckPath": "/check",
|
"healthCheckPath": "/check",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
@@ -25,7 +25,8 @@
|
|||||||
"contactEmail": "support@cloudron.io",
|
"contactEmail": "support@cloudron.io",
|
||||||
"icon": "logo.png",
|
"icon": "logo.png",
|
||||||
"tags": [
|
"tags": [
|
||||||
"storage"
|
"storage",
|
||||||
|
"sync"
|
||||||
],
|
],
|
||||||
"mediaLinks": [
|
"mediaLinks": [
|
||||||
"https://git.cloudron.io/dswd/syncthing-app/raw/master/screenshots/1.jpg"
|
"https://git.cloudron.io/dswd/syncthing-app/raw/master/screenshots/1.jpg"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages Syncthing v0.14.27.
|
This app packages Syncthing <upstream>v0.14.30</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.29
|
ENV VERSION 0.14.30
|
||||||
|
|
||||||
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 - \
|
||||||
|
@@ -64,13 +64,13 @@ describe('Application life cycle test', function () {
|
|||||||
function loadPage(callback) {
|
function loadPage(callback) {
|
||||||
browser.manage().deleteAllCookies();
|
browser.manage().deleteAllCookies();
|
||||||
browser.get('https://' + username + ':' + password + '@' + app.fqdn);
|
browser.get('https://' + username + ':' + password + '@' + app.fqdn);
|
||||||
return pageLoaded().then(function() {
|
pageLoaded().then(function() {
|
||||||
callback();
|
callback();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function addFolder(callback) {
|
function addFolder(callback) {
|
||||||
return pageLoaded().then(function() {
|
pageLoaded().then(function() {
|
||||||
browser.findElement(by.css('[ng-click*=addFolder]')).click();
|
browser.findElement(by.css('[ng-click*=addFolder]')).click();
|
||||||
return visible(by.id('folderPath')).then(function() {
|
return visible(by.id('folderPath')).then(function() {
|
||||||
return browser.findElement(by.id('folderLabel')).sendKeys('test');
|
return browser.findElement(by.id('folderLabel')).sendKeys('test');
|
||||||
@@ -93,7 +93,7 @@ describe('Application life cycle test', function () {
|
|||||||
|
|
||||||
function removeFolder(callback) {
|
function removeFolder(callback) {
|
||||||
browser.get('https://' + username + ':' + password + '@' + app.fqdn);
|
browser.get('https://' + username + ':' + password + '@' + app.fqdn);
|
||||||
return pageLoaded().then(function() {
|
pageLoaded().then(function() {
|
||||||
browser.findElement(by.css('#folders button')).click();
|
browser.findElement(by.css('#folders button')).click();
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
browser.findElement(by.css('#folder-0 button[ng-click*=editFolder]')).click();
|
browser.findElement(by.css('#folder-0 button[ng-click*=editFolder]')).click();
|
||||||
|
Reference in New Issue
Block a user