poke-gate 0.0.4 → 0.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.
@@ -48,7 +48,7 @@ jobs:
48
48
  - name: Upload DMG to GitHub Release
49
49
  uses: softprops/action-gh-release@v2
50
50
  with:
51
- files: "build/release/Poke macOS Gate.dmg"
51
+ files: "build/release/Poke.macOS.Gate.dmg"
52
52
  name: Poke Gate ${{ steps.version.outputs.tag }}
53
53
  draft: false
54
54
  prerelease: false
@@ -56,7 +56,7 @@ jobs:
56
56
  body: |
57
57
  ## Installation
58
58
 
59
- 1. Download **Poke macOS Gate.dmg** below
59
+ 1. Download **Poke.macOS.Gate.dmg** below
60
60
  2. Open the DMG and drag **Poke macOS Gate** to Applications
61
61
  3. Since the app is not notarized, macOS may block it on first launch. Run:
62
62
 
@@ -80,7 +80,7 @@ jobs:
80
80
 
81
81
  - name: Compute DMG SHA256
82
82
  id: sha
83
- run: echo "sha256=$(shasum -a 256 'build/release/Poke macOS Gate.dmg' | awk '{print $1}')" >> "$GITHUB_OUTPUT"
83
+ run: echo "sha256=$(shasum -a 256 'build/release/Poke.macOS.Gate.dmg' | awk '{print $1}')" >> "$GITHUB_OUTPUT"
84
84
 
85
85
  - name: Update Homebrew Cask tap
86
86
  env:
@@ -96,7 +96,7 @@ jobs:
96
96
  version "${VERSION_NUM}"
97
97
  sha256 "${SHA256}"
98
98
 
99
- url "https://github.com/f/poke-gate/releases/download/${VERSION}/Poke%20macOS%20Gate.dmg"
99
+ url "https://github.com/f/poke-gate/releases/download/${VERSION}/Poke.macOS.Gate.dmg"
100
100
  name "Poke Gate"
101
101
  desc "macOS menu bar app to expose your machine to your Poke AI assistant"
102
102
  homepage "https://github.com/f/poke-gate"
package/README.md CHANGED
@@ -30,7 +30,7 @@ brew install f/tap/poke-gate
30
30
 
31
31
  **Manual download**
32
32
 
33
- Download the latest **Poke macOS Gate.dmg** from [Releases](https://github.com/f/poke-gate/releases), open it, and drag to Applications. Since the app is not notarized, you may need to run:
33
+ Download the latest **Poke.macOS.Gate.dmg** from [Releases](https://github.com/f/poke-gate/releases), open it, and drag to Applications. Since the app is not notarized, you may need to run:
34
34
 
35
35
  ```bash
36
36
  xattr -cr /Applications/Poke\ macOS\ Gate.app
package/build.sh CHANGED
@@ -9,7 +9,8 @@ RELEASE_DIR="${BUILD_DIR}/release"
9
9
  ARM64_DIR="${BUILD_DIR}/arm64"
10
10
  X86_DIR="${BUILD_DIR}/x86_64"
11
11
  UNIVERSAL_APP="${RELEASE_DIR}/${APP_NAME}.app"
12
- DMG_PATH="${RELEASE_DIR}/${APP_NAME}.dmg"
12
+ DMG_NAME="Poke.macOS.Gate.dmg"
13
+ DMG_PATH="${RELEASE_DIR}/${DMG_NAME}"
13
14
 
14
15
  rm -rf "$BUILD_DIR"
15
16
  mkdir -p "$RELEASE_DIR"
@@ -264,7 +264,7 @@
264
264
  "$(inherited)",
265
265
  "@executable_path/../Frameworks",
266
266
  );
267
- MARKETING_VERSION = 1.0;
267
+ MARKETING_VERSION = 0.0.4;
268
268
  PRODUCT_BUNDLE_IDENTIFIER = "dev.fka.Poke-macOS-Gate";
269
269
  PRODUCT_NAME = "$(TARGET_NAME)";
270
270
  REGISTER_APP_GROUPS = YES;
@@ -296,7 +296,7 @@
296
296
  "$(inherited)",
297
297
  "@executable_path/../Frameworks",
298
298
  );
299
- MARKETING_VERSION = 1.0;
299
+ MARKETING_VERSION = 0.0.4;
300
300
  PRODUCT_BUNDLE_IDENTIFIER = "dev.fka.Poke-macOS-Gate";
301
301
  PRODUCT_NAME = "$(TARGET_NAME)";
302
302
  REGISTER_APP_GROUPS = YES;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poke-gate",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Expose your machine to your Poke AI assistant via MCP tunnel",
5
5
  "type": "module",
6
6
  "bin": {