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

Compare commits

...

5 Commits

Author SHA1 Message Date
Dennis Schwerdel
2d4e328955 Updated to new upstream version 2017-06-13 09:29:43 +02:00
Dennis Schwerdel
ef3a205467 Fixed tests 2017-06-13 09:29:14 +02:00
dswd
9400c1a99f Merge branch 'addsynctag' into 'master'
add sync tag

See merge request !2
2017-06-11 19:21:21 +00:00
gregory
ff751142d4 add sync tag 2017-06-11 00:30:44 -05:00
Dennis Schwerdel
2032c881a5 Fixed description 2017-06-10 12:07:25 +02:00
5 changed files with 17 additions and 7 deletions

View File

@@ -15,3 +15,12 @@
* Uses syncthing generated config (thanks to @rymnel)
* Fixed typo in manifest (thanks to @rymnel)
* 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

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Decentralized file synchronization",
"version": "0.2.0",
"version": "0.2.3",
"healthCheckPath": "/check",
"httpPort": 8000,
"addons": {
@@ -25,7 +25,8 @@
"contactEmail": "support@cloudron.io",
"icon": "logo.png",
"tags": [
"storage"
"storage",
"sync"
],
"mediaLinks": [
"https://git.cloudron.io/dswd/syncthing-app/raw/master/screenshots/1.jpg"

View File

@@ -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.

View File

@@ -28,7 +28,7 @@ RUN ./configure \
--build=cloudron-river
RUN make install
ENV VERSION 0.14.29
ENV VERSION 0.14.30
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

@@ -64,13 +64,13 @@ describe('Application life cycle test', function () {
function loadPage(callback) {
browser.manage().deleteAllCookies();
browser.get('https://' + username + ':' + password + '@' + app.fqdn);
return pageLoaded().then(function() {
pageLoaded().then(function() {
callback();
});
}
function addFolder(callback) {
return pageLoaded().then(function() {
pageLoaded().then(function() {
browser.findElement(by.css('[ng-click*=addFolder]')).click();
return visible(by.id('folderPath')).then(function() {
return browser.findElement(by.id('folderLabel')).sendKeys('test');
@@ -93,7 +93,7 @@ describe('Application life cycle test', function () {
function removeFolder(callback) {
browser.get('https://' + username + ':' + password + '@' + app.fqdn);
return pageLoaded().then(function() {
pageLoaded().then(function() {
browser.findElement(by.css('#folders button')).click();
setTimeout(function() {
browser.findElement(by.css('#folder-0 button[ng-click*=editFolder]')).click();