Skip to content

Commit

Permalink
Added new circled icons
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschwendener committed May 9, 2019
1 parent 3523ca3 commit ef26adb
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 3 deletions.
Binary file added assets/ueli-black-on-white-logo-circle.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 added assets/ueli-white-on-black-logo-circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions electron-builder-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ files:
- assets/**/*

win:
icon: ./img/icons/win/ueli-black-on-white-logo.ico
icon: ./img/icons/win/ueli-white-on-black-logo.ico
target:
- nsis
- zip
publish:
- github

mac:
icon: ./img/icons/mac/ueli-black-on-white-logo.icns
icon: ./img/icons/mac/icon-white-circle.icns
category: public.app-category.utilities
target:
- dmg
Expand Down
Binary file added img/icons/mac/icon-black-circle.icns
Binary file not shown.
File renamed without changes.
Binary file added img/icons/mac/icon-white-circle.icns
Binary file not shown.
Binary file removed img/icons/mac/ueli-black-on-white-logo.icns
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (!FileHelpers.fileExistsSync(ueliTempFolder)) {
const configRepository = new ElectronStoreConfigRepository(cloneDeep(defaultUserConfigOptions));
const currentOperatingSystem = isWindows(platform()) ? OperatingSystem.Windows : OperatingSystem.macOS;
const filePathExecutor = currentOperatingSystem === OperatingSystem.Windows ? executeFilePathWindows : executeFilePathMacOs;
const windowIconFilePath = join(__dirname, "..", "assets", "ueli-black-on-white-logo.png");
const windowIconFilePath = join(__dirname, "..", "assets", "ueli-white-on-black-logo.png");
const userInputHistoryManager = new UserInputHistoryManager();

if (currentOperatingSystem === OperatingSystem.macOS) {
Expand Down

0 comments on commit ef26adb

Please sign in to comment.