Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vincelwt/chatgpt-mac
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.5
Choose a base ref
...
head repository: vincelwt/chatgpt-mac
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 6 commits
  • 9 files changed
  • 3 contributors

Commits on Dec 6, 2022

  1. Refined app icon

    The current app icon fills the entire image but macOS app icons are only supposed to take up around 80% of the total image area. This should change make it match other macOS icons.
    
    I also ran a couple other image assets through ImageOptim. No reduction in image quality, just stripping metadata.
    AndrewHaglund committed Dec 6, 2022
    Copy the full SHA
    a75de32 View commit details

Commits on Dec 7, 2022

  1. Merge pull request #24 from AndrewHaglund/main

    Refine app icon size
    vincelwt authored Dec 7, 2022
    Copy the full SHA
    c7c0c79 View commit details
  2. Copy the full SHA
    1bd0ee1 View commit details
  3. Copy the full SHA
    317abb1 View commit details

Commits on Dec 12, 2022

  1. Merge pull request #30 from samasante/fix-right-click

    Fix right click
    vincelwt authored Dec 12, 2022
    Copy the full SHA
    22957c7 View commit details

Commits on Oct 23, 2023

  1. Add link to LLMonitor

    vincelwt authored Oct 23, 2023
    Copy the full SHA
    5b9df7c View commit details
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
⭐ Building in AI? My new project is an [open-source toolkit for AI devs](https://github.com/llmonitor/llmonitor), a star would mean the world ⭐

---

# ChatGPT for desktop

This is a simple app that makes ChatGPT live in your menubar.
Binary file modified images/icon.icns
Binary file not shown.
Binary file modified images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/icon@2x.icns
Binary file not shown.
Binary file modified images/icon@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/newiconTemplate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/newiconTemplate@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/screenshot.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -94,6 +94,12 @@ app.on("ready", () => {
mb.tray.popUpContextMenu(Menu.buildFromTemplate(contextMenuTemplate));
});

tray.on("click", (e) => {
//check if ctrl or meta key is pressed while clicking
e.ctrlKey || e.metaKey
? mb.tray.popUpContextMenu(Menu.buildFromTemplate(contextMenuTemplate))
: null;
});
const menu = new Menu();

globalShortcut.register("CommandOrControl+Shift+g", () => {