Skip to content

Commit 902f327

Browse files
committed
- Bump bundled Syncthing to v1.29.2
- (chore) Improve Syncthing bundle scripts
1 parent f063741 commit 902f327

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ release-dmg:
1212
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Release -scheme Pods-syncthing
1313
xcodebuild -workspace "syncthing.xcworkspace" -derivedDataPath $(PWD) -configuration Release -scheme syncthing-dmg
1414
release-update:
15-
./cmd/update-release.py
15+
source ./venv/bin/activate && ./cmd/update-release.py
1616
clean:
1717
rm -Rf Build Index Logs ModuleCache.noindex info.plist

cmd/update-release.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,7 @@
7272
if line.startswith(linePrefix):
7373
line = '{}"{}"\n'.format(linePrefix, str(version))
7474
sys.stdout.write(line)
75+
76+
print(f"Found latest tag from github: {tag_name}")
77+
print(f"CFBundleShortVersionString={CFBundleShortVersionString}")
78+
print(f"CFBundleVersion={CFBundleVersion}")

syncthing/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.28.1-1</string>
22+
<string>1.29.2-1</string>
2323
<key>CFBundleVersion</key>
24-
<string>102800101</string>
24+
<string>102900201</string>
2525
<key>LSApplicationCategoryType</key>
2626
<string>public.app-category.utilities</string>
2727
<key>LSMinimumSystemVersion</key>

syncthing/Scripts/syncthing-resource.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33

44
# Download and unpack syncthing into ${PRODUCT_NAME}.app/Contents/Resources
5-
SYNCTHING_VERSION="1.28.1"
5+
SYNCTHING_VERSION="1.29.2"
66
SYNCTHING_DIST_URL="https://github.com/syncthing/syncthing/releases/download"
77
SYNCTHING_TARBALL_URL="${SYNCTHING_DIST_URL}/v${SYNCTHING_VERSION}/syncthing-macos-universal-v${SYNCTHING_VERSION}.zip"
88

0 commit comments

Comments
 (0)