Skip to content

Commit

Permalink
Fixed a known bug. More details in the patch notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciridev committed Aug 3, 2021
1 parent ff15b1b commit 6c667af
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/ThirdParty/GLFW
Submodule GLFW updated 1 files
+30 −5 premake5.lua
2 changes: 1 addition & 1 deletion build/ThirdParty/glm
2 changes: 1 addition & 1 deletion build/config.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxShaderViz - v1.0.0 Alpha
# zxShaderViz - v1.0.1 Alpha
Engine:
Theme Settings:
Theme: 0
Expand Down
2 changes: 1 addition & 1 deletion build/src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ void Application::WriteToConfigFile()

// Config
{
emitter << YAML::Comment("zxShaderViz - v1.0.0 Alpha");
emitter << YAML::Comment("zxShaderViz - v1.0.1 Alpha");
emitter << YAML::BeginMap;

// Engine settings
Expand Down
4 changes: 2 additions & 2 deletions build/src/Panels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ void EditorPreferencesPanel::DrawUI()
auto file = (settings->tempFilepath == "" ? "<default file>" : settings->tempFilepath.c_str());
ImGui::Text("%s", file);
if (ImGui::Button("Select a file"))
settings->tempFilepath = FileDialogs::OpenFile("Fragment Shader (*.frag)\0 * .frag\0Fragment Shader(*.fragment)\0 * .fragment\0");
settings->tempFilepath = FileDialogs::OpenFile("Temporary file (*.tmp)\0 * .tmp");
ImGui::SameLine();
if (ImGui::Button("Reset"))
settings->tempFilepath = "";
Expand Down Expand Up @@ -607,7 +607,7 @@ void AboutPanel::DrawUI()
if (ImGui::BeginPopupModal("About", &m_Active, m_WindowFlags))
{
ImGui::SetWindowSize({ 400, 200 });
ImGui::TextWrapped("zxShaderViz - v1.0.0 Alpha Release\n\nThanks for downloading!\nMade by ZeXo Entertainment.\n\nDevelopers:\nCiridev");
ImGui::TextWrapped("zxShaderViz - v1.0.1 Alpha Release\n\nThanks for downloading!\nMade by ZeXo Entertainment.\n\nDevelopers:\nCiridev");

ImGui::EndPopup();
}
Expand Down

0 comments on commit 6c667af

Please sign in to comment.