diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index f87b60f..3431b33 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -52,7 +52,7 @@ jobs: cd standalone ../env/bin/pyinstaller gui_macos.spec cd dist - zip -r9 mltd-relive-${{ github.ref_name }}-macos mltd-relive-standalone.app + zip -r9 mltd-relive-${{ github.ref_name }}-macos.zip mltd-relive-standalone.app out-name: macos out-path: standalone/dist/mltd-relive-${{ github.ref_name }}-macos.zip steps: diff --git a/standalone/mltd/servers/config.py b/standalone/mltd/servers/config.py index 1ca74a0..c0ca05d 100644 --- a/standalone/mltd/servers/config.py +++ b/standalone/mltd/servers/config.py @@ -2,7 +2,7 @@ import logging from datetime import timedelta, timezone -_version = '0.0.0' +_version = '0.0.3' # 'zh' for Traditional Chinese, 'ko' for Korean _language = 'zh' _log_level = str(logging.INFO)