Rename project to Attractor

This commit is contained in:
James Magahern
2022-03-28 18:27:28 -07:00
parent 44cde0018b
commit cc6b25aab0
5 changed files with 19 additions and 17 deletions

View File

@@ -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 {

View File

@@ -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) {

View File

@@ -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>

View File

@@ -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]];