-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install WASM in 2024 folders. * Update UI strings * Use simpler strings for MSFS * Add manual script for 2024
- Loading branch information
Showing
19 changed files
with
4,607 additions
and
4,514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
setLocal EnableDelayedExpansion | ||
@echo off | ||
IF EXIST "%LOCALAPPDATA%\Packages\Microsoft.LimitlessBeta_8wekyb3d8bbwe\LocalCache\UserCfg.opt" ( | ||
echo store version | ||
SET TOSEARCH="%LOCALAPPDATA%\Packages\Microsoft.Limitless_8wekyb3d8bbwe\LocalCache\UserCfg.opt" | ||
) ELSE ( | ||
echo normal version | ||
SET TOSEARCH="%appdata%\Microsoft Flight Simulator 2024\UserCfg.opt" | ||
) | ||
IF EXIST %TOSEARCH% ( | ||
for /f "delims=" %%i in ('findstr "InstalledPackagesPath " %TOSEARCH%') do ( | ||
SET RESULT=%%i | ||
) | ||
echo found !RESULT! | ||
SET RESULT=!RESULT:~23! | ||
SET RESULT=!RESULT:~0,-1! | ||
echo transform !RESULT! | ||
IF EXIST !RESULT!\Community\ ( | ||
xcopy /F /R /Y /E /C .\mobiflight-event-module !RESULT!\Community\mobiflight-event-module\ | ||
exit 0 | ||
) ELSE ( | ||
echo ERROR Community folder not found... | ||
) | ||
) ELSE ( | ||
echo ERROR MSFS2020 config file not found... | ||
) | ||
pause | ||
exit 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.