Rename project to Attractor
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
import UIKit
|
||||
|
||||
public enum SessionActivityType: String {
|
||||
case BrowserWindow = "net.buzzert.rossler-attix.browser"
|
||||
case SettingsWindow = "net.buzzert.rossler-attix.settings"
|
||||
case BrowserWindow = "net.buzzert.attractor.browser"
|
||||
case SettingsWindow = "net.buzzert.attractor.settings"
|
||||
}
|
||||
|
||||
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
|
||||
|
||||
@@ -20,7 +20,7 @@ protocol NSToolbarDelegate {}
|
||||
class SettingsViewController: UITabBarController, NSToolbarDelegate
|
||||
{
|
||||
#if targetEnvironment(macCatalyst)
|
||||
let toolbar = NSToolbar(identifier: NSToolbar.Identifier("net.buzzert.rossler-attix.preferences-toolbar"))
|
||||
let toolbar = NSToolbar(identifier: NSToolbar.Identifier("net.buzzert.attractor.preferences-toolbar"))
|
||||
#endif
|
||||
|
||||
init(windowScene: UIWindowScene) {
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>rössler\\attix</string>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
@@ -24,7 +24,7 @@
|
||||
<key>CFBundleTypeRole</key>
|
||||
<string>Viewer</string>
|
||||
<key>CFBundleURLName</key>
|
||||
<string>net.buzzert.rosslerattix</string>
|
||||
<string>net.buzzert.attractor</string>
|
||||
<key>CFBundleURLSchemes</key>
|
||||
<array>
|
||||
<string>http</string>
|
||||
|
||||
@@ -113,7 +113,9 @@
|
||||
|
||||
// Instantiate web view
|
||||
WKWebView *webView = [[WKWebView alloc] initWithFrame:CGRectZero configuration:webViewConfiguration];
|
||||
webView._findInteractionEnabled = YES;
|
||||
if ([webView respondsToSelector:@selector(_setFindInteractionEnabled:)]) {
|
||||
webView._findInteractionEnabled = YES;
|
||||
}
|
||||
|
||||
// Configure proxy interface (interface to remote web process)
|
||||
_webProcessProxy = [[webView _remoteObjectRegistry] remoteObjectProxyWithInterface:[self _webProcessProxyInterface]];
|
||||
|
||||
Reference in New Issue
Block a user