Skip to content

Commit

Permalink
5.1
Browse files Browse the repository at this point in the history
lang
  • Loading branch information
straight-tamago committed Dec 31, 2022
1 parent a66b9fa commit 8684ad1
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 10 deletions.
6 changes: 4 additions & 2 deletions NoCameraSound/NoCameraSound.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
3D16394A295C4ABF006D31D8 /* vm_unaligned_copy_switch_race.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vm_unaligned_copy_switch_race.c; sourceTree = "<group>"; };
3D163954295C7029006D31D8 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
3D163958295C7810006D31D8 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
3D2342AC295FFFE600A6E40D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -169,6 +170,7 @@
isa = PBXVariantGroup;
children = (
3D163954295C7029006D31D8 /* ja */,
3D2342AC295FFFE600A6E40D /* en */,
);
name = Localizable.strings;
sourceTree = "<group>";
Expand Down Expand Up @@ -314,7 +316,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 5.0;
MARKETING_VERSION = 5.1;
PRODUCT_BUNDLE_IDENTIFIER = "com.straight-tamago.NoCameraSound";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -349,7 +351,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 5.0;
MARKETING_VERSION = 5.1;
PRODUCT_BUNDLE_IDENTIFIER = "com.straight-tamago.NoCameraSound";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
Binary file not shown.
8 changes: 3 additions & 5 deletions NoCameraSound/NoCameraSound/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// ContentView.swift
// NoCameraSound
//
// Created by すとれーとたまご★ on 2022/12/28.
// Created by straight-tamago★ on 2022/12/28.
//

import SwiftUI
Expand Down Expand Up @@ -160,13 +160,11 @@ struct ContentView: View {
Spacer()
if IsSucceeded(TargetFilePath: "file://"+item.path) == true {
Text(
String(IsSucceeded(TargetFilePath: "file://"+item.path))
.replacingOccurrences(of: "true", with: "OFF")
String("OFF")
).foregroundColor(.green)
}else {
Text(
String(IsSucceeded(TargetFilePath: "file://"+item.path))
.replacingOccurrences(of: "false", with: "ON")
String("ON")
).foregroundColor(.red)
}
}
Expand Down
2 changes: 1 addition & 1 deletion NoCameraSound/NoCameraSound/NoCameraSound.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// OverwriteFontImpl.swift
// NoCameraSound
//
// Created by すとれーとたまご★ on 2022/12/28.
// Created by straight-tamago★ on 2022/12/28.
//

import UIKit
Expand Down
2 changes: 1 addition & 1 deletion NoCameraSound/NoCameraSound/NoCameraSoundApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// NoCameraSoundApp.swift
// NoCameraSound
//
// Created by すとれーとたまご★ on 2022/12/28.
// Created by straight-tamago★ on 2022/12/28.
//

import SwiftUI
Expand Down
13 changes: 13 additions & 0 deletions NoCameraSound/NoCameraSound/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*
Localizable.strings
NoCameraSound

Created by straight-tamago★ on 2022/12/28.

*/

"by straight-tamago" = "by straight-tamago";
"Auto run when the app starts (Status: " = "Auto run when the app starts (Status: ";
"Rerun" = "Rerun";
"View Log (Status: " = "View Log (Status: ";
"Not compatible with ios14" = "Not compatible with ios14";
2 changes: 1 addition & 1 deletion NoCameraSound/NoCameraSound/ja.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Localizable.strings
NoCameraSound

Created by すとれーとたまご★ on 2022/12/28.
Created by straight-tamago★ on 2022/12/28.

*/

Expand Down

0 comments on commit 8684ad1

Please sign in to comment.