Skip to content

Commit 8cc2035

Browse files
committed
bump version to v0.0.2
1 parent 26a9544 commit 8cc2035

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

main.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#pragma comment(lib, "gdiplus.lib")
2323
#pragma comment(lib, "obs.lib")
2424

25+
#define OBS_EXPRESS_VERSION "0.0.2"
26+
2527
using namespace std;
2628
using namespace Gdiplus;
2729
using json = nlohmann::json;
@@ -280,7 +282,7 @@ unsigned int __stdcall read_input_proc(void* lpParam)
280282
{
281283
std::string str;
282284
std::getline(std::cin, str);
283-
if (str == "q" || str == "Q")
285+
if (str == "q" || str == "Q")
284286
{
285287
cancelRequested = true;
286288
break;
@@ -301,7 +303,7 @@ void run(vector<string> arguments)
301303
cmdl.parse(arguments);
302304

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

0 commit comments

Comments
 (0)