Skip to content

Commit

Permalink
Add EOP Uninstaller batch file
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieEldridge committed Nov 26, 2023
1 parent f0d07e7 commit ff1a79e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
23 changes: 23 additions & 0 deletions M2TWEOP DataFiles/Uninstall_EOP.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@echo off
echo WARNING!!! THIS FILE WILL DELETE ALL EOP FILES. MAKE BACKUPS OF ANY SCRIPTS YOU WISH TO PRESERVE FIRST BEFORE CONTUINING!

set /p userResponse=Do you really want to uninstall all EOP files? (Y/N):

if /i "%userResponse%"=="Y" (
echo You chose to continue.
rmdir /s /q "eopData"
rmdir /s /q "youneuoy_Data"
rmdir /s /q "eopBattles"
rmdir /s /q "eopRedistributables"
DEL /F /Q "M2TWEOP GUI.exe"
DEL /F /Q "d3d9.dll"
DEL /F /Q "discord_game_sdk.dll"
DEL /F /Q "libfbxsdk.dll"
DEL /F /Q "lua5.1.dll"
DEL /F /Q "M2TWEOPLibrary.dll"
DEL /F /Q "openal32.dll"
) else (
echo You chose to cancel.
)

pause
3 changes: 1 addition & 2 deletions documentationGenerator/releaseInfo/releaseDescription.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@

## **Release Notes**



### **Launcher**
- Enabling Discord Rich Presence no longer opens an extra window, it now seamlessly toggles on and off. You just need to use the launcher if you want to enable it. - *Medik*
- Added a new default theme for the launcher, console and all other EOP GUI elements. - *Medik*
- Added the ability to configure ImGUI elements (Launcher, Console, ImGUI Lua etc.) via a single [toml](https://toml.io/en/) file. See [configuring the EOP launcher](https://youneuoy.github.io/M2TWEOP-library/M2TWEOP_LAUNCHER_SETTINGS.html) tutorial for more information - *Medik*
- Added an executable GUI that allows you to create the [toml](https://toml.io/en/) files with a GUI tool. Thank you [ImThemes](https://github.com/Patitotective/ImThemes). - *Medik*
- Added tooltips that explain what all the EOP launcher settings do - *Medik*
- M2TWEOP GUI automatically selects the mod .cfg file if it detects one - *Fynn*
- Added an uninstaller batch file that deletes all EOP files in the mod folder- *Medik*

![](https://i.imgur.com/Pl02p1W.png)
![](https://i.imgur.com/h8UlYMT.png)
Expand Down

0 comments on commit ff1a79e

Please sign in to comment.