Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicoala committed Apr 15, 2021
1 parent c463a0c commit cc58689
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Common/src/constants.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

constexpr auto VERSION = "1.5.0";
constexpr auto VERSION = "1.5.1";

constexpr auto INTEGRATION_64 = L"Integration64.dll";
constexpr auto INTEGRATION_32 = L"Integration32.dll";
Expand Down
3 changes: 2 additions & 1 deletion IntegrationWizard/src/integration_wizard_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ bool changeOwnership(LPCWSTR objectPath, WELL_KNOWN_SID_TYPE wellKnownSidType)

WCHAR objPath[MAX_PATH]; // Copy string into a buffer, since some functions do not accept const ptr
wcscpy_s(objPath, objectPath);
#pragma warning(disable : 6054) // VS incorrectly warns that the string might not be terminated.


// Open a handle to the access token for the calling process.
HANDLE hToken = NULL;
Expand Down Expand Up @@ -111,7 +113,6 @@ bool changeOwnership(LPCWSTR objectPath, WELL_KNOWN_SID_TYPE wellKnownSidType)
}

// Finally, apply the permissions
#pragma warning(disable : 6054) // VS incorrectly warns that the string might not be terminated.
result = SetNamedSecurityInfo(objPath, SE_FILE_OBJECT, DACL_SECURITY_INFORMATION, 0, 0, pNewDACL, 0);
if(result != ERROR_SUCCESS)
{
Expand Down
2 changes: 1 addition & 1 deletion inno_setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Koalageddon"
#define MyAppVersion "1.5.0"
#define MyAppVersion "1.5.1"
#define MyAppPublisher "acidicoala"
#define MyAppURL "https://github.com/acidicoala/Koalageddon"
#define MyAppExeName "IntegrationWizard32.exe"
Expand Down

0 comments on commit cc58689

Please sign in to comment.