Skip to content

Commit

Permalink
Merge pull request #61 from winebarrel/fix_token_link
Browse files Browse the repository at this point in the history
Fix create token link
  • Loading branch information
winebarrel authored Dec 1, 2024
2 parents 1063ec4 + b222457 commit 46a8c56
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Pulse.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@
CODE_SIGN_ENTITLEMENTS = Pulse/Pulse.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_ASSET_PATHS = "\"Pulse/Preview Content\"";
DEVELOPMENT_TEAM = 97A8B2WE2P;
ENABLE_HARDENED_RUNTIME = YES;
Expand Down Expand Up @@ -334,7 +334,7 @@
CODE_SIGN_ENTITLEMENTS = Pulse/Pulse.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_ASSET_PATHS = "\"Pulse/Preview Content\"";
DEVELOPMENT_TEAM = 97A8B2WE2P;
ENABLE_HARDENED_RUNTIME = YES;
Expand Down
2 changes: 1 addition & 1 deletion Pulse/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct SettingView: View {
SecureField("GitHub token", text: $githubToken).onChange(of: githubToken) {
Vault.githubToken = githubToken
}
Link(destination: URL(string: "https://github.com/settings/tokens")!) {
Link(destination: URL(string: "https://github.com/settings/tokens/new?scopes=repo")!) {
Image(systemName: "questionmark.circle")
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ https://github.com/winebarrel/Pulse/releases/latest

| Field | Value |
| - | - |
| GitHub token | Token with repo scope.<br>Create from https://github.com/settings/tokens/new |
| GitHub token | Token with repo scope.<br>Create from https://github.com/settings/tokens/new?scopes=repo |
| Search query| Pull request search query.<br>See https://docs.github.com/search-github/searching-on-github/searching-issues-and-pull-requests |

## Note
Expand Down

0 comments on commit 46a8c56

Please sign in to comment.