Skip to content

Commit 131c5ff

Browse files
vkconfig: Bump version
1 parent c9ce465 commit 131c5ff

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

vkconfig_core/test/test_ui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
TEST(test_ui, GetMainWindowTitle) {
2828
std::string title = ::GetMainWindowTitle();
2929

30-
EXPECT_STREQ(("Vulkan Configurator " + Version::VKCONFIG.str() + "-" + GetBuildDate() + " (BETA)").c_str(), title.c_str());
30+
EXPECT_STREQ(("Vulkan Configurator " + Version::VKCONFIG.str() + "-" + GetBuildDate()).c_str(), title.c_str());
3131
}

vkconfig_core/ui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
#include "version.h"
2525

2626
std::string GetMainWindowTitle() {
27-
std::string title = format("%s %s-%s (BETA)", VKCONFIG_NAME, Version::VKCONFIG.str().c_str(), GetBuildDate().c_str());
27+
std::string title = format("%s %s-%s", VKCONFIG_NAME, Version::VKCONFIG.str().c_str(), GetBuildDate().c_str());
2828
return title;
2929
}

vkconfig_core/version.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include <cassert>
2929
#include <cstring>
3030

31-
const Version Version::VKCONFIG(3, 1, 0);
31+
const Version Version::VKCONFIG(3, 2, 0);
3232
const Version Version::VKHEADER(VK_HEADER_VERSION_COMPLETE);
3333
const Version Version::NONE(0, 0, 0);
3434
const Version Version::LATEST(~0, ~0, ~0);

vkconfig_gui/CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
1-
## Vulkan Configurator 3.1.0 - March 2025
1+
## Vulkan Configurator 3.2.0 - May 2025
22
[Vulkan SDK 1.4.3XX.0](https://github.com/LunarG/VulkanTools/tree/main)
33

4+
### Features:
5+
6+
7+
### Improvements:
8+
9+
10+
### Fixes:
11+
12+
## Vulkan Configurator 3.1.0 - March 2025
13+
[Vulkan SDK 1.4.309.0](https://github.com/LunarG/VulkanTools/tree/vulkan-sdk-1.4.309)
14+
415
### Features:
516
- Add dark mode support, automatically matching the OS mode
617
- Add `vkconfig loader` commands to import, export, delete and use stored loader configurations

0 commit comments

Comments
 (0)