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

Commit 6073c46

Browse files
authored
Merge pull request #234 from makinosp/develop
feat: bump up to 1.0.4
2 parents fdbeac0 + 3ddc3aa commit 6073c46

17 files changed

+42
-23
lines changed

Harmonie.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@
475475
"$(inherited)",
476476
"@executable_path/Frameworks",
477477
);
478-
MARKETING_VERSION = 1.0.4;
478+
MARKETING_VERSION = 1.0.5;
479479
PRODUCT_BUNDLE_IDENTIFIER = jp.mknn.harmonie;
480480
PRODUCT_NAME = "$(TARGET_NAME)";
481481
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -511,7 +511,7 @@
511511
"$(inherited)",
512512
"@executable_path/Frameworks",
513513
);
514-
MARKETING_VERSION = 1.0.4;
514+
MARKETING_VERSION = 1.0.5;
515515
PRODUCT_BUNDLE_IDENTIFIER = jp.mknn.harmonie;
516516
PRODUCT_NAME = "$(TARGET_NAME)";
517517
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -647,7 +647,7 @@
647647
repositoryURL = "https://github.com/cybozu/LicenseList.git";
648648
requirement = {
649649
kind = upToNextMajorVersion;
650-
minimumVersion = 0.7.0;
650+
minimumVersion = 2.0.1;
651651
};
652652
};
653653
20592B012C45640D00E1C8B8 /* XCRemoteSwiftPackageReference "async-swift-ui" */ = {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict/>
5+
</plist>

Harmonie.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

harmonie/Components/GeometricScreen.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Created by makinosp on 2024/11/15.
66
//
77

8-
import SwiftUICore
8+
import SwiftUI
99

1010
struct GeometricScreen<Content>: View where Content: View {
1111
private let content: () -> Content

harmonie/Components/LabelItem.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import MemberwiseInit
9-
import SwiftUICore
9+
import SwiftUI
1010

1111
@MemberwiseInit
1212
struct LabelItem: Identifiable {

harmonie/Extensions/Binding+NilCoalescing.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Created by makinosp on 2024/06/17.
66
//
77

8-
import SwiftUICore
8+
import SwiftUI
99

1010
extension Binding where Value: Sendable {
1111
static func ?? <T>(optional: Self, defaultValue: T) -> Binding<T> where Value == T? {

harmonie/Extensions/Binding+containsBinding.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Created by makinosp on 2024/10/20.
66
//
77

8-
import SwiftUICore
8+
import SwiftUI
99

1010
extension Binding where Value: SetAlgebra & Sendable, Value.Element: Sendable {
1111
func containsBinding(for value: Value.Element) -> Binding<Bool> {

harmonie/Extensions/FavoriteType+LocalizedStringKey.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77

88
import VRCKit
9-
import SwiftUICore
9+
import SwiftUI
1010

1111
extension FavoriteType {
1212
var localizedStringKey: LocalizedStringKey {

harmonie/Extensions/GeometryProxy+Equatable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Created by makinosp on 2024/11/04.
66
//
77

8-
import SwiftUICore
8+
import SwiftUI
99

1010
extension GeometryProxy: @retroactive Equatable {
1111
public static func == (lhs: GeometryProxy, rhs: GeometryProxy) -> Bool {

harmonie/Extensions/Status+ColorRepresentable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// Created by makinosp on 2024/04/07.
66
//
77

8-
import SwiftUICore
8+
import SwiftUI
99
import VRCKit
1010

1111
extension UserStatus: ColorRepresentable {

0 commit comments

Comments
 (0)