Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
korenkonder committed Jul 19, 2024
1 parent 2639400 commit f541c80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/DivaGL/DivaGL.rc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#undef APSTUDIO_READONLY_SYMBOLS

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,7,0,3
PRODUCTVERSION 0,7,0,3
FILEVERSION 0,7,0,4
PRODUCTVERSION 0,7,0,4
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -22,12 +22,12 @@ BEGIN
BLOCK "000904b0"
BEGIN
VALUE "FileDescription", "DivaGL plugin for PDAFT 7.10"
VALUE "FileVersion", "0.7.0.3"
VALUE "FileVersion", "0.7.0.4"
VALUE "InternalName", "DivaGL"
VALUE "LegalCopyright", "korenkonder (C) 2020-2024"
VALUE "OriginalFilename", "DivaGL.dll"
VALUE "ProductName", "DivaGL"
VALUE "ProductVersion", "0.7.0.3"
VALUE "ProductVersion", "0.7.0.4"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions src/DivaGL/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ bool APIENTRY DllMain(HMODULE handle, DWORD ul_reason_for_call, LPVOID lpReserve
switch (ul_reason_for_call) {
case DLL_PROCESS_ATTACH:
dll_handle = (size_t)handle;
printf_divagl("Current version - v0.7.0.3");
printf_divagl("Current version - v0.7.0.4");
printf_divagl("Attach");
divagl_main();
break;
Expand All @@ -64,5 +64,5 @@ extern "C" __declspec(dllexport) LPCWSTR GetPluginDescription(void) {
}

extern "C" __declspec(dllexport) LPCWSTR GetBuildDate(void) {
return L"v0.7.0.3";
return L"v0.7.0.4";
}

0 comments on commit f541c80

Please sign in to comment.