Skip to content

Commit

Permalink
Replaced app icons
Browse files Browse the repository at this point in the history
  • Loading branch information
GyozaGuy committed Nov 3, 2022
1 parent ecec509 commit bc1fcc1
Show file tree
Hide file tree
Showing 11 changed files with 709 additions and 956 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
# Android Messages
# Google Messages

By GyozaGuy

## Description

A basic Electron app that wraps [messages.android.com](https://messages.android.com).

## Icon

["message"](https://thenounproject.com/term/message/849833)
by Gregor Cresnar from the Noun Project.

## Security Concerns

Being concerned about security and suspicious of third-party apps stealing your data is important. This app does nothing but wrap the Android Messages site in a way that allows it to run independent of a web browser. You can see everything it does in `main.js`. (Disclaimer: I can only guarantee the security of the files in this repository, you'll have to trust Electron yourself.)
Being concerned about security and suspicious of third-party apps stealing your data is important. This app does nothing but wrap the Google Messages site in a way that allows it to run independent of a web browser. You can see everything it does in `main.js`. (Disclaimer: I can only guarantee the security of the files in this repository, you'll have to trust Electron yourself.)

If you are still concerned about security (and you should be as a general rule), you can build this yourself by cloning the repository and running the following:
- `npm install`
Expand Down
Binary file added img/messages.icns
Binary file not shown.
Binary file added img/messages.ico
Binary file not shown.
Binary file added img/messages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function createTray() {
{ label: 'Reload', click: () => win.reload() },
{ label: 'Quit', click: () => app.exit() }
]);
const tray = new Tray(`${__dirname}/img/appicon-tray.png`);
const tray = new Tray(`${__dirname}/img/messages.png`);

tray.setToolTip('Messages');
tray.setContextMenu(contextMenu);
Expand Down
Loading

0 comments on commit bc1fcc1

Please sign in to comment.