Skip to content

Commit 6c667af

Browse files
committed
Fixed a known bug. More details in the patch notes.
1 parent ff15b1b commit 6c667af

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

build/ThirdParty/GLFW

Submodule GLFW updated from fd4f01c to b7cafaf

build/config.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# zxShaderViz - v1.0.0 Alpha
1+
# zxShaderViz - v1.0.1 Alpha
22
Engine:
33
Theme Settings:
44
Theme: 0

build/src/Application.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ void Application::WriteToConfigFile()
381381

382382
// Config
383383
{
384-
emitter << YAML::Comment("zxShaderViz - v1.0.0 Alpha");
384+
emitter << YAML::Comment("zxShaderViz - v1.0.1 Alpha");
385385
emitter << YAML::BeginMap;
386386

387387
// Engine settings

build/src/Panels.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ void EditorPreferencesPanel::DrawUI()
469469
auto file = (settings->tempFilepath == "" ? "<default file>" : settings->tempFilepath.c_str());
470470
ImGui::Text("%s", file);
471471
if (ImGui::Button("Select a file"))
472-
settings->tempFilepath = FileDialogs::OpenFile("Fragment Shader (*.frag)\0 * .frag\0Fragment Shader(*.fragment)\0 * .fragment\0");
472+
settings->tempFilepath = FileDialogs::OpenFile("Temporary file (*.tmp)\0 * .tmp");
473473
ImGui::SameLine();
474474
if (ImGui::Button("Reset"))
475475
settings->tempFilepath = "";
@@ -607,7 +607,7 @@ void AboutPanel::DrawUI()
607607
if (ImGui::BeginPopupModal("About", &m_Active, m_WindowFlags))
608608
{
609609
ImGui::SetWindowSize({ 400, 200 });
610-
ImGui::TextWrapped("zxShaderViz - v1.0.0 Alpha Release\n\nThanks for downloading!\nMade by ZeXo Entertainment.\n\nDevelopers:\nCiridev");
610+
ImGui::TextWrapped("zxShaderViz - v1.0.1 Alpha Release\n\nThanks for downloading!\nMade by ZeXo Entertainment.\n\nDevelopers:\nCiridev");
611611

612612
ImGui::EndPopup();
613613
}

0 commit comments

Comments
 (0)