Skip to content

Commit 0b94652

Browse files
aofathyLessica
authored andcommitted
bugfix: allow apps without short version string
Signed-off-by: 82Flex <82flex@gmail.com>
1 parent d3237ec commit 0b94652

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

TrollFools/AppListView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,7 @@ final class AppListModel: ObservableObject {
160160
let url = proxy.bundleURL(),
161161
let teamID = proxy.teamID(),
162162
let appType = proxy.applicationType(),
163-
let localizedName = proxy.localizedName(),
164-
let shortVersionString = proxy.shortVersionString()
163+
let localizedName = proxy.localizedName()
165164
else {
166165
return nil
167166
}
@@ -178,6 +177,7 @@ final class AppListModel: ObservableObject {
178177
return nil
179178
}
180179

180+
let shortVersionString: String? = proxy.shortVersionString()
181181
let app = App(
182182
id: id,
183183
name: localizedName,

TrollFools/Version.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
// https://help.apple.com/xcode/#/dev745c5c974
1010

1111
VERSION = 2.6
12-
BUILD_NUMBER = 6
12+
BUILD_NUMBER = 8

layout/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: wiki.qaq.trollfools
22
Name: TrollFools
3-
Version: 2.6-6
3+
Version: 2.6-8
44
Section: Applications
55
Depends: firmware (>= 14.0)
66
Architecture: iphoneos-arm

0 commit comments

Comments
 (0)