Jesse Plamondon-Willard

Results 159 comments of Jesse Plamondon-Willard

There are ways to bundle the bridge project into the mod folder automatically, so it's just magically part of the release package (and it could be handled by the mod...

I'll close this per the above comments, but we can keep discussing possible solutions on Discord. Thanks for the PR though!

Initial mockups (thanks to @strobel1ght!) ![compatible](https://user-images.githubusercontent.com/230581/71753803-b3ae6180-2e51-11ea-8a6b-1a614a906cdf.png) ![workaround](https://user-images.githubusercontent.com/230581/71753802-b3ae6180-2e51-11ea-80fa-d8ca1e794c69.png) ![broken](https://user-images.githubusercontent.com/230581/71753801-b3ae6180-2e51-11ea-97c3-0b4411ce08cb.png)

I'll close this since it still has some unresolved issues, and we're discussing a different library to tackle this on Discord. Thanks for the PR though!

I took a quick look using [this code from StackOverflow](https://stackoverflow.com/a/1132559/262123), which is supposed to work crossplatform: ```cs Process.Start(new ProcessStartInfo { FileName = Constants.GamePath, UseShellExecute = true, Verb = "open" });...

In this case we want to open a folder window, instead of running a script file. Do you mean creating a bash script that opens the folder, and calling that...

@strobel1ght Looks like you never posted the color scheme details (and the primer link is broken)?

I'll close this ticket, since the needed info was never posted. Feel free to reopen if you find it though!

Thanks! Here are the mockups from our Discord discussion: page | mockup ---- | ------ home page | ![](https://user-images.githubusercontent.com/230581/149681315-2f8abe10-aec0-4c51-85be-b45f5e3d4ab6.png) log upload | ![](https://user-images.githubusercontent.com/230581/149681374-3102b319-7376-466a-9055-db0f94cf66af.png) log parsed | ![](https://user-images.githubusercontent.com/230581/149681572-5b330479-aeaf-41c7-8049-c134b675d471.png) mod compat |...

The main terminal logic for Linux does something like this: ``` if not USE_CURRENT_SHELL: open terminal; else if SKIP_TERMINAL: launch without console output; else launch with console output; ``` You...