mirror of
https://github.com/KrishKrosh/TrackWeight.git
synced 2026-06-18 07:24:30 +00:00
Target to macOS 13.0
This commit is contained in:
@@ -287,7 +287,7 @@ jobs:
|
||||
3. Run the app and follow the setup instructions
|
||||
|
||||
## Requirements
|
||||
- macOS 13.0 or later
|
||||
- macOS 13.0 or later (Ventura or newer)
|
||||
- MacBook with Force Touch trackpad (2015 or newer MacBook Pro, 2016 or newer MacBook)
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -22,7 +22,7 @@ The key insight is that trackpad pressure events are only generated when there's
|
||||
|
||||
## Requirements
|
||||
|
||||
- **macOS 13.0+** (for Open Multi-Touch Support library compatibility)
|
||||
- **macOS 13.0+** (Ventura or later)
|
||||
- **MacBook with Force Touch trackpad** (2015 or newer MacBook Pro, 2016 or newer MacBook)
|
||||
- **App Sandbox disabled** (required for low-level trackpad access)
|
||||
- **Xcode 16.0+** and **Swift 6.0+** (for development)
|
||||
|
||||
@@ -254,7 +254,7 @@
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 13.5;
|
||||
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
@@ -313,7 +313,7 @@
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 13.5;
|
||||
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
@@ -342,7 +342,7 @@
|
||||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 14.6;
|
||||
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
||||
MARKETING_VERSION = 1.0;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.krishkrosh.trackweight;
|
||||
@@ -373,7 +373,7 @@
|
||||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 14.6;
|
||||
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
||||
MARKETING_VERSION = 1.0;
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.krishkrosh.trackweight;
|
||||
|
||||
@@ -62,8 +62,11 @@ struct HomeView: View {
|
||||
.padding(.vertical, 20)
|
||||
.background(
|
||||
RoundedRectangle(cornerRadius: 15)
|
||||
.fill(Color.orange.opacity(0.05))
|
||||
.stroke(Color.orange.opacity(0.2), lineWidth: 1)
|
||||
.foregroundColor(Color.orange.opacity(0.05))
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: 15)
|
||||
.stroke(Color.orange.opacity(0.2), lineWidth: 1)
|
||||
)
|
||||
)
|
||||
.frame(maxWidth: 500)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user