Skip to content

Commit ef2cabc

Browse files
committed
Bump ver and update old naming
1 parent 4b20cd3 commit ef2cabc

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

StikDebug.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@
482482
"$(PROJECT_DIR)/StikJIT/idevice",
483483
);
484484
MACOSX_DEPLOYMENT_TARGET = 15.1;
485-
MARKETING_VERSION = 3.1.3;
485+
MARKETING_VERSION = 3.1.4;
486486
PRODUCT_BUNDLE_IDENTIFIER = com.stik.stikdebug;
487487
PRODUCT_NAME = "$(TARGET_NAME)";
488488
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -544,7 +544,7 @@
544544
"$(PROJECT_DIR)/StikJIT/idevice",
545545
);
546546
MACOSX_DEPLOYMENT_TARGET = 15.1;
547-
MARKETING_VERSION = 3.1.3;
547+
MARKETING_VERSION = 3.1.4;
548548
PRODUCT_BUNDLE_IDENTIFIER = com.stik.stikdebug;
549549
PRODUCT_NAME = "$(TARGET_NAME)";
550550
PROVISIONING_PROFILE_SPECIFIER = "";

StikJIT/Utilities/JITEnableContext.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ final class JITEnableContext {
7373

7474
private func makeError(_ message: String, code: Int = -1) -> NSError {
7575
NSError(
76-
domain: "StikJIT",
76+
domain: "StikDebug",
7777
code: code,
7878
userInfo: [NSLocalizedDescriptionKey: message]
7979
)
@@ -469,7 +469,7 @@ final class JITEnableContext {
469469
makeClient: { [weak self] in
470470
guard let self else {
471471
throw NSError(
472-
domain: "StikJIT",
472+
domain: "StikDebug",
473473
code: -1,
474474
userInfo: [NSLocalizedDescriptionKey: "Debug heartbeat context is unavailable"]
475475
)
@@ -496,7 +496,7 @@ final class JITEnableContext {
496496
},
497497
errorBuilder: { [weak self] ffiError, fallback in
498498
self?.error(from: ffiError, fallback: fallback) ?? NSError(
499-
domain: "StikJIT",
499+
domain: "StikDebug",
500500
code: -1,
501501
userInfo: [NSLocalizedDescriptionKey: fallback]
502502
)

StikJIT/Utilities/LogManager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ final class LogManager: ObservableObject {
4242
]
4343

4444
private init() {
45-
addInfoLog("StikJIT starting up")
45+
addInfoLog("StikDebug starting up")
4646
addInfoLog("Initializing environment")
4747
}
4848

StikJIT/Views/ConsoleLogsView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ struct ConsoleLogsView: View {
255255
logsContent += "Version: \(UIDevice.current.systemVersion)\n"
256256
logsContent += "Name: \(UIDevice.current.name)\n"
257257
logsContent += "Model: \(UIDevice.current.model)\n"
258-
logsContent += "StikJIT Version: App Version: 1.0\n\n"
258+
logsContent += "StikDebug Version: App Version: 1.0\n\n"
259259
logsContent += "=== LOG ENTRIES ===\n"
260260
logsContent += logManager.logs.map {
261261
"[\(formatTime(date: $0.timestamp))] [\($0.type.rawValue)] \($0.message)"

0 commit comments

Comments
 (0)