Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
INSTALL/launcher/linux/build_appimage.sh \
dist/photomap "${VERSION}" \
"dist/PhotoMapAI-${VERSION}-x86_64.AppImage" \
photomap/frontend/static/icons/favicon-32x32.png
INSTALL/launcher/icons/photomap.png

- uses: actions/upload-artifact@v5
with:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
chmod +x INSTALL/launcher/macos/build_app.sh
INSTALL/launcher/macos/build_app.sh \
dist/photomap "${VERSION}" "dist/PhotoMapAI.app" \
photomap/frontend/static/icons/icon.icns
INSTALL/launcher/icons/photomap.icns

- name: Import signing certificate
if: env.SIGNING_ENABLED == 'true'
Expand Down
Binary file added INSTALL/launcher/icons/photomap.icns
Binary file not shown.
Binary file added INSTALL/launcher/icons/photomap.ico
Binary file not shown.
Binary file added INSTALL/launcher/icons/photomap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 7 additions & 4 deletions INSTALL/launcher/windows/photomap.iss
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ OutputBaseFilename=PhotoMapAI-{#AppVersion}-setup
Compression=lzma2
SolidCompression=yes
WizardStyle=modern
SetupIconFile=..\..\..\photomap\frontend\static\icons\favicon.ico
UninstallDisplayIcon={app}\{#AppExe}
SetupIconFile=..\icons\photomap.ico
UninstallDisplayIcon={app}\photomap.ico

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Expand All @@ -47,13 +47,16 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{

[Files]
Source: "{#SourceExe}"; DestDir: "{app}"; DestName: "{#AppExe}"; Flags: ignoreversion
; Launcher icon used by the Start Menu / desktop shortcuts (the Go exe has no
; embedded icon, so shortcuts reference this file).
Source: "..\icons\photomap.ico"; DestDir: "{app}"; Flags: ignoreversion
; Bundled VC++ runtime installer; only extracted when the runtime is missing.
Source: "{#VCRedist}"; DestDir: "{tmp}"; Flags: deleteafterinstall; Check: VCRedistNeeded

[Icons]
Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExe}"
Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExe}"; IconFilename: "{app}\photomap.ico"
Name: "{group}\Uninstall {#AppName}"; Filename: "{uninstallexe}"
Name: "{autodesktop}\{#AppName}"; Filename: "{app}\{#AppExe}"; Tasks: desktopicon
Name: "{autodesktop}\{#AppName}"; Filename: "{app}\{#AppExe}"; IconFilename: "{app}\photomap.ico"; Tasks: desktopicon

[Run]
; PyTorch needs the Microsoft Visual C++ runtime (vcruntime140.dll, etc.).
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ appimage:
&& PATH="/tmp:$$PATH" APPIMAGE_EXTRACT_AND_RUN=1 \
INSTALL/launcher/linux/build_appimage.sh \
dist/photomap "$$version" "dist/PhotoMapAI-$$version-x86_64.AppImage" \
photomap/frontend/static/icons/favicon-32x32.png \
INSTALL/launcher/icons/photomap.png \
&& echo "" \
&& echo "Built dist/PhotoMapAI-$$version-x86_64.AppImage"

Expand Down
Loading