File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff 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
1414release-update :
15- ./cmd/update-release.py
15+ source ./venv/bin/activate && ./cmd/update-release.py
1616clean :
1717 rm -Rf Build Index Logs ModuleCache.noindex info.plist
Original file line number Diff line number Diff line change 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 } " )
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 22set -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 "
66SYNCTHING_DIST_URL=" https://github.com/syncthing/syncthing/releases/download"
77SYNCTHING_TARBALL_URL=" ${SYNCTHING_DIST_URL} /v${SYNCTHING_VERSION} /syncthing-macos-universal-v${SYNCTHING_VERSION} .zip"
88
You can’t perform that action at this time.
0 commit comments