Skip to content

Commit a1550ae

Browse files
committed
0.1.0
1 parent affae1c commit a1550ae

File tree

6 files changed

+81
-7
lines changed

6 files changed

+81
-7
lines changed

.github/workflows/jazzy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Public docs
1+
name: Publish docs
22
on:
33
release:
44
types: [published]

.jazzy.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ build_tool_arguments:
1010
- '5'
1111
theme: fullwidth
1212
hide_documentation_coverage: true
13+
head: "
14+
<script>
15+
window.addEventListener('DOMContentLoaded', () => {
16+
document.querySelector('.header-link[href^=dash-feed]').remove();
17+
});
18+
</script>
19+
"

KeyboardShortcuts.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KeyboardShortcuts'
3-
s.version = '0.0.0'
3+
s.version = '0.1.0'
44
s.summary = 'Add user-customizable global keyboard shortcuts to your macOS app in minutes'
55
s.license = 'MIT'
66
s.homepage = 'https://github.com/sindresorhus/KeyboardShortcuts'

KeyboardShortcuts.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@
515515
"$(inherited)",
516516
"$(TOOLCHAIN_DIR)/usr/lib/swift/macosx",
517517
);
518-
MARKETING_VERSION = 0.0.0;
518+
MARKETING_VERSION = 0.1.0;
519519
OTHER_CFLAGS = "$(inherited)";
520520
OTHER_LDFLAGS = "$(inherited)";
521521
OTHER_SWIFT_FLAGS = "$(inherited)";
@@ -550,7 +550,7 @@
550550
"$(inherited)",
551551
"$(TOOLCHAIN_DIR)/usr/lib/swift/macosx",
552552
);
553-
MARKETING_VERSION = 0.0.0;
553+
MARKETING_VERSION = 0.1.0;
554554
OTHER_CFLAGS = "$(inherited)";
555555
OTHER_LDFLAGS = "$(inherited)";
556556
OTHER_SWIFT_FLAGS = "$(inherited)";
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1140"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "KeyboardShortcuts::KeyboardShortcuts"
18+
BuildableName = "KeyboardShortcuts.framework"
19+
BlueprintName = "KeyboardShortcuts"
20+
ReferencedContainer = "container:KeyboardShortcuts.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
</TestAction>
33+
<LaunchAction
34+
buildConfiguration = "Debug"
35+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37+
launchStyle = "0"
38+
useCustomWorkingDirectory = "NO"
39+
ignoresPersistentStateOnLaunch = "NO"
40+
debugDocumentVersioning = "YES"
41+
debugServiceExtension = "internal"
42+
allowLocationSimulation = "YES">
43+
</LaunchAction>
44+
<ProfileAction
45+
buildConfiguration = "Release"
46+
shouldUseLaunchSchemeArgsEnv = "YES"
47+
savedToolIdentifier = ""
48+
useCustomWorkingDirectory = "NO"
49+
debugDocumentVersioning = "YES">
50+
<MacroExpansion>
51+
<BuildableReference
52+
BuildableIdentifier = "primary"
53+
BlueprintIdentifier = "KeyboardShortcuts::KeyboardShortcuts"
54+
BuildableName = "KeyboardShortcuts.framework"
55+
BlueprintName = "KeyboardShortcuts"
56+
ReferencedContainer = "container:KeyboardShortcuts.xcodeproj">
57+
</BuildableReference>
58+
</MacroExpansion>
59+
</ProfileAction>
60+
<AnalyzeAction
61+
buildConfiguration = "Debug">
62+
</AnalyzeAction>
63+
<ArchiveAction
64+
buildConfiguration = "Release"
65+
revealArchiveInOrganizer = "YES">
66+
</ArchiveAction>
67+
</Scheme>

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<div align="center">
2-
<img width="900" src="logo.png" alt="KeyboardShortcuts">
2+
<img width="900" src="https://github.com/sindresorhus/KeyboardShortcuts/raw/master/logo.png" alt="KeyboardShortcuts">
33
<br>
44
</div>
55

66
This package lets you add support for user-customizable global keyboard shortcuts to your macOS app in minutes. It's fully sandbox and Mac App Store compatible. And it's used in production by [Dato](https://sindresorhus.com/dato), [Jiffy](https://sindresorhus.com/jiffy), and [Lungo](https://sindresorhus.com/lungo).
77

88
This package is still in its early days. I'm happy to accept more configurability and features. PR welcome! What you see here is just what I needed for my own apps.
99

10-
<img src="screenshot.png" width="532">
10+
<img src="https://github.com/sindresorhus/KeyboardShortcuts/raw/master/screenshot.png" width="532">
1111

1212
## Requirements
1313

@@ -18,7 +18,7 @@ macOS 10.11+
1818
#### Swift Package Manager
1919

2020
```swift
21-
.package(url: "https://github.com/sindresorhus/KeyboardShortcuts", from: "0.0.0")
21+
.package(url: "https://github.com/sindresorhus/KeyboardShortcuts", from: "0.1.0")
2222
```
2323

2424
You need to set the build setting “Other Linker Flags” to `-weak_framework Combine` to work around [this Xcode bug](https://github.com/feedback-assistant/reports/issues/44).

0 commit comments

Comments
 (0)