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

Capital app name #308

Merged
merged 3 commits into from
Jan 10, 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
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ This changelog follows the rules of [Keep a Changelog](http://keepachangelog.com

#### Changed

- When installed, the app is now called "Kando" instead of "kando".
- The X11 backend has been refactored to use a more object-oriented approach. Now it is more inlined with the other native backends.
- The Windows backend has been refactored to use a more object-oriented approach. Now it is more inlined with the other native backends.
- On Windows, the menu window is now minimized instead of hidden when the menu is closed. This allows for a smoother transition when opening the menu again.
Expand Down
3 changes: 1 addition & 2 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { rendererConfig } from './webpack.renderer.config';
const config: ForgeConfig = {
packagerConfig: {
icon: 'assets/icons/icon',
executableName: 'kando',

// This makes sure that the app is not shown in the dock on macOS.
extendInfo: {
Expand All @@ -31,7 +32,6 @@ const config: ForgeConfig = {
new MakerRpm({
// https://js.electronforge.io/interfaces/_electron_forge_maker_rpm.InternalOptions.MakerRpmConfigOptions.html
options: {
productName: 'Kando',
genericName: 'Pie Menu',
icon: 'assets/icons/icon.svg',
homepage: 'https://github.com/kando-menu/kando',
Expand All @@ -42,7 +42,6 @@ const config: ForgeConfig = {
new MakerDeb({
// https://js.electronforge.io/interfaces/_electron_forge_maker_deb.InternalOptions.MakerDebConfigOptions.html
options: {
productName: 'Kando',
genericName: 'Pie Menu',
icon: 'assets/icons/icon.svg',
homepage: 'https://github.com/kando-menu/kando',
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "kando",
"productName": "Kando",
"version": "0.4.0-beta.1",
"description": "The Cross-Platform Pie Menu.",
"copyright": "Copyright © 2024 Simon Schneegans",
Expand Down
Loading