Skip to content

Commit

Permalink
code signing
Browse files Browse the repository at this point in the history
  • Loading branch information
vincelwt committed Dec 2, 2022
1 parent 9ce68f0 commit f0cab95
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

This is a simple app that makes ChatGPT live in your menubar.

You can quickly open it with Cmd+Alt+G
You can use Cmd+Shift+G to quickly open it from anywhere.

Download:

- [Mac Arm64 .dmg](https://github.com/vincelwt/chatgpt-mac/releases/download/v0.0.1/ChatGPT-0.0.1-arm64.dmg)
- [Mac Intel .dmg](https://github.com/vincelwt/chatgpt-mac/releases/download/v0.0.1/ChatGPT-0.0.1-x64.dmg)
- [Mac Arm64 .dmg](https://github.com/vincelwt/chatgpt-mac/releases/download/v0.0.2/ChatGPT-0.0.2-arm64.dmg)
- [Mac Intel .dmg](https://github.com/vincelwt/chatgpt-mac/releases/download/v0.0.2/ChatGPT-0.0.2-x64.dmg)

<p align="center">
<img src="./images/screenshot.jpeg" width="500">
Expand All @@ -19,4 +19,4 @@ All credit and copyrights goes to OpenAI.

## Author

You can find me on Twitter [@vincelwt](https://twitter.com/vincelwt)
You can find me on Twitter [@vincelwt](https://twitter.com/vincelwt).
23 changes: 15 additions & 8 deletions forge.config.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
// const { parsed } = require("dotenv").config();
const { parsed } = require("dotenv").config();
module.exports = {
packagerConfig: {
name: "ChatGPT",
executableName: "ChatGPT",
icon: "images/icon",
appBundleId: "com.vincelwt.chatgptmac",
extendInfo: {
LSUIElement: "true",
},
// osxSign: {},
// osxNotarize: {
// tool: "notarytool",
// appleId: parsed.APPLE_ID,
// appleIdPassword: parsed.APPLE_PASSWORD,
// teamId: parsed.APPLE_TEAM_ID,
// },
osxSign: {
hardenedRuntime: false,
gatekeeperAssess: false,
identity: "Developer ID Application: Lyser.io Ltd (R4PF6TTR6Z)",
},
osxNotarize: {
appBundleId: "com.vincelwt.chatgptmac",

tool: "notarytool",
appleId: parsed.APPLE_ID,
appleIdPassword: parsed.APPLE_PASSWORD,
teamId: parsed.APPLE_TEAM_ID,
},
},
publishers: [
{
Expand Down

0 comments on commit f0cab95

Please sign in to comment.