Skip to content

Commit ade2a40

Browse files
committed
Shift+right-click context menu options: select version, and start shell
1 parent 4ae2875 commit ade2a40

23 files changed

+1552
-474
lines changed

.github/workflows/release.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,27 @@ jobs:
4040
TARGET: windows
4141
CMD_BUILD: |
4242
mkdir ewlaunch
43-
pyinstaller --windowed --onefile ewlaunch.py --icon=ewlaunch.ico
43+
pyinstaller --windowed --onefile ewlaunch_win.py --icon=ewlaunch.ico
44+
pyinstaller --onefile ewlaunch.py
45+
Move-Item dist/ewlaunch_win.exe ewlaunch/
4446
Move-Item dist/ewlaunch.exe ewlaunch/
4547
Copy-Item installations.ini ewlaunch/
4648
Copy-Item ewlaunch.ini ewlaunch/
4749
Copy-Item add_context_menu.reg ewlaunch/
4850
Copy-Item remove_context_menu.reg ewlaunch/
4951
Copy-Item README.md ewlaunch/
52+
Copy-Item init_env.bat ewlaunch/
53+
Copy-Item init_shell.bat ewlaunch/
5054
Compress-Archive -Path ewlaunch/ ewlaunch-"${env:VERSION_TAG}".zip
5155
5256
OUT_FILE_NAME: ewlaunch-${{ github.ref_name }}.zip
5357
ASSET_MIME: application.zip
5458
steps:
5559
- uses: actions/checkout@v1
56-
- name: Set up Python 3.8
60+
- name: Set up Python 3.9.7
5761
uses: actions/setup-python@v2
5862
with:
59-
python-version: 3.8
63+
python-version: 3.9.7
6064
- name: Install dependencies
6165
run: |
6266
python -m pip install --upgrade pip

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ __pycache__
33
build/
44
dist/
55
ewlaunch.spec
6+
ewlaunch_win.spec
67
*~
78
#*#

0 commit comments

Comments
 (0)