Skip to content

Commit fde633a

Browse files
committed
remove settingsaccess
1 parent 3062bd7 commit fde633a

File tree

3 files changed

+6
-31
lines changed

3 files changed

+6
-31
lines changed

Coder Desktop/Coder Desktop.xcodeproj/project.pbxproj

-17
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
AA8BC3392D0060A900E1ABAA /* ViewInspector in Frameworks */ = {isa = PBXBuildFile; productRef = AA8BC3382D0060A900E1ABAA /* ViewInspector */; };
2626
AA8BC33F2D0061F200E1ABAA /* FluidMenuBarExtra in Frameworks */ = {isa = PBXBuildFile; productRef = AA8BC33E2D0061F200E1ABAA /* FluidMenuBarExtra */; };
2727
AA8BC4CF2D00A4B700E1ABAA /* KeychainAccess in Frameworks */ = {isa = PBXBuildFile; productRef = AA8BC4CE2D00A4B700E1ABAA /* KeychainAccess */; };
28-
AA8EECF72D3A22320049DD09 /* SettingsAccess in Frameworks */ = {isa = PBXBuildFile; productRef = AA8EECF62D3A22320049DD09 /* SettingsAccess */; };
2928
/* End PBXBuildFile section */
3029

3130
/* Begin PBXContainerItemProxy section */
@@ -233,7 +232,6 @@
233232
AA8BC4CF2D00A4B700E1ABAA /* KeychainAccess in Frameworks */,
234233
AA2C690F2D34F6920059AFAF /* LaunchAtLogin in Frameworks */,
235234
AA8BC33F2D0061F200E1ABAA /* FluidMenuBarExtra in Frameworks */,
236-
AA8EECF72D3A22320049DD09 /* SettingsAccess in Frameworks */,
237235
);
238236
runOnlyForDeploymentPostprocessing = 0;
239237
};
@@ -384,7 +382,6 @@
384382
AA8BC33E2D0061F200E1ABAA /* FluidMenuBarExtra */,
385383
AA8BC4CE2D00A4B700E1ABAA /* KeychainAccess */,
386384
AA2C690E2D34F6920059AFAF /* LaunchAtLogin */,
387-
AA8EECF62D3A22320049DD09 /* SettingsAccess */,
388385
);
389386
productName = "Coder Desktop";
390387
productReference = 961678FC2CFF100D00B2B6DF /* Coder Desktop.app */;
@@ -626,7 +623,6 @@
626623
AA3B3E8A2D2E0FE10099996A /* XCRemoteSwiftPackageReference "Mocker" */,
627624
AA2C690D2D34F6920059AFAF /* XCRemoteSwiftPackageReference "LaunchAtLogin-modern" */,
628625
AA2C698A2D354A600059AFAF /* XCRemoteSwiftPackageReference "SwiftLintPlugins" */,
629-
AA8EECF52D3A22320049DD09 /* XCRemoteSwiftPackageReference "SettingsAccess" */,
630626
);
631627
preferredProjectObjectVersion = 77;
632628
productRefGroup = 961678FD2CFF100D00B2B6DF /* Products */;
@@ -1537,14 +1533,6 @@
15371533
kind = branch;
15381534
};
15391535
};
1540-
AA8EECF52D3A22320049DD09 /* XCRemoteSwiftPackageReference "SettingsAccess" */ = {
1541-
isa = XCRemoteSwiftPackageReference;
1542-
repositoryURL = "https://github.com/orchetect/SettingsAccess";
1543-
requirement = {
1544-
kind = upToNextMajorVersion;
1545-
minimumVersion = 2.1.0;
1546-
};
1547-
};
15481536
/* End XCRemoteSwiftPackageReference section */
15491537

15501538
/* Begin XCSwiftPackageProductDependency section */
@@ -1633,11 +1621,6 @@
16331621
package = AA8BC4CD2D00A4B700E1ABAA /* XCRemoteSwiftPackageReference "KeychainAccess" */;
16341622
productName = KeychainAccess;
16351623
};
1636-
AA8EECF62D3A22320049DD09 /* SettingsAccess */ = {
1637-
isa = XCSwiftPackageProductDependency;
1638-
package = AA8EECF52D3A22320049DD09 /* XCRemoteSwiftPackageReference "SettingsAccess" */;
1639-
productName = SettingsAccess;
1640-
};
16411624
/* End XCSwiftPackageProductDependency section */
16421625
};
16431626
rootObject = 961678F42CFF100D00B2B6DF /* Project object */;

Coder Desktop/Coder Desktop.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"originHash" : "b52ef58779afac669f0b78fbf402855ebb45d016ab69ee39b5470c9442c12823",
2+
"originHash" : "c41f63aa01c78f450e2232efbefcd30874995ad120db77fa5942062d6f813891",
33
"pins" : [
44
{
55
"identity" : "fluid-menu-bar-extra",
@@ -36,15 +36,6 @@
3636
"version" : "3.0.2"
3737
}
3838
},
39-
{
40-
"identity" : "settingsaccess",
41-
"kind" : "remoteSourceControl",
42-
"location" : "https://github.com/orchetect/SettingsAccess",
43-
"state" : {
44-
"revision" : "08e80c35501f273afa2f5d6f737429bbe395ff81",
45-
"version" : "2.1.0"
46-
}
47-
},
4839
{
4940
"identity" : "swift-protobuf",
5041
"kind" : "remoteSourceControl",

Coder Desktop/Coder Desktop/Views/VPNMenu.swift

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import SettingsAccess
21
import SwiftUI
32

43
struct VPNMenu<VPN: VPNService, S: Session>: View {
54
@EnvironmentObject var vpn: VPN
65
@EnvironmentObject var session: S
6+
@Environment(\.openSettings) private var openSettings
77

88
let inspection = Inspection<Self>()
99

@@ -53,10 +53,11 @@ struct VPNMenu<VPN: VPNService, S: Session>: View {
5353
TrayDivider()
5454
}
5555
AuthButton<VPN, S>()
56-
SettingsLink {
57-
ButtonRowView { Text("Settings") }
58-
} preAction: {} postAction: {
56+
Button {
57+
openSettings()
5958
appActivate()
59+
} label: {
60+
ButtonRowView { Text("Settings") }
6061
}.buttonStyle(.plain)
6162
Button {
6263
About.open()

0 commit comments

Comments
 (0)