Skip to content

Commit f9105f6

Browse files
committed
improve directory clarity with release archives
1 parent 713856d commit f9105f6

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/mac_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build Application with PyInstaller
1+
name: Build Application with PyInstaller on Mac
22

33
on:
44
push:

.github/workflows/win_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ jobs:
4747
4848
- name: Reorganize Files
4949
run: |
50-
Move-Item .\dist\cmdCompass\_internal\data .\dist\data
51-
Move-Item .\dist\cmdCompass\_internal\static .\dist\static
50+
Move-Item .\dist\cmdCompass\_internal\data .\dist\cmdCompass\data
51+
Move-Item .\dist\cmdCompass\_internal\static .\dist\cmdCompass\static
5252
New-Item -ItemType Directory -Force -Path .\release
5353
5454
- name: Create zip Archive
5555
run: |
56-
Compress-Archive -Path .\dist\* -DestinationPath .\release\cmdCompass.zip
56+
Compress-Archive -Path .\dist\cmdCompass\* -DestinationPath .\release\cmdCompass.zip
5757
5858
- name: Create 7z Archive
5959
run: |
60-
7z a .\release\cmdCompass.7z .\dist\*
60+
7z a .\release\cmdCompass.7z .\dist\cmdCompass\*
6161
6262
- name: Upload Artifacts
6363
uses: actions/upload-artifact@v3

cmdcompass/gui/commandbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def __init__(self, master, tags, command, main_window,**kwargs):
99
# Add Tag button
1010
self.add_tag_button = ctk.CTkButton(
1111
self,
12-
text="+",
12+
text="tag",
1313
font=("TkDefaultFont ", 8),
1414
width=15,
1515
height=3,

0 commit comments

Comments
 (0)