Skip to content

Commit

Permalink
Replace "Try changing Focus" option in the elevated window focused wa…
Browse files Browse the repository at this point in the history
…rning with "Switch Task", fix quick start guide text, bump version to 2.6.2
  • Loading branch information
elvissteinjr committed Feb 8, 2022
1 parent d36831e commit f353d0b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Binary file modified src/DesktopPlus/DesktopPlus.rc
Binary file not shown.
Binary file modified src/DesktopPlusUI/DesktopPlusUI.rc
Binary file not shown.
10 changes: 5 additions & 5 deletions src/DesktopPlusUI/WindowSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ void WindowSettings::UpdateWarnings()

if (ImGui::BeginPopup("FocusedElevatedContext"))
{
if (ImGui::Selectable("Try changing Focus"))
if (ImGui::Selectable("Switch Task"))
{
UIManager::Get()->TryChangingWindowFocus();
IPCManager::Get().PostMessageToDashboardApp(ipcmsg_action, ipcact_action_do, action_switch_task);
UIManager::Get()->RepeatFrame();
}
else if ((UIManager::Get()->IsElevatedTaskSetUp()) && ImGui::Selectable("Enter Elevated Mode"))
Expand Down Expand Up @@ -3076,7 +3076,7 @@ void WindowSettings::UpdateCatMisc()
ImGui::Columns(2, "ColumnVersionInfo", false);
ImGui::SetColumnWidth(0, column_width_0 * 2.0f);

ImGui::Text("Desktop+ Version 2.6.1");
ImGui::Text("Desktop+ Version 2.6.2 Beta");

ImGui::Columns(1);
}
Expand Down Expand Up @@ -4197,7 +4197,7 @@ void WindowSettings::PopupQuickStartGuide()
"\n"
"The first overlay is special. It's only visible in and fixed to the Desktop+ dashboard tab.\n"
"If you wish to bring an desktop into the game world for example, you need to add another overlay.\n");

ImGui::AlignTextToFramePadding();
ImGui::Text("Additional overlays can be created by clicking on ");
ImGui::SameLine(0.0f, 0.0f);
Expand Down Expand Up @@ -4225,7 +4225,7 @@ void WindowSettings::PopupQuickStartGuide()
ImGui::TextWrapped("Actions in Desktop+ are functions which can be bound to controller inputs, added to the Action Bar at the bottom as buttons and more.\n\n"
"There are built-in and user-defined custom actions. Custom actions can do things like pressing keyboard shortcuts, text input, execute applications, and control overlay state.\n"
"\n"
"\"Switch Task\", \"Open ReadMe\" and \"Middle/Back Mouse Button\" are examples of custom actions.\n"
"\"Open ReadMe\" and \"Middle/Back Mouse Button\" are examples of custom actions.\n"
"You may change or even remove them entirely if you want to.");
break;
}
Expand Down
8 changes: 4 additions & 4 deletions src/DesktopPlusWinRT/DesktopPlusWinRT.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,6,1,0
PRODUCTVERSION 2,6,1,0
FILEVERSION 2,6,2,0
PRODUCTVERSION 2,6,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -43,10 +43,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "elvissteinjr"
VALUE "FileDescription", "Desktop+ WinRT Wrapper"
VALUE "FileVersion", "2.6.1.0"
VALUE "FileVersion", "2.6.2.0"
VALUE "LegalCopyright", "Copyright � 2019 - 2021 elvissteinjr"
VALUE "ProductName", "Desktop+ WinRT"
VALUE "ProductVersion", "2.6.1.0"
VALUE "ProductVersion", "2.6.2.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit f353d0b

Please sign in to comment.