Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Desktop-friendly App Launcher Name #10

Merged
merged 3 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ As of this writing (January 2024), there is no desktop tool to interact with Goo
## Running Locally
The project is made with electron-forge and node.js 18
1. Clone repo.
2. Run `npm i` in the project codebase.
2. Run `npm ci` in the project codebase.
3. Run `npm run start` to start the application in development mode (local storage location is printed to console in case you want to clear it later).
4. Run `npm run package` to create an executable for the current platform.
3 changes: 2 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"appUrl": "https://calendar.google.com",
"windowWidth": 1200,
"windowHeight": 768,
"title": "G Apps Navigator"
"title": "G Apps Navigator",
"titleCamelCase": "GAppsNavigator"
}
5 changes: 4 additions & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
const config = require('./config.json');

module.exports = {
packagerConfig: {
asar: true, // https://electron.github.io/packager/main/interfaces/electronpackager.options.html#asar
icon: 'resources/material_apps'
icon: 'resources/material_apps',
name: config.titleCamelCase,
},
rebuildConfig: {},
makers: [
Expand Down
56 changes: 34 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.