File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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;
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;
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments