Skip to content

Commit 516255a

Browse files
authored
Merge pull request #4 from Shakshi3104/develop
Support M1 Ultra
2 parents aa235cb + 08a9673 commit 516255a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Gaufre.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@
316316
"$(inherited)",
317317
"@executable_path/../Frameworks",
318318
);
319-
MARKETING_VERSION = 1.0;
319+
MARKETING_VERSION = 2.0.0;
320320
PRODUCT_BUNDLE_IDENTIFIER = com.shakshi.macos.Gaufre;
321321
PRODUCT_NAME = "$(TARGET_NAME)";
322322
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -345,7 +345,7 @@
345345
"$(inherited)",
346346
"@executable_path/../Frameworks",
347347
);
348-
MARKETING_VERSION = 1.0;
348+
MARKETING_VERSION = 2.0.0;
349349
PRODUCT_BUNDLE_IDENTIFIER = com.shakshi.macos.Gaufre;
350350
PRODUCT_NAME = "$(TARGET_NAME)";
351351
SWIFT_EMIT_LOC_STRINGS = YES;

Gaufre/DebugWafersView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct DebugWafersView: View {
1414
var body: some View {
1515
if coreCount < 30 {
1616
HStack(alignment: .bottom) {
17-
ForEach(0..<coreCount) { _ in
17+
ForEach(0..<coreCount, id: \.self) { _ in
1818
let coreUsage = Double.random(in: 0.0...99.9)
1919

2020
BarView(value: coreUsage)
@@ -24,15 +24,15 @@ struct DebugWafersView: View {
2424
} else {
2525
VStack {
2626
HStack(alignment: .bottom) {
27-
ForEach(0..<coreCount / 2) { _ in
27+
ForEach(0..<coreCount / 2, id: \.self) { _ in
2828
let coreUsage = Double.random(in: 0.0...99.9)
2929

3030
BarView(value: coreUsage)
3131
}
3232
}
3333

3434
HStack(alignment: .bottom) {
35-
ForEach(coreCount / 2 ..< coreCount) { _ in
35+
ForEach(coreCount / 2 ..< coreCount, id: \.self) { _ in
3636
let coreUsage = Double.random(in: 0.0...99.9)
3737

3838
BarView(value: coreUsage)

0 commit comments

Comments
 (0)