-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FalconBMS official color applied * VR option added * support BMS4.38 Internal test version * set assembly info as a BMS Launcher (not alternative) * installer info update * removed un-needed updater attempt * fix 4.38 to show 4.38 number * show VR toggle for 4.37 * added VR starter * 4.36I uses 4.37 override * added WINWING Orion * Check if installed files really exists. In case of removing BMS files but not registry. * try-catch open sub key * Made a shortcut to Updater * no need bit-swarm * no need update xml * Update label lights blue * Reg key check fixed * log fix * disable this routine for the time being * Fix not launching who don't have VR. * Don't clear category dropdown after assigning control (#79) * bms-logcat.exe crash fix * fix VR setting not saved * remove callsign window for now, * g_nVRHMD Co-authored-by: Daniel Tian <[email protected]>
- Loading branch information
1 parent
426526b
commit 73aafff
Showing
37 changed files
with
3,946 additions
and
693 deletions.
There are no files selected for viewing
210 changes: 105 additions & 105 deletions
210
Falcon BMS Alternative Launcher Setup/Falcon BMS Alternative Launcher Setup.vdproj
Large diffs are not rendered by default.
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
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
18 changes: 18 additions & 0 deletions
18
Falcon BMS Alternative Launcher/Override/OverrideSettingFor438.cs
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,18 @@ | ||
using System; | ||
using System.Collections; | ||
using System.IO; | ||
using System.Text; | ||
using System.Xml.Serialization; | ||
|
||
using FalconBMS.Launcher.Input; | ||
using FalconBMS.Launcher.Windows; | ||
|
||
namespace FalconBMS.Launcher.Override | ||
{ | ||
public class OverrideSettingFor438 : OverrideSettingFor437 | ||
{ | ||
public OverrideSettingFor438(MainWindow mainWindow, AppRegInfo appReg) : base(mainWindow, appReg) | ||
{ | ||
} | ||
} | ||
} |
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
Oops, something went wrong.