Skip to content

Commit 296465e

Browse files
Merge pull request #136 from nook-browser/dev
Dev
2 parents 196096a + bf42bd0 commit 296465e

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Nook.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@
285285
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
286286
CODE_SIGN_STYLE = Manual;
287287
COMBINE_HIDPI_IMAGES = YES;
288-
CURRENT_PROJECT_VERSION = 2;
288+
CURRENT_PROJECT_VERSION = 1;
289289
DEVELOPMENT_TEAM = "";
290290
ENABLE_APP_SANDBOX = NO;
291291
ENABLE_HARDENED_RUNTIME = YES;
@@ -301,7 +301,7 @@
301301
"$(inherited)",
302302
"@executable_path/../Frameworks",
303303
);
304-
MARKETING_VERSION = 1.0.1;
304+
MARKETING_VERSION = 1.0.2;
305305
PRODUCT_BUNDLE_IDENTIFIER = io.browsewithnook.nook;
306306
PRODUCT_NAME = "$(TARGET_NAME)";
307307
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -329,7 +329,7 @@
329329
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Developer ID Application";
330330
CODE_SIGN_STYLE = Manual;
331331
COMBINE_HIDPI_IMAGES = YES;
332-
CURRENT_PROJECT_VERSION = 2;
332+
CURRENT_PROJECT_VERSION = 1;
333333
DEVELOPMENT_TEAM = "";
334334
"DEVELOPMENT_TEAM[sdk=macosx*]" = 9DLM793N9T;
335335
ENABLE_APP_SANDBOX = NO;
@@ -351,7 +351,7 @@
351351
"$(inherited)",
352352
"@executable_path/../Frameworks",
353353
);
354-
MARKETING_VERSION = 1.0.1;
354+
MARKETING_VERSION = 1.0.2;
355355
PRODUCT_BUNDLE_IDENTIFIER = io.browsewithnook.nook;
356356
PRODUCT_NAME = "$(TARGET_NAME)";
357357
PROVISIONING_PROFILE_SPECIFIER = "";

Nook/Managers/ExternalMiniWindowManager/ExternalMiniWindowManager.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ final class ExternalMiniWindowManager {
158158
browserManager.tabManager.setActiveTab(newTab)
159159

160160
// If this is the first window opening, set this as the active space for the browser manager
161-
if browserManager.tabManager.currentSpace == nil {
162-
browserManager.tabManager.setActiveSpace(targetSpace)
161+
if browserManager.tabManager.currentSpace == nil, let space = targetSpace {
162+
browserManager.tabManager.setActiveSpace(space)
163163
}
164164

165165
sessions[session.id]?.controller.close()

0 commit comments

Comments
 (0)