Skip to content

Commit be4ffdf

Browse files
authored
Merge pull request #25 from wikm360/dev
4.3
2 parents 8a2171c + b12098c commit be4ffdf

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
pip install -r requirements.txt
3232
3333
- name: Build executable with flet
34-
run: flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version vLTS-4.2-${{ github.run_number }} --file-version vLTS-4.2-${{ github.run_number }} --company-name wikm.ir
34+
run: flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version v4.3-${{ github.run_number }} --file-version v4.3-${{ github.run_number }} --company-name wikm.ir
3535

3636
- name: Zip executable and folders
3737
run: |
@@ -84,7 +84,7 @@ jobs:
8484
pip install -r requirements.txt
8585
8686
- name: Build executable with flet
87-
run: flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version vLTS-4.2-${{ github.run_number }} --file-version vLTS-4.2-${{ github.run_number }} --company-name wikm.ir
87+
run: flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version v4.3-${{ github.run_number }} --file-version v4.3-${{ github.run_number }} --company-name wikm.ir
8888

8989
- name: Zip executable and folders
9090
run: |
@@ -116,7 +116,7 @@ jobs:
116116
pip install -r requirements.txt
117117
118118
- name: Build executable with flet
119-
run: flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version vLTS-4.2-${{ github.run_number }} --file-version vLTS-4.2-${{ github.run_number }} --company-name wikm.ir
119+
run: flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version v4.3-${{ github.run_number }} --file-version v4.3-${{ github.run_number }} --company-name wikm.ir
120120

121121
- name: Zip executable and folders
122122
run: |
@@ -168,7 +168,7 @@ jobs:
168168
pip3 install --upgrade pip &&
169169
pip3 install pyinstaller &&
170170
pip3 install -r requirements.txt &&
171-
flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version vLTS-4.2-${{ github.run_number }} --file-version vLTS-4.2-${{ github.run_number }} --company-name wikm.ir &&
171+
flet pack -i ./GUI-ver/src/assets/icon.ico ./GUI-ver/src/main.py -n XC --product-name XC --file-description "XC Created By wikm" --product-version v4.3-${{ github.run_number }} --file-version v4.3-${{ github.run_number }} --company-name wikm.ir &&
172172
ls -lah ./dist/
173173
"
174174
@@ -232,19 +232,19 @@ jobs:
232232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
233233
run: >-
234234
gh release create
235-
"vLTS-4.2-${{ github.run_number }}"
235+
"v4.3-${{ github.run_number }}"
236236
--repo "${{ github.repository }}"
237237
--notes ""
238238
--prerelease
239239
--generate-notes
240-
--title "Release vLTS-4.2-${{ github.run_number }}"
240+
--title "Release v4.3-${{ github.run_number }}"
241241
242242
- name: Upload artifacts to GitHub Release
243243
env:
244244
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
245245
run: |
246246
gh release upload \
247-
"vLTS-4.2-${{ github.run_number }}" \
247+
"v4.3-${{ github.run_number }}" \
248248
./release/windows/XC-windows.zip \
249249
./release/ubuntu/XC-ubuntu.zip \
250250
./release/ubuntu20/XC-ubuntu20.zip \

GUI-ver/src/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def os_det():
1616
OS_SYS = os_det()
1717

1818
XRAY_PATH=f"./core/{OS_SYS}/xray"
19-
APP_VERSION = "LTS4.2-8"
19+
APP_VERSION = "4.3-9"
2020
ROOT = "./"
2121
CORE_PATH = "./core"
2222
SAVE_PATH = "./core.zip"

0 commit comments

Comments
 (0)