Skip to content

Commit

Permalink
Merge pull request #1760 from Eitot/feature/deprecation
Browse files Browse the repository at this point in the history
Replace deprecated method
  • Loading branch information
josh64x2 authored Jun 24, 2024
2 parents fef3c4b + c9ea998 commit 0f255e8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/xcodebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ jobs:
test:
strategy:
matrix:
os: [macos-13, macos-14]
include:
- os: macos-13
xcode: /Applications/Xcode_15.2.app/Contents/Developer
- os: macos-14
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
DEVELOPER_DIR: ${{ matrix.xcode }}
timeout-minutes: 15

steps:
Expand All @@ -26,6 +29,10 @@ jobs:
with:
fetch-depth: 0
- name: Build Xcode project
run: xcodebuild build-for-testing -project Vienna.xcodeproj -scheme Vienna -configuration Development | xcpretty && exit ${PIPESTATUS[0]}
run: |
xcodebuild -version
xcodebuild build-for-testing -project Vienna.xcodeproj -scheme Vienna -configuration Development | xcpretty && exit ${PIPESTATUS[0]}
- name: Test Xcode project
run: xcodebuild test -project Vienna.xcodeproj -scheme Vienna -configuration Development | xcpretty && exit ${PIPESTATUS[0]}
run: |
xcodebuild -version
xcodebuild test -project Vienna.xcodeproj -scheme Vienna -configuration Development | xcpretty && exit ${PIPESTATUS[0]}
12 changes: 9 additions & 3 deletions Vienna/Sources/Application/AppController.m
Original file line number Diff line number Diff line change
Expand Up @@ -909,10 +909,16 @@ -(IBAction)downloadEnclosure:(id)sender
/* openVienna
* Calls into showMainWindow but activates the app first.
*/
-(IBAction)openVienna:(id)sender
- (IBAction)openVienna:(id)sender
{
[NSApp activateIgnoringOtherApps:YES];
[self showMainWindow:sender];
if (@available(macOS 14, *)) {
[NSApp activate];
} else {
[NSApp activateIgnoringOtherApps:YES];
}
if (NSApp.isActive) {
[self showMainWindow:sender];
}
}

/* showMainWindow
Expand Down

0 comments on commit 0f255e8

Please sign in to comment.