Skip to content

Commit

Permalink
bump version to v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
caesay committed Aug 8, 2022
1 parent 26a9544 commit 8cc2035
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#pragma comment(lib, "gdiplus.lib")
#pragma comment(lib, "obs.lib")

#define OBS_EXPRESS_VERSION "0.0.2"

using namespace std;
using namespace Gdiplus;
using json = nlohmann::json;
Expand Down Expand Up @@ -280,7 +282,7 @@ unsigned int __stdcall read_input_proc(void* lpParam)
{
std::string str;
std::getline(std::cin, str);
if (str == "q" || str == "Q")
if (str == "q" || str == "Q")
{
cancelRequested = true;
break;
Expand All @@ -301,7 +303,7 @@ void run(vector<string> arguments)
cmdl.parse(arguments);

cout << std::endl;
cout << "obs-express v0.0.1, a light weight command line screen recorder." << std::endl;
cout << "obs-express v" << OBS_EXPRESS_VERSION << ", a light weight command line screen recorder." << std::endl;
cout << "bundled with obs-studio v" << obs_get_version_string() << std::endl;
cout << std::endl;

Expand Down

0 comments on commit 8cc2035

Please sign in to comment.