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

Compare commits

...

4 Commits

Author SHA1 Message Date
Girish Ramakrishnan
ea40502236 Version 1.20.1 2022-05-04 13:09:25 -07:00
Girish Ramakrishnan
df82aa0431 Update syncthing to 1.20.1 2022-05-04 12:51:05 -07:00
Girish Ramakrishnan
d1a847a12b const 2022-05-03 14:51:39 -07:00
Johannes Zellner
313b4beeec Bump version for 1.20.0 2022-05-03 17:56:33 +02:00
4 changed files with 20 additions and 4 deletions

View File

@@ -288,3 +288,19 @@
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.19.2)
* Make error message upon reaching the free space quota more clear
[1.20.0]
* Update Syncthing to 1.20.0
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.20.0)
* #7855: Watching for changes using too many system resources on BSDs (kqueue)
* #8020: Dangling symlink prevents filesystem watcher on Solaris
* #8232: Missing include file endlessly spams log
* #8258: The latest version does not support go1.18 compilation!!
* #8261: TypeError: Cannot read properties of null (reading 'status') in the GUI after killing Syncthing
* #8202: Indicate folders / devices where the remote end has not accepted sharing.
* #8282: Change default log format to include date
[1.20.1]
* Update Syncthing to 1.20.1
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.20.1)
* #8320: Spurious failure of new connections ("unknown (newer?) version of the protocol" etc)

View File

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

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd1
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=1.19.2
ARG VERSION=1.20.1
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

@@ -10,7 +10,7 @@
require('chromedriver');
var execSync = require('child_process').execSync,
const execSync = require('child_process').execSync,
expect = require('expect.js'),
superagent = require('superagent'),
path = require('path'),