diff --git a/BorderlessGaming/BorderlessGaming.csproj b/BorderlessGaming/BorderlessGaming.csproj index b6cbe82..d813954 100644 --- a/BorderlessGaming/BorderlessGaming.csproj +++ b/BorderlessGaming/BorderlessGaming.csproj @@ -8,7 +8,7 @@ WinExe BorderlessGaming BorderlessGaming - v4.5.2 + v4.8 512 true publish\ @@ -26,6 +26,7 @@ false false true + x86 @@ -238,9 +239,8 @@ $(PostBuildEventDependsOn); PostBuildMacros; - call signtool sign /tr http://timestamp.digicert.com /td sha256 /fd sha256 /as /sha1 3BD5BE571287FE2052F137C44198AE7BAB38B037 "$(ProjectDir)$(OutDir)$(TargetFileName)" -call iscc /Qp "$(SolutionDir)\Installers\BorderlessGaming_Standalone_Admin.iss" -call signtool sign /tr http://timestamp.digicert.com /td sha256 /fd sha256 /as /sha1 3BD5BE571287FE2052F137C44198AE7BAB38B037 "$(SolutionDir)Installers\BorderlessGaming@(VersionNumber)_admin_setup.exe" + + copy $(SolutionDir)SteamLibs\* $(ProjectDir)$(OutDir) diff --git a/BorderlessGaming/Forms/MainWindow.cs b/BorderlessGaming/Forms/MainWindow.cs index f4acf40..130f0d4 100644 --- a/BorderlessGaming/Forms/MainWindow.cs +++ b/BorderlessGaming/Forms/MainWindow.cs @@ -355,7 +355,13 @@ private void byTheWindowTitleTextToolStripMenuItem_Click(object sender, EventArg var favorite = new Favorite { Type = FavoriteType.Title, - SearchText = pd.WindowTitle + SearchText = pd.WindowTitle, + PositionH = 1392, + PositionW = 2475, + PositionX = 1322, + PositionY = 0, + Size = FavoriteSize.SpecificSize, + ShouldMaximize = false }; Config.Instance.AddFavorite(favorite, () => { @@ -380,11 +386,17 @@ private void byTheProcessBinaryNameToolStripMenuItem_Click(object sender, EventA { return; } - var favorite = new Favorite - { - Type = FavoriteType.Process, - SearchText = pd.BinaryName - }; + var favorite = new Favorite + { + Type = FavoriteType.Process, + SearchText = pd.BinaryName, + PositionH = 1392, + PositionW = 2475, + PositionX = 1322, + PositionY = 0, + Size = FavoriteSize.SpecificSize, + ShouldMaximize = false + }; Config.Instance.AddFavorite(favorite, () => { lstFavorites.Items.Add(favorite); @@ -414,8 +426,15 @@ private void byTheWindowTitleTextregexToolStripMenuItem_Click(object sender, Eve var favorite = new Favorite { Type = FavoriteType.Regex, - SearchText = res + SearchText = res, + PositionH = 1392, + PositionW = 2475, + PositionX = 1322, + PositionY = 0, + Size = FavoriteSize.SpecificSize, + ShouldMaximize = false, }; + Config.Instance.AddFavorite(favorite, () => { lstFavorites.Items.Add(favorite); @@ -898,7 +917,7 @@ private void processContext_Opening(object sender, CancelEventArgs e) private void MainWindow_Load(object sender, EventArgs e) { // set the title - Text = "Borderless Gaming " + Assembly.GetExecutingAssembly().GetName().Version.ToString(3) + ((Uac.Elevated) ? " [Administrator]" : ""); + Text = "Borderless Gaming " + Assembly.GetExecutingAssembly().GetName().Version.ToString(3) + " (Modded by Fma965)" + ((Uac.Elevated) ? " [Administrator]" : ""); var settings = Config.Instance.AppSettings; // load up settings