Skip to content

Commit

Permalink
Preparation for pre-release 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed Aug 7, 2023
1 parent c9e8824 commit 6e38172
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CCMenu.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@
03F6830A25C743F2005D56D9 /* PipelineListToolbar.swift */,
0336DBAB29848FE200E5811C /* AddCCTrayPipeline.swift */,
0336DBAD2984903A00E5811C /* AddGithubPipeline.swift */,
032FE8E32A654D96003244D7 /* GithubAuthController.swift */,
03F682FC25C73584005D56D9 /* EditPipelineSheet.swift */,
);
path = "Pipeline Window";
Expand Down Expand Up @@ -335,7 +336,6 @@
03CC11F1265467C200130833 /* CCTrayResponseParser.swift */,
03D4BB02265EE5840023F4CB /* GithubFeedReader.swift */,
03D4BB04265EE6B50023F4CB /* GithubResponseParser.swift */,
032FE8E32A654D96003244D7 /* GithubAuthController.swift */,
);
path = "Server Monitor";
sourceTree = "<group>";
Expand Down
4 changes: 2 additions & 2 deletions CCMenu/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>20</string>
<string>20.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -34,7 +34,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>2200.2</string>
<string>2200.3</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.developer-tools</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion CCMenu/Source/Pipeline Window/EditPipelineSheet.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct EditPipelineSheet: View {
VStack {
Text("Edit Pipeline")
.font(.headline)
Text("\(pipeline.name)")
Text("missing")
HStack {
Button("Cancel") {
presentation.dismiss()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class GithubAuthController: ObservableObject {
}

let alert = NSAlert()
alert.messageText = "Github sign in"
alert.messageText = "GitHub sign in"
alert.informativeText = "CCMenu will open a page on GitHub. Please copy the code below. You will have to enter it on the web page.\n\n" + userCode + "\n\nWhen you return to CCMenu please wait until a token has arrived."
alert.alertStyle = .informational
alert.addButton(withTitle: "Continue")
Expand Down
2 changes: 1 addition & 1 deletion CCMenu/Source/Server Monitor/ServerMonitor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ServerMonitor: FeedReaderDelegate {

public func start() {
Timer.scheduledTimer(withTimeInterval: 0.1, repeats: false, block: pollServers)
Timer.scheduledTimer(withTimeInterval: 15, repeats: true, block: pollServers)
Timer.scheduledTimer(withTimeInterval: 10, repeats: true, block: pollServers)
}

func pollServers(t: Timer) {
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CCMenu 2

This is work-in-progress of a complete rewrite of [CCMenu](https://github.com/erikdoe/ccmenu) in Swift/SwiftUI. It is not usable at this stage.
This is a complete rewrite of [CCMenu](https://github.com/erikdoe/ccmenu).

There will be a number of pre-releases via Github before it replaces the old version in the AppStore.

Significant known issues are filed as bugs.

Expand All @@ -9,7 +11,7 @@ For now the roadmap is tracked in this readme file.

## Roadmap

### Pre-release 1
### Version 20.0 (CCMenu2 pre-release 1)

- [X] Monitor hard-coded pipelines
- [X] Read legacy config
Expand Down

0 comments on commit 6e38172

Please sign in to comment.