Skip to content

Commit

Permalink
Merge pull request #21 from NHLOCAL/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
NHLOCAL authored Dec 28, 2024
2 parents 14a541a + d7f6492 commit 78d001a
Show file tree
Hide file tree
Showing 8 changed files with 1,203 additions and 197 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ jobs:
shell: bash
run: |
VERSION=${GITHUB_REF#refs/tags/v}
FILENAME="Singles-Sorter-$VERSION_CLEAN.apk"
FILENAME="Singles-Sorter-${VERSION}.apk"
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
echo "VERSION_CLEAN=$VERSION_CLEAN" >> $GITHUB_OUTPUT
echo "FILENAME=$FILENAME" >> $GITHUB_OUTPUT
echo "RELEASE_TITLE=מסדר הסינגלים $VERSION" >> $GITHUB_OUTPUT
Expand All @@ -70,4 +69,4 @@ jobs:
draft: true
prerelease: true
files: |
build/apk/${{ steps.get_version.outputs.FILENAME }}
build/apk/${{ steps.get_version.outputs.FILENAME }}
13 changes: 12 additions & 1 deletion .github/workflows/‏‏publish-cli-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ jobs:
$version = "${{ steps.get_version.outputs.VERSION }}"
Move-Item -Path "dist\Singles-Sorter.exe" -Destination "dist\singles-sorter-cli-ai-$version.exe"
- name: Copy models directory
shell: pwsh
run: |
Copy-Item -Path "src\core\models" -Destination "dist\models" -Recurse
- name: Create ZIP Archive
shell: pwsh
run: |
$version = "${{ steps.get_version.outputs.VERSION }}"
Compress-Archive -Path @("dist\singles-sorter-cli-ai-$version.exe", "dist\models") -DestinationPath "dist\singles-sorter-cli-ai-$version.zip"
- name: Create Release
uses: softprops/action-gh-release@v2.0.6
env:
Expand All @@ -49,4 +60,4 @@ jobs:
name: ${{ steps.get_version.outputs.RELEASE_TITLE }}
draft: true
prerelease: true
files: ./dist/singles-sorter-cli-ai-${{ steps.get_version.outputs.VERSION }}.exe
files: ./dist/singles-sorter-cli-ai-${{ steps.get_version.outputs.VERSION }}.zip
39 changes: 0 additions & 39 deletions Singles-Sorter.spec

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "singlesorter"
version = "14.0.0beta"
version = "14.0.0"
description = "מסדר הסינגלים"
authors = [{ name = "NHLOCAL", email = "nh.local11@gmail.com" }]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/core/app/tips.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
{
"type": "טיפ",
"content": "כדי למנוע מהתוכנה ליצור תיקיות חדשות עבור אמנים, הפעל את האפשרות **השתמש בתיקיות קיימות בלבד** תחת **אפשרויות מיון**"
"content": "כדי למנוע מהתוכנה ליצור תיקיות חדשות עבור אמנים, הפעל את האפשרות **שימוש בתיקיות קיימות** תחת **אפשרויות מיון**"
},
{
"type": "טיפ",
Expand Down
Loading

0 comments on commit 78d001a

Please sign in to comment.