mirror of
https://git.cloudron.io/cloudron/syncthing-app
synced 2025-09-16 18:29:06 +00:00
Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
0f9be01fea | ||
|
66abb7718b | ||
|
d7b0862f12 | ||
|
3aa7192e5d | ||
|
9c7fb0d580 | ||
|
52bd864c70 | ||
|
3b1e637ab7 | ||
|
8b8597cd7a | ||
|
a701dbbafc | ||
|
9801d5e255 | ||
|
31b7b66a31 | ||
|
dce1a84d59 | ||
|
f57c6fce92 | ||
|
eb13771fd7 | ||
|
81d73ad09e | ||
|
3858cac612 |
24
CHANGELOG
24
CHANGELOG
@@ -465,3 +465,27 @@
|
||||
* #8972: Open share settings when clicking 'shared with'
|
||||
* #9470: Show encryption status for devices sharing folder
|
||||
|
||||
[1.26.5]
|
||||
* Update Syncthing to 1.27.6
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.6)
|
||||
* lib/db: Drop indexes for outgoing data to force refresh (ref #9496) (#9502)
|
||||
|
||||
[1.26.6]
|
||||
* Update Syncthing to 1.27.7
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.7)
|
||||
* #9503: lib/nat: panic: runtime error: index out of range
|
||||
|
||||
[1.26.7]
|
||||
* Update Syncthing to 1.27.8
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.8)
|
||||
* #9506: gui: Favicon not working in Firefox bookmarks
|
||||
* #9527: Device connection state metric
|
||||
|
||||
[1.26.8]
|
||||
* Update Syncthing to 1.27.9
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.9)
|
||||
|
||||
[1.26.9]
|
||||
* Update Syncthing to 1.27.11
|
||||
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.11)
|
||||
|
||||
|
@@ -5,8 +5,8 @@
|
||||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Decentralized file synchronization",
|
||||
"version": "1.26.5",
|
||||
"upstreamVersion": "1.27.5",
|
||||
"version": "1.26.9",
|
||||
"upstreamVersion": "1.27.11",
|
||||
"healthCheckPath": "/healthcheck",
|
||||
"httpPort": 8000,
|
||||
"addons": {
|
||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
|
||||
RUN mkdir -p /app/code
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=1.27.5
|
||||
ARG VERSION=1.27.11
|
||||
|
||||
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
|
||||
|
||||
|
725
test/package-lock.json
generated
725
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,10 +9,9 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"chromedriver": "^123.0.1",
|
||||
"chromedriver": "^128.0.1",
|
||||
"expect.js": "^0.3.1",
|
||||
"mocha": "^10.4.0",
|
||||
"selenium-webdriver": "^4.19.0",
|
||||
"superagent": "^8.1.2"
|
||||
"mocha": "^10.7.3",
|
||||
"selenium-webdriver": "^4.24.0"
|
||||
}
|
||||
}
|
||||
|
@@ -13,7 +13,6 @@ require('chromedriver');
|
||||
|
||||
const execSync = require('child_process').execSync,
|
||||
expect = require('expect.js'),
|
||||
superagent = require('superagent'),
|
||||
path = require('path'),
|
||||
timers = require('timers/promises'),
|
||||
{ Builder, By, until } = require('selenium-webdriver'),
|
||||
|
Reference in New Issue
Block a user