Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Skidamek committed Apr 8, 2022
1 parent 63aaec8 commit 83e0f4f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PowerToysGUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void PowerToys::RenderSettings() {

ImGui::NewLine();

ImGui::TextUnformatted("You can bind a button to the \"FAQ\" command (Freeplay_And_Queue).\nFor example, when you are in the main menu, you can binded button, \nand it will take you to freeplay and turn on the queue for the last played game.");
ImGui::TextUnformatted("You can bind a button to the \"FAQ\" command (Freeplay_And_Queue).\nFor example, when you are in the main menu, you can click binded button, \nand it will take you to freeplay and turn on the queue for the last played game.");

ImGui::NewLine();

Expand Down
10 changes: 10 additions & 0 deletions update_version.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(Get-Content -path $args[0] -Raw) |
ForEach-Object {
$defstr="#define VERSION_BUILD ";
$regex="$defstr(?<BuildVersion>\d*)";
if($_ -match $regex) {
$_ = $_ -replace $regex,"$($defstr)$(([int]$matches["BuildVersion"])+1)"
}
$_
} |
Out-File $args[0] -encoding ascii -nonewline
6 changes: 3 additions & 3 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once
#define VERSION_MAJOR 1
#define VERSION_MINOR 5
#define VERSION_PATCH 5
#define VERSION_MAJOR 2
#define VERSION_MINOR 0
#define VERSION_PATCH 0

#define stringify(a) stringify_(a)
#define stringify_(a) #a
Expand Down

0 comments on commit 83e0f4f

Please sign in to comment.