diff --git a/.gitignore b/.gitignore index b47d1564..5ae7285b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,10 @@ # Development tools .idea/ .vs/ +.vscode/ + +# Development files +*.lnk # Application files Builds/ diff --git a/src/Launch.lua b/src/Launch.lua index 25bd5abc..6822c3e0 100644 --- a/src/Launch.lua +++ b/src/Launch.lua @@ -5,7 +5,9 @@ -- Program entry point; loads and runs the Main module within a protected environment -- -SetWindowTitle("Path of Building") +APP_NAME = "PoB Community Fork" + +SetWindowTitle(APP_NAME) ConExecute("set vid_mode 8") ConExecute("set vid_resizable 3") diff --git a/src/Modules/Main.lua b/src/Modules/Main.lua index 57afa720..ce925b52 100644 --- a/src/Modules/Main.lua +++ b/src/Modules/Main.lua @@ -940,9 +940,9 @@ end function main:SetWindowTitleSubtext(subtext) if not subtext or not self.showTitlebarName then - SetWindowTitle("Path of Building") + SetWindowTitle(APP_NAME) else - SetWindowTitle("Path of Building - "..subtext) + SetWindowTitle(APP_NAME.." - "..subtext) end end