Skip to content

Commit

Permalink
Merge pull request #7 from noppefoxwolf/release/1.10.0
Browse files Browse the repository at this point in the history
Release/1.10.0
  • Loading branch information
noppefoxwolf authored Jun 24, 2021
2 parents b2a0c88 + 69f4963 commit 8e85222
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 364 deletions.
42 changes: 0 additions & 42 deletions .github/workflows/release.yml

This file was deleted.

9 changes: 9 additions & 0 deletions DebugMenu.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"object": {
"pins": [
{
"package": "DebugMenuConsolePlugin",
"repositoryURL": "git@github.com:noppefoxwolf/DebugMenuConsolePlugin.git",
"state": {
"branch": "main",
"revision": "aee73f58d6e1f346c9e344efe4d4b00658c70afc",
"version": null
}
},
{
"package": "swift-log",
"repositoryURL": "https://github.com/apple/swift-log.git",
Expand Down
22 changes: 22 additions & 0 deletions Example/Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
D7F2874D265D767C00013AAE /* ColorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7F2874C265D767C00013AAE /* ColorViewController.swift */; };
D7F2874E265D769800013AAE /* CustomDebugItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7F85987257D13DB00A7AFDF /* CustomDebugItem.swift */; };
D7F28750265D76A500013AAE /* DebugMenu in Frameworks */ = {isa = PBXBuildFile; productRef = D7F2874F265D76A500013AAE /* DebugMenu */; };
D7F3012E26848C39002F1EDD /* DebugMenuConsolePlugin in Frameworks */ = {isa = PBXBuildFile; productRef = D7F3012D26848C39002F1EDD /* DebugMenuConsolePlugin */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -108,6 +109,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D7F3012E26848C39002F1EDD /* DebugMenuConsolePlugin in Frameworks */,
D7F28750265D76A500013AAE /* DebugMenu in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -250,6 +252,7 @@
name = Shared;
packageProductDependencies = (
D7F2874F265D76A500013AAE /* DebugMenu */,
D7F3012D26848C39002F1EDD /* DebugMenuConsolePlugin */,
);
productName = Shared;
productReference = D7F2873A265D766400013AAE /* Shared.framework */;
Expand Down Expand Up @@ -285,6 +288,9 @@
Base,
);
mainGroup = D7F85938257CFE9800A7AFDF;
packageReferences = (
D7F3012A26848C30002F1EDD /* XCRemoteSwiftPackageReference "DebugMenuConsolePlugin" */,
);
productRefGroup = D7F85942257CFE9800A7AFDF /* Products */;
projectDirPath = "";
projectRoot = "";
Expand Down Expand Up @@ -689,11 +695,27 @@
};
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
D7F3012A26848C30002F1EDD /* XCRemoteSwiftPackageReference "DebugMenuConsolePlugin" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "git@github.com:noppefoxwolf/DebugMenuConsolePlugin.git";
requirement = {
branch = main;
kind = branch;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
D7F2874F265D76A500013AAE /* DebugMenu */ = {
isa = XCSwiftPackageProductDependency;
productName = DebugMenu;
};
D7F3012D26848C39002F1EDD /* DebugMenuConsolePlugin */ = {
isa = XCSwiftPackageProductDependency;
package = D7F3012A26848C30002F1EDD /* XCRemoteSwiftPackageReference "DebugMenuConsolePlugin" */;
productName = DebugMenuConsolePlugin;
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = D7F85939257CFE9800A7AFDF /* Project object */;
Expand Down
1 change: 1 addition & 0 deletions Example/SwiftUIExample/App.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import SwiftUI
import Logging
import DebugMenu
import Shared
import DebugMenuConsolePlugin

@main
struct App: SwiftUI.App {
Expand Down
1 change: 1 addition & 0 deletions Example/UIKitExample/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import UIKit
import Logging
import DebugMenu
import Shared
import DebugMenuConsolePlugin

class SceneDelegate: UIResponder, UIWindowSceneDelegate {

Expand Down
16 changes: 0 additions & 16 deletions Package.resolved

This file was deleted.

12 changes: 4 additions & 8 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@ let package = Package(
products: [
.library(
name: "DebugMenu",
targets: ["DebugMenu"]),
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", from: "1.4.1"),
targets: ["DebugMenu"]
),
],
targets: [
.target(
name: "DebugMenu",
dependencies: [
.product(name: "Logging", package: "swift-log")
]),
name: "DebugMenu"
),
.testTarget(
name: "DebugMenuTests",
dependencies: ["DebugMenu"]),
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ public class CustomComplication: ComplicationPresentable {
}
```

# Plugins

- [DebugMenuConsolePlugin](https://github.com/noppefoxwolf/DebugMenuConsolePlugin)

# How to use

## Open DebugMenu
Expand Down
18 changes: 0 additions & 18 deletions Sources/DebugMenu/Console/ConsoleDebugItem.swift

This file was deleted.

93 changes: 0 additions & 93 deletions Sources/DebugMenu/Console/LogViewController.swift

This file was deleted.

Loading

0 comments on commit 8e85222

Please sign in to comment.