Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Installer code for Windows

This directory contains the code for Windows installers.

Tauri built-in templates are not used directly to avoid unexpected behavior changes between versions that could wipe user database during an uninstallation.

$LOCALAPPDATA\${BUNDLEID}

%LocalAppData%\com.memospot.app

Tip

WebView cache

Safe to delete recursively.

$LOCALAPPDATA\${PRODUCTNAME}

%LocalAppData%\Memospot

User data and application binaries.

Caution

Stores user data

Only memos.exe and memospot.exe (if using the NSIS/EXE installer) can be safely deleted.

Tweaks

  • Using a custom version of CheckIfAppIsRunning macro (from utils.nsh, reimplemented as KillIfRunning) to fix the issue where the installer would not be able to kill the running app or when the built-in updater kills Memospot and leaves memos.exe running.

Sources