This repository was archived by the owner on Feb 23, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +28
-2
lines changed
Expand file tree Collapse file tree 4 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 474474 "$(inherited)",
475475 "@executable_path/Frameworks",
476476 );
477- MARKETING_VERSION = 1.0.1 ;
477+ MARKETING_VERSION = 1.0.2 ;
478478 PRODUCT_BUNDLE_IDENTIFIER = jp.mknn.harmonie;
479479 PRODUCT_NAME = "$(TARGET_NAME)";
480480 SWIFT_EMIT_LOC_STRINGS = YES;
510510 "$(inherited)",
511511 "@executable_path/Frameworks",
512512 );
513- MARKETING_VERSION = 1.0.1 ;
513+ MARKETING_VERSION = 1.0.2 ;
514514 PRODUCT_BUNDLE_IDENTIFIER = jp.mknn.harmonie;
515515 PRODUCT_NAME = "$(TARGET_NAME)";
516516 SWIFT_EMIT_LOC_STRINGS = YES;
Original file line number Diff line number Diff line change 66//
77
88enum IconSet {
9+ static var account : some Iconizable {
10+ Icon ( " person.text.rectangle " )
11+ }
912 static var at : some Iconizable {
1013 Icon ( " at " )
1114 }
Original file line number Diff line number Diff line change 3131 }
3232 }
3333 },
34+ "Account Settings" : {
35+ "localizations" : {
36+ "ja" : {
37+ "stringUnit" : {
38+ "state" : "translated",
39+ "value" : "アカウント設定"
40+ }
41+ },
42+ "zh-Hans" : {
43+ "stringUnit" : {
44+ "state" : "translated",
45+ "value" : "账号设置"
46+ }
47+ }
48+ }
49+ },
3450 "Activity" : {
3551 "localizations" : {
3652 "ja" : {
Original file line number Diff line number Diff line change @@ -24,6 +24,13 @@ extension SettingsView {
2424 Button ( " Edit " , systemImage: IconSet . edit. systemName) {
2525 isPresentedForm. toggle ( )
2626 }
27+ if let url = URL ( string: " https://vrchat.com/home/profile " ) {
28+ ExternalLink (
29+ title: String ( localized: " Account Settings " ) ,
30+ url: url,
31+ systemImage: IconSet . account. systemName
32+ )
33+ }
2734 }
2835 . textCase ( nil )
2936 }
You can’t perform that action at this time.
0 commit comments