Skip to content

Commit bcbe219

Browse files
committed
v0.0.3: make it clear that filepath and version are optional fields
1 parent 5f0eba2 commit bcbe219

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src_app/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ std::string uni_gui_app_name_get()
2525

2626
std::string uni_gui_app_version_get()
2727
{
28-
return "0.0.1";
28+
return "0.0.3";
2929
}
3030

3131
std::vector<std::shared_ptr<Uni::GUI::UiElement>> uni_gui_app_initialize( int argc, char **argv)

src_app/window_main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,8 @@ namespace OST::AMD::GPU::ProfileManager {
341341

342342
ImGui::InputText("Filename", filename, IM_ARRAYSIZE(filename));
343343
ImGui::InputText("Title", title, IM_ARRAYSIZE(title));
344-
ImGui::InputText("Path", path, IM_ARRAYSIZE(path));
345-
ImGui::InputText("Version", version, IM_ARRAYSIZE(version));
344+
ImGui::InputTextWithHint("Path", "optional", path, IM_ARRAYSIZE(path));
345+
ImGui::InputTextWithHint("Version", "optional", version, IM_ARRAYSIZE(version));
346346

347347
if (ImGui::Button("OK", ImVec2(120, 0))) {
348348
std::wstring w_filename = Utils::ToUtf16(filename);

0 commit comments

Comments
 (0)