Skip to content

Commit

Permalink
fix: πŸ› To missing favicon in web version
Browse files Browse the repository at this point in the history
βœ… Closes: #116
  • Loading branch information
MadejaMaciej committed Apr 13, 2024
1 parent 1e8ccb2 commit 2fe8185
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Lost Dutchman Mine Change Log
0.2.2 April 21, 2024
-------------------

- Bug #116: Add favicon in web version (MadejaMaciej)
- Enh #113: Create redirect file to the game in web version (MadejaMaciej)
- Bug #111: Fix sounds on web version (MadejaMaciej)
- Enh #112: Change dimensions and margins (MadejaMaciej)
Expand Down
4 changes: 2 additions & 2 deletions code-desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"scripts": {
"dev": "electron-forge start",
"build": "electron-forge make",
"build:web:mac": "electron-forge make && cp index.html ./.webpack/arm64/renderer",
"build:web:win": "electron-forge make && copy index.html ./.webpack/x64/renderer",
"build:web:mac": "electron-forge make && cp index.html ./.webpack/arm64/renderer && cp ./src/favicon.png ./.webpack/arm64/renderer/main_window",
"build:web:win": "electron-forge make && copy index.html ./.webpack/x64/renderer && copy ./src/favicon.png ./.webpack/x64/renderer/main_window",
"build:win:dir": "electron-builder --dir",
"build:win:dist": "electron-builder",
"publish": "electron-forge publish",
Expand Down
Binary file added code-desktop/src/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions code-desktop/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<title>Lost Dutchman Mine</title>
<link rel="icon" type="image/png" href="favicon.png" />

</head>
<body>
Expand Down

0 comments on commit 2fe8185

Please sign in to comment.