clippa 1.0.1 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <h1 align="center">Clippa</h1>
6
6
 
7
7
  <p align="center">
8
- A small, private macOS clipboard app built around one shortcut: press Command-Shift-W, choose a clip, paste.
8
+ A small, private macOS clipboard app built around one shortcut: press Command-Shift-V, choose a clip, paste.
9
9
  </p>
10
10
 
11
11
  <p align="center">
@@ -59,7 +59,7 @@ You can also download `Clippa.app.zip` from the latest GitHub release, unzip it,
59
59
  ## How It Works
60
60
 
61
61
  - Runs quietly in the background as a menu-bar app.
62
- - Press `Command-Shift-W` while your cursor is in a text field.
62
+ - Press `Command-Shift-V` while your cursor is in a text field.
63
63
  - Use `Up` / `Down` to choose a clipboard item.
64
64
  - Press `Enter` or click an item to paste it.
65
65
  - Press `Esc` or click outside the panel to close it.
@@ -10,7 +10,7 @@ const appName = "Clippa";
10
10
  const bundleIdentifier = "com.ivandovhosheia.Clippa";
11
11
  const localZipPath = path.resolve(__dirname, "../outputs/Clippa.app.zip");
12
12
  const packageJson = require("../package.json");
13
- const defaultZipUrl = "https://github.com/Vaniawl/Clippa/releases/download/v1.0.0/Clippa.app.zip";
13
+ const defaultZipUrl = "https://github.com/Vaniawl/Clippa/releases/download/v1.0.5/Clippa.app.zip";
14
14
  const zipUrl = process.env.CLIPPA_ZIP_URL || defaultZipUrl;
15
15
 
16
16
  function usage() {
@@ -28,7 +28,7 @@ Options:
28
28
  --help Show this help.
29
29
 
30
30
  The installer copies Clippa.app to /Applications when possible, otherwise to ~/Applications.
31
- Press Command-Shift-W in a text field to open Clippa.
31
+ Press Command-Shift-V in a text field to open Clippa.
32
32
  `);
33
33
  }
34
34
 
@@ -189,7 +189,7 @@ async function main() {
189
189
  if (!options.noOpen) {
190
190
  console.log("Opening Clippa...");
191
191
  run("/usr/bin/open", [installPath]);
192
- console.log("Press Command-Shift-W in a text field to open Clippa. Grant Accessibility access if macOS asks.");
192
+ console.log("Press Command-Shift-V in a text field to open Clippa. Grant Accessibility access if macOS asks.");
193
193
  }
194
194
  } finally {
195
195
  fs.rmSync(tempDir, { recursive: true, force: true });
@@ -35,5 +35,5 @@
35
35
  <path d="M414 595h18l8 8v20h-26v-28z" stroke="#FFD479" stroke-width="4" stroke-linejoin="round"/>
36
36
  <text x="464" y="598" fill="#F5F8F6" font-family="-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif" font-size="21" font-weight="720">invoice.pdf</text>
37
37
  <text x="464" y="623" fill="#98A4A0" font-family="-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif" font-size="15" font-weight="610">File / Finder</text>
38
- <text x="380" y="724" fill="#75817D" font-family="-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif" font-size="18" font-weight="650">Command-Shift-W opens Clippa. Enter or click pastes the selected item.</text>
38
+ <text x="380" y="724" fill="#75817D" font-family="-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif" font-size="18" font-weight="650">Command-Shift-V opens Clippa. Enter or click pastes the selected item.</text>
39
39
  </svg>
Binary file
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "clippa",
3
- "version": "1.0.1",
3
+ "version": "1.0.5",
4
4
  "description": "Installer for Clippa, a private macOS paste panel.",
5
5
  "bin": {
6
6
  "install-clippa": "bin/install-clippa.js",
7
- "clippa": "bin/install-clippa.js",
8
- "Clippa": "bin/install-clippa.js"
7
+ "clippa": "bin/install-clippa.js"
9
8
  },
10
9
  "scripts": {
11
10
  "release": "./scripts/release.sh",