File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed
frontend/extensions-manager Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1717 artifact-name :
1818 description : " Name of the uploaded artifact"
1919 value : SteamHunters-plugin-${{ inputs.version }}
20-
20+
2121jobs :
2222 build :
2323 runs-on : ubuntu-latest
24-
24+
2525 steps :
2626 - name : Checkout code
2727 uses : actions/checkout@v4
28-
28+
2929 - name : Setup Python
3030 uses : actions/setup-python@v4
3131 with :
3232 python-version : ' 3.12'
33-
33+
3434 - name : Setup Bun
3535 uses : oven-sh/setup-bun@v1
3636 with :
3737 bun-version : latest
38-
38+
3939 - name : Install dependencies
4040 run : |
4141 bun install
4242 pip install -r requirements.txt
43-
43+
4444 - name : Build and create zip
4545 run : python helpers/build_zip.py
4646 env :
4747 RELEASE_VERSION : ${{ inputs.version }}
48-
48+
4949 - name : Extract zip for artifact
5050 run : |
5151 mkdir -p temp_artifact
52- unzip "build/Achievement-Groups -plugin-${{ inputs.version }}.zip" -d temp_artifact/
53-
52+ unzip "build/Extendium -plugin-${{ inputs.version }}.zip" -d temp_artifact/
53+
5454 - name : Upload Build Artifact
5555 uses : actions/upload-artifact@v4
5656 with :
57- name : Achievement-Groups -plugin-${{ inputs.version }}
57+ name : Extendium -plugin-${{ inputs.version }}
5858 path : temp_artifact/*
5959 if-no-files-found : error
6060 overwrite : true
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export function ExtensionManagerPopup(): React.ReactNode {
2222 onDismiss = { ( ) => { setManagerPopup ( { open : false } ) ; } }
2323 popupWidth = { mainWindow . innerWidth * 0.75 }
2424 popupHeight = { mainWindow . innerHeight * 0.65 }
25- minWidth = { 880 }
25+ minWidth = { 1280 }
2626 minHeight = { 370 }
2727 resizable
2828 saveDimensionsKey = "extensionManagerPopup"
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def create_zip():
5858 print ("Error: RELEASE_VERSION environment variable is required" )
5959 return False
6060
61- zip_name = f"Achievement-Groups -plugin-{ version } .zip"
61+ zip_name = f"Extendium -plugin-{ version } .zip"
6262
6363 # Root and output directories
6464 root_dir = Path (__file__ ).parent .parent
@@ -83,13 +83,13 @@ def create_zip():
8383 for file in files :
8484 file_path = Path (root ) / file
8585 rel_path = file_path .relative_to (root_dir )
86- zip_path_with_root = Path ('Achievement-Groups -plugin' ) / rel_path
86+ zip_path_with_root = Path ('Extendium -plugin' ) / rel_path
8787 print (f"Adding: { zip_path_with_root } " )
8888 zipf .write (file_path , str (zip_path_with_root ))
8989 # If it's a file, directly add it
9090 elif folder_path .is_file ():
9191 rel_path = folder_path .relative_to (root_dir )
92- zip_path_with_root = Path ('Achievement-Groups -plugin' ) / rel_path
92+ zip_path_with_root = Path ('Extendium -plugin' ) / rel_path
9393 if '.scss' in zip_path_with_root .as_posix ():
9494 print (f"Skipping: { zip_path_with_root } " )
9595 continue
Original file line number Diff line number Diff line change 55 "description" : " A plugin for Millennium that adds chrome extensions support to the client" ,
66 "version" : " 1.0.0" ,
77 "include" : [
8- " public/achievements .css"
8+ " public/extendium .css"
99 ]
1010}
You can’t perform that action at this time.
0 commit comments