|
I wasn't presented any option by the installer to choose an installation location. So, unavoidably, I have a 500mb install of Thorium in |
Replies: 3 comments 1 reply
|
The missing option is deliberate rather than a glitch — it's turned off in the build config ( "nsis": {
"oneClick": false,
"perMachine": false,
...
"allowToChangeInstallationDirectory": false,
I'd avoid just dragging the folder to D:. The uninstaller lives inside that folder and the registry entry Windows uses for "Uninstall" records the path it was installed to, so moving it leaves you with a broken uninstall entry, and the updater writes into the recorded location too. What does work cleanly is moving the files and leaving a junction behind, so every recorded path stays valid while the bytes live on D:. Close Thorium, then from an admin prompt: Windows follows the junction transparently, so the app, its shortcuts, the updater and the uninstaller all behave as if nothing changed. Worth knowing your reading data isn't in that folder anyway — it's under |
|
Thanks for the prompt reply. If I have an eBook library already categorized into folders on my D Drive can I just point Thorium to that? |
|
Thank you @MLuc24 for helping out :)
...the subfolder inside https://github.com/edrlab/thorium-reader/releases/tag/v3.5.0-rc.1 I am tagging @panaC who is the core developer who gets the credit for this new feature! |
The missing option is deliberate rather than a glitch — it's turned off in the build config (
package.json):allowToChangeInstallationDirectory: falseis what removes the directory page, andperMachine: falseis why it lands in your user profile underAppData\Local\Programsinstead ofProgram Files. There's also no portable Windows build to sidestep it with — the release assets areThorium.Setup.<version>.exeplus the Linux and macOS ones, nothing standalone.I'd avoid just dragging the folder to D:. The uninstaller lives inside that folder and the registry entry Windows uses for "Uni…