Skip to content

Commit

Permalink
Update the macos client to use the renamed CDVOutline plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens committed Aug 15, 2023
1 parent 1b85943 commit f1b83fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 38 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
70BD686718FFB06500A1EFCF /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70BD686518FFB06500A1EFCF /* WebKit.framework */; };
70BD686D18FFB0BF00A1EFCF /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BD686A18FFB0BF00A1EFCF /* AppDelegate.m */; };
70BD686E18FFB0BF00A1EFCF /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BD686C18FFB0BF00A1EFCF /* MainViewController.m */; };
737FCE3329B34151A67331B4 /* OutlinePlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA09EA80E0C54DFFB24A1810 /* OutlinePlugin.swift */; };
737FCE3329B34151A67331B4 /* CDVOutline.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA09EA80E0C54DFFB24A1810 /* CDVOutline.swift */; };
DBBA975361C94599B9DD3891 /* CDVClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 469466FF1BDB44C081741BF5 /* CDVClipboard.m */; };
EAD11960A27C45AFA5E46584 /* Outline-Bridging-Header.h in Resources */ = {isa = PBXBuildFile; fileRef = A508014170A1492DB0D800B3 /* Outline-Bridging-Header.h */; };
F63DC2202970B26500D92E0A /* OutlineAppleLib in Frameworks */ = {isa = PBXBuildFile; productRef = F63DC21F2970B26500D92E0A /* OutlineAppleLib */; };
Expand Down Expand Up @@ -117,7 +117,7 @@
70BD686C18FFB0BF00A1EFCF /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
70DAA8D91908785C00AF3749 /* www */ = {isa = PBXFileReference; lastKnownFileType = folder; path = www; sourceTree = "<group>"; };
A508014170A1492DB0D800B3 /* Outline-Bridging-Header.h */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.c.h; path = "Outline-Bridging-Header.h"; sourceTree = "<group>"; };
AA09EA80E0C54DFFB24A1810 /* OutlinePlugin.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = OutlinePlugin.swift; path = "cordova-plugin-outline/OutlinePlugin.swift"; sourceTree = "<group>"; };
AA09EA80E0C54DFFB24A1810 /* CDVOutline.swift */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 4; includeInIndex = 0; lastKnownFileType = sourcecode.swift; name = CDVOutline.swift; path = "cordova-plugin-outline/CDVOutline.swift"; sourceTree = "<group>"; };
F63DC21E2970B23B00D92E0A /* OutlineAppleLib */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = OutlineAppleLib; path = ../../src/cordova/apple/OutlineAppleLib; sourceTree = "<group>"; };
FC0799E62037532900A1C822 /* OutlineLauncher.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OutlineLauncher.app; sourceTree = BUILT_PRODUCTS_DIR; };
FC0799E82037532A00A1C822 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -175,7 +175,7 @@
7069FBC31905A1F9000B48E1 /* Plugins */ = {
isa = PBXGroup;
children = (
AA09EA80E0C54DFFB24A1810 /* OutlinePlugin.swift */,
AA09EA80E0C54DFFB24A1810 /* CDVOutline.swift */,
469466FF1BDB44C081741BF5 /* CDVClipboard.m */,
19209C3AABCC45AB8CFDD974 /* CDVClipboard.h */,
);
Expand Down Expand Up @@ -531,7 +531,7 @@
70BD686D18FFB0BF00A1EFCF /* AppDelegate.m in Sources */,
FC6E7F8E204DC1BE003CB365 /* CDVMacOsUrlHandler.swift in Sources */,
70BD686E18FFB0BF00A1EFCF /* MainViewController.m in Sources */,
737FCE3329B34151A67331B4 /* OutlinePlugin.swift in Sources */,
737FCE3329B34151A67331B4 /* CDVOutline.swift in Sources */,
FC7D56051F86969E00ABD5CA /* EventMonitor.swift in Sources */,
DBBA975361C94599B9DD3891 /* CDVClipboard.m in Sources */,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#import "Outline-Swift.h"

@import ServiceManagement;
@import OutlineShared;
@import OutlinePlugin;
@import OutlineTunnel;

@interface AppDelegate()
Expand Down
2 changes: 1 addition & 1 deletion src/cordova/apple/xcode/macos/Outline/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<param name="ios-package" value="CDVDevice" />
</feature>
<feature name="OutlinePlugin">
<param name="ios-package" value="OutlinePlugin" />
<param name="ios-package" value="CDVOutline" />
<param name="onload" value="true" />
</feature>
<feature name="Clipboard">
Expand Down

0 comments on commit f1b83fc

Please sign in to comment.