You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Set a valid relative Flashpoint Path in MacOS, such as ../ (when using our current Flashpoint folder structure)
After clicking "Save and Restart" Flashpoint will work fine. Yet the path will still be highlighted in red on the Config tab.
Expected behavior
When typing in a valid relative Flashpoint Path, the text box highlight should change to green.
Screenshots
Desktop (please complete the following information):
OS: MacOS 10.15 Catalina
Launcher version: 10.1.7 (prerelease)
Additional context
The problem is in renderer/Util.ts:
// @TODO Move this to the back processexportfunctionisFlashpointValidCheck(flashpointPath: string): Promise<boolean>{returnnewPromise(resolve=>fs.stat(path.join(flashpointPath,'FPSoftware'),error=>resolve(!error)));}
On MacOS, we need to resolve the Flashpoint Path path relative to the path to the launcher's .app package, rather than relative to the executable file (which is inside the .app package).
The text was updated successfully, but these errors were encountered:
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
../
(when using our current Flashpoint folder structure)Expected behavior
When typing in a valid relative Flashpoint Path, the text box highlight should change to green.
Screenshots
Desktop (please complete the following information):
Additional context
The problem is in renderer/Util.ts:
On MacOS, we need to resolve the Flashpoint Path path relative to the path to the launcher's
.app
package, rather than relative to the executable file (which is inside the .app package).The text was updated successfully, but these errors were encountered: