File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1+ v1.1 - November 3, 2023
2+ Focus on major performance improvements! Details:
3+ * Unpacks and repacks now run in the backround instead of freezing the app temporarily.
4+ * Merged repack warning popups into a single popup. This is still a bit ugly right now, but a fix is in development.
5+
6+
17v1.0 - October 23, 2023
28Initial release of shtickerpack! Supports:
39* Unpacking .mf files. Automatically tries to locate a Clash installation to do so.
Original file line number Diff line number Diff line change 3535 "Clash will automatically use any packed files in the <b><code>/contentpacks/</code></b> folder in-game. " +
3636 "Simply remove any .mf file from this folder to disable it." )
3737
38- APP_NAME = "repacker "
38+ APP_NAME = "shtickerpack "
3939ORG_NAME = "lucs100"
4040APP_VER = "1.1"
4141
@@ -391,7 +391,7 @@ def repackTargetDir(self, button: QPushButton):
391391 if not modName .isalnum (): #should refactor these checks but w/e...
392392 msg = QMessageBox .critical (None , "Invalid mod name!" , "Your mod name can only be alphanumeric! Note your mod name shouldn't end with '.mf'." )
393393 return False
394-
394+
395395 if engine .modExists (self .DEFAULT_OUTPUT_DIR , modName ):
396396 msg = QMessageBox .critical (None , "Mod already exists!" , f"{ modName } .mf already exists in the output folder!\n ({ outputDir } )" )
397397 return False
Original file line number Diff line number Diff line change @@ -174,9 +174,6 @@ def addResult(self, result: phasePackResult):
174174
175175 def getMaxWarningLevel (self ) -> int :
176176 return max (self .warnings .values ())
177-
178- def getWarningTypes (self ) -> "set[int]" :
179- return sorted (set (self .warnings .values ()), reverse = True ) #descending
180177
181178 def getFilesAtLevel (self , queryLevel : int ) -> "list[str]" :
182179 output = []
You can’t perform that action at this time.
0 commit comments