Skip to content

Commit 6de5967

Browse files
committed
Minor text fixes, update changelog for 1.1 release
1 parent c7d075a commit 6de5967

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
v1.0 - October 23, 2023
28
Initial release of shtickerpack! Supports:
39
* Unpacking .mf files. Automatically tries to locate a Clash installation to do so.

src/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
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"
3939
ORG_NAME = "lucs100"
4040
APP_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

src/engine.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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 = []

0 commit comments

Comments
 (0)