Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.
/ harmonie Public archive

Commit 88694c3

Browse files
authored
Merge pull request #222 from makinosp/develop
Develop
2 parents cbce2b8 + f8166a2 commit 88694c3

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

Harmonie.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
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;
@@ -510,7 +510,7 @@
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;

harmonie/Components/IconSet.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
//
77

88
enum IconSet {
9+
static var account: some Iconizable {
10+
Icon("person.text.rectangle")
11+
}
912
static var at: some Iconizable {
1013
Icon("at")
1114
}

harmonie/Localization/Localizable.xcstrings

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,22 @@
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" : {

harmonie/Views/Setting/Profile/SettingsView+ProfileSection.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)