Skip to content

Commit

Permalink
Fix: Set icon for app in windows and mac (#596)
Browse files Browse the repository at this point in the history
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

- **New Features**
- Added specific icons for macOS and Windows applications to enhance
visual branding.

- **Bug Fixes**
- Updated the logo import path in the TopBar component to reflect the
new directory structure.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: Baruch Odem <[email protected]>
  • Loading branch information
brafdlog and baruchiro authored Dec 16, 2024
1 parent 2e6b993 commit f494a72
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ linux:
publish:
- provider: github
releaseType: release

mac:
icon: packages/renderer/src/assets/logos/fishLogo.icns
win:
icon: packages/renderer/src/assets/logos/fishOnlyLogo.ico
Binary file added packages/renderer/src/assets/logos/fishLogo.icns
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/renderer/src/components/topBar/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { openExternal } from '#preload';
import { useState } from 'react';
import { Container, Stack } from 'react-bootstrap';
import NavBar from 'react-bootstrap/Navbar';
import logo from '../../assets/logoFishOnly.svg';
import logo from '../../assets/logos/logoFishOnly.svg';

import NavButton from './NavButton';
import ReportProblemModal from './ReportProblemModal';
Expand Down

0 comments on commit f494a72

Please sign in to comment.