Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file modified .DS_Store
Binary file not shown.
27 changes: 19 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,23 @@ jobs:
run: |
brew install upx
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install --ignore-requires-python -r requirements.txt
- name: Generate Build Info
run: |
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 commit_info.py
- name: Set Version Info
run: |
echo "VERSION_TAG=$(/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -c 'from con import CON; print(CON.__version__)')" >> $GITHUB_ENV
- name: Build Apps
run: |
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 build_project_arm64.py
- name: Create (Pre-)Release on Push
if: github.event_name == 'push'
uses: softprops/action-gh-release@v2
with:
tag_name: 2.0.0
name: 2.0.0 Stable
tag_name: ${{ env.VERSION_TAG }}
name: ${{ env.VERSION_TAG }}
body: ${{ github.event.head_commit.message }}
prerelease: false
prerelease: true
files: |
./dist/Converter_arm64_darwin.zip
build_intel:
Expand All @@ -51,17 +57,22 @@ jobs:
- name: Install Dependencies
run: |
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -m pip install --ignore-requires-python -r requirements.txt
- name: Generate Build Info
run: |
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 commit_info.py
- name: Set Version Info
run: |
echo "VERSION_TAG=$(/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 -c 'from con import CON; print(CON.__version__)')" >> $GITHUB_ENV
- name: Build Apps
run: |
/Library/Frameworks/Python.framework/Versions/3.14/bin/python3 build_project_intel.py
- name: Create (Pre-)Release on Push
if: github.event_name == 'push'
uses: softprops/action-gh-release@v2
with:
tag_name: 2.0.0
name: 2.0.0 Stable
tag_name: ${{ env.VERSION_TAG }}
name: ${{ env.VERSION_TAG }}
body: ${{ github.event.head_commit.message }}
prerelease: false
prerelease: true
files: |
./dist/Converter_intel_darwin.zip

./dist/Converter_intel_darwin.zip
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ cython_debug/
# refer to https://docs.cursor.com/context/ignore-files
.cursorignore
.cursorindexingignore

.trae/
# Marimo
marimo/_static/
marimo/_lsp/
Expand Down
77 changes: 0 additions & 77 deletions CHANGELOG/v2.0.0_new_features.md

This file was deleted.

Loading
Loading