Skip to content

Commit 9fb7f7c

Browse files
committed
build 10
1 parent d21cf1c commit 9fb7f7c

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

rm2000.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@
694694
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
695695
CODE_SIGN_STYLE = Automatic;
696696
COMBINE_HIDPI_IMAGES = YES;
697-
CURRENT_PROJECT_VERSION = 9;
697+
CURRENT_PROJECT_VERSION = 10;
698698
DEAD_CODE_STRIPPING = YES;
699699
DEVELOPMENT_ASSET_PATHS = "\"rm2000/Preview Content\"";
700700
DEVELOPMENT_TEAM = 5L5B87F6FJ;
@@ -731,7 +731,7 @@
731731
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
732732
CODE_SIGN_STYLE = Automatic;
733733
COMBINE_HIDPI_IMAGES = YES;
734-
CURRENT_PROJECT_VERSION = 9;
734+
CURRENT_PROJECT_VERSION = 10;
735735
DEAD_CODE_STRIPPING = YES;
736736
DEVELOPMENT_ASSET_PATHS = "\"rm2000/Preview Content\"";
737737
DEVELOPMENT_TEAM = 5L5B87F6FJ;

rm2000/RM2000 Tape Recorder.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ struct RM2000TapeRecorderApp: App {
99
@NSApplicationDelegateAdaptor(AppKitWindowManagerDelegate.self) var appDelegate
1010

1111
var body: some Scene {
12-
MenuBarExtra("RP2000 Portable", systemImage: "recordingtape") {
12+
MenuBarExtra {
1313
MenuBarView()
1414
.environmentObject(appDelegate.recordingState)
1515
.environmentObject(sampleStorage)
16+
} label: {
17+
Image(systemName: "recordingtape")
18+
.rotationEffect(.degrees(180))
19+
.fontWeight(.black)
1620
}
1721
.menuBarExtraStyle(.window)
1822

rm2000/Views/Main Window/ContentView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ struct ContentView: View {
3636
SampleStorage.shared.UserDirectory.applySampleEdits(to: FileRepresentable, for: SampleMetadata, with: SampleEditConfiguration)
3737
recordingState.showRenameDialogInMainWindow = false
3838
}
39+
.presentationBackground(.thinMaterial)
3940
}
4041
}
4142
}

rm2000/Views/Sample Editing/EditSampleView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ struct EditSampleView<Model: FileRepresentable>: View {
8181
.padding(.top, 8)
8282
}
8383
.padding()
84-
.frame(minWidth: 350, maxWidth: 400, minHeight: 300)
84+
.frame(minWidth: 350, maxWidth: 400, minHeight: 320)
8585
}
8686
}
8787
}

rm2000/Views/Settings/SettingsView.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,13 @@ struct SettingsView: View {
2222

2323
RecordingTabView(workingDirectory: $workingDirectory)
2424
.tabItem {
25-
Label("Recording", systemImage: "recordingtape.circle.fill")
25+
Label {
26+
Text("Recording")
27+
} icon: {
28+
Image(systemName: "recordingtape")
29+
.rotationEffect(.degrees(180))
30+
.fontWeight(.black)
31+
}
2632
}
2733
.padding()
2834
.frame(width: 450)

0 commit comments

Comments
 (0)