Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaysce committed Jan 25, 2022
1 parent c383e35 commit 0952a91
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Jukebox.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0.9.3;
CURRENT_PROJECT_VERSION = 0.9.4;
DEVELOPMENT_ASSET_PATHS = "\"Jukebox/Preview Content\"";
DEVELOPMENT_TEAM = P2Q7LG69J2;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -495,7 +495,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 0.9.3;
MARKETING_VERSION = 0.9.4;
PRODUCT_BUNDLE_IDENTIFIER = dev.jaysce.Jukebox;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand All @@ -516,7 +516,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0.9.3;
CURRENT_PROJECT_VERSION = 0.9.4;
DEVELOPMENT_ASSET_PATHS = "\"Jukebox/Preview Content\"";
DEVELOPMENT_TEAM = P2Q7LG69J2;
ENABLE_HARDENED_RUNTIME = YES;
Expand All @@ -531,7 +531,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 0.9.3;
MARKETING_VERSION = 0.9.4;
PRODUCT_BUNDLE_IDENTIFIER = dev.jaysce.Jukebox;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Jukebox/Views/AboutView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct AboutView: View {
}
VStack(alignment: .leading) {
Text("Jukebox").font(.title).fontWeight(.bold)
Text("Version \(Constants.AppInfo.appVersion ?? "?") (dev)")
Text("Version \(Constants.AppInfo.appVersion ?? "?")")
.foregroundColor(.secondary)
}
Spacer()
Expand Down
4 changes: 2 additions & 2 deletions Jukebox/Views/PreferencesView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ struct PreferencesView: View {
.frame(width: 40, height: 40)
VStack(alignment: .leading) {
Text("Jukebox").font(.headline)
Text("Version \(Constants.AppInfo.appVersion ?? "?") (dev)")
Text("Version \(Constants.AppInfo.appVersion ?? "?")")
.font(.subheadline)
.foregroundColor(.secondary)
}
Expand Down Expand Up @@ -112,7 +112,7 @@ struct PreferencesView: View {
.fontWeight(.semibold)
LaunchAtLogin.Toggle()
HStack {
Picker("Connect Jukebox to: ", selection: $connectedApp) {
Picker("Connect Jukebox to", selection: $connectedApp) {
ForEach(ConnectedApps.allCases, id: \.self) { value in
Text(value.localizedName).tag(value)
}
Expand Down

0 comments on commit 0952a91

Please sign in to comment.