Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for Xcode 16 #3690

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Hammerspoon/Build Configs/Project-Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Base SDK
SDKROOT = macosx
// macOS Deployment Target
MACOSX_DEPLOYMENT_TARGET = 12.0
MACOSX_DEPLOYMENT_TARGET = 13.0
// Build Active Architecture Only
ONLY_ACTIVE_ARCH = YES

Expand Down
2 changes: 1 addition & 1 deletion LuaSkin/LuaSkin-Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// Base SDK
SDKROOT = macosx
// macOS Deployment Target
MACOSX_DEPLOYMENT_TARGET = 12.0
MACOSX_DEPLOYMENT_TARGET = 13.0
// Build Active Architecture Only
ONLY_ACTIVE_ARCH = YES

Expand Down
3 changes: 0 additions & 3 deletions LuaSkin/LuaSkin.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@
);
INFOPLIST_FILE = LuaSkinTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = "org.hammerspoon.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "";
Expand Down Expand Up @@ -848,7 +847,6 @@
);
INFOPLIST_FILE = LuaSkinTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = "org.hammerspoon.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "";
Expand All @@ -865,7 +863,6 @@
);
INFOPLIST_FILE = LuaSkinTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = "org.hammerspoon.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
WARNING_CFLAGS = "";
Expand Down
10 changes: 5 additions & 5 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment this line to define a global platform for your project
platform :osx, '12.0'
platform :osx, '13.0'

inhibit_all_warnings!

Expand All @@ -13,10 +13,10 @@ pod 'CocoaLumberjack', '3.8.5'
pod 'CocoaAsyncSocket', '7.6.5'
pod 'CocoaHTTPServer', :git => 'https://github.com/Hammerspoon/CocoaHTTPServer.git'
pod 'PocketSocket/Client', '1.0.1'
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '8.32.0'
pod 'Sentry', :git => 'https://github.com/getsentry/sentry-cocoa.git', :tag => '8.36.0'
pod 'Sparkle', '2.6.4', :configurations => ['Release']
pod 'MIKMIDI', '1.7.1'
pod 'SocketRocket', '0.7.0'
pod 'SocketRocket', '0.7.1'
pod 'ORSSerialPort', '2.1.0'
end

Expand All @@ -26,8 +26,8 @@ post_install do |installer|

target.build_configurations.each do |config|
config.build_settings['ENABLE_NS_ASSERTIONS'] = 'YES'
if ['10.6', '10.7', '10.8', '10.9', '10.10', '10.11', '10.15', '11.0', '11.1', '11.2', '11.3', '11.4', '11.5'].include? config.build_settings['MACOSX_DEPLOYMENT_TARGET']
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '12.0'
if ['10.6', '10.7', '10.8', '10.9', '10.10', '10.11', '10.12', '10.13', '10.14', '10.15', '11.0', '11.1', '11.2', '11.3', '11.4', '11.5', '12.0'].include? config.build_settings['MACOSX_DEPLOYMENT_TARGET']
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '13.0'
end
end

Expand Down
22 changes: 11 additions & 11 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ PODS:
- PocketSocket/Client (1.0.1):
- PocketSocket/Core
- PocketSocket/Core (1.0.1)
- Sentry (8.32.0):
- Sentry/Core (= 8.32.0)
- Sentry/Core (8.32.0)
- SocketRocket (0.7.0)
- Sentry (8.36.0):
- Sentry/Core (= 8.36.0)
- Sentry/Core (8.36.0)
- SocketRocket (0.7.1)
- Sparkle (2.6.4)

DEPENDENCIES:
Expand All @@ -26,8 +26,8 @@ DEPENDENCIES:
- MIKMIDI (= 1.7.1)
- ORSSerialPort (= 2.1.0)
- PocketSocket/Client (= 1.0.1)
- Sentry (from `https://github.com/getsentry/sentry-cocoa.git`, tag `8.32.0`)
- SocketRocket (= 0.7.0)
- Sentry (from `https://github.com/getsentry/sentry-cocoa.git`, tag `8.36.0`)
- SocketRocket (= 0.7.1)
- Sparkle (= 2.6.4)

SPEC REPOS:
Expand All @@ -46,15 +46,15 @@ EXTERNAL SOURCES:
:git: https://github.com/Hammerspoon/CocoaHTTPServer.git
Sentry:
:git: https://github.com/getsentry/sentry-cocoa.git
:tag: 8.32.0
:tag: 8.36.0

CHECKOUT OPTIONS:
CocoaHTTPServer:
:commit: aa05e484e2f5c8b6454590ed06a97b2bf636a1ca
:git: https://github.com/Hammerspoon/CocoaHTTPServer.git
Sentry:
:git: https://github.com/getsentry/sentry-cocoa.git
:tag: 8.32.0
:tag: 8.36.0

SPEC CHECKSUMS:
ASCIImage: bcff9650deae86e0e0ac310145cc628948201ab8
Expand All @@ -64,10 +64,10 @@ SPEC CHECKSUMS:
MIKMIDI: f53dca2f372e71183ecdd2b35c984c1c2cd11cbc
ORSSerialPort: d2d5d131797453430c557ba8dc7dcbcae20ff2e5
PocketSocket: 9c6867d66fb4f962af96b9b07f4b45bb561b2c2a
Sentry: 96ae1dcdf01a644bc3a3b1dc279cecaf48a833fb
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
Sentry: f8374b5415bc38dfb5645941b3ae31230fbeae57
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
Sparkle: 5f8960a7a119aa7d45dacc0d5837017170bc5675

PODFILE CHECKSUM: edeb1fba3ed859020dfc8506d8480847a64c18c3
PODFILE CHECKSUM: 62fad4323b6e7a15a8190b62cddcaa4cb0408157

COCOAPODS: 1.15.2
1 change: 1 addition & 0 deletions Pods/Headers/Private/Sentry/SentryANRTrackerV2.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Private/Sentry/SentryBaggage.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Pods/Headers/Private/Sentry/SentryFileContents.h

This file was deleted.

1 change: 1 addition & 0 deletions Pods/Headers/Private/Sentry/SentryLogC.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Pods/Headers/Private/Sentry/SentryLogOutput.h

This file was deleted.

1 change: 1 addition & 0 deletions Pods/Headers/Private/Sentry/SentrySessionReplaySyncC.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pods/Headers/Private/Sentry/SentryTraceContext.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Public/Sentry/SentryBaggage.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Pods/Headers/Public/Sentry/SentryTraceContext.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/Local Podspecs/Sentry.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading