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

Compare commits

..

3 Commits

Author SHA1 Message Date
Girish Ramakrishnan
6d6ed058f7 Version 1.26.3 2024-03-05 12:15:42 +01:00
Girish Ramakrishnan
df6b2725ad make tests stable 2024-03-05 12:14:53 +01:00
Girish Ramakrishnan
81277451dc Update Syncthing to 1.27.4 2024-03-05 09:33:41 +01:00
4 changed files with 14 additions and 6 deletions

View File

@@ -452,3 +452,10 @@
* #8616: Add CLI completion
* #9151: Add "stay logged in" checkbox to login dialog
[1.26.3]
* Update Syncthing to 1.27.4
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.4)
* #9369: Panic in ignore matching on invalid UTF-8 from filesystem watcher
* #9435: syncthing should be cgroup aware
* #9339: File system watcher should skip ignored directories in more cases

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Decentralized file synchronization",
"version": "1.26.2",
"upstreamVersion": "1.27.3",
"version": "1.26.3",
"upstreamVersion": "1.27.4",
"healthCheckPath": "/healthcheck",
"httpPort": 8000,
"addons": {

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=1.27.3
ARG VERSION=1.27.4
RUN wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1

View File

@@ -87,12 +87,13 @@ describe('Application life cycle test', function () {
await browser.get('https://' + app.fqdn);
await browser.findElement(By.css('[ng-click*=addFolder]')).click();
await waitForElement(By.id('folderPath'));
await browser.sleep(4000); // wait more, not sure why this is needed
await browser.sleep(8000); // wait more, not sure why this is needed
await browser.findElement(By.id('folderLabel')).sendKeys(FOLDER);
await browser.sleep(4000); // without this sometimes only part of the folder name gets through
await browser.sleep(8000); // without this sometimes only part of the folder name gets through
await browser.findElement(By.css('[ng-click*=saveFolder]')).click();
await browser.sleep(8000); // without this "stale element"
await waitForElement(By.xpath(`//span[contains(text(), '${FOLDER}')]`));
await browser.sleep(4000);
await browser.sleep(8000);
}
async function checkFolder() {