Skip to content

Commit

Permalink
Updated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed Jun 19, 2024
1 parent 32545a4 commit 73158b3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.24)

set(re-edit_VERSION_MAJOR 1)
set(re-edit_VERSION_MINOR 6)
set(re-edit_VERSION_PATCH 3)
set(re-edit_VERSION_PATCH 4)
set(re-edit_VERSION "${re-edit_VERSION_MAJOR}.${re-edit_VERSION_MINOR}.${re-edit_VERSION_PATCH}")

execute_process(COMMAND git describe --long --dirty --abbrev=10 --tags
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ pongasoft produces a variety of high quality and free/open source software. If y

Release Notes
-------------
* #### 1.6.4 - 2024/06/20

- Added support for `device_categories` which was added as a new requirement to Reason 13

* #### 1.6.3 - 2024/02/12

- Fixed issue with contrast not being saved
Expand Down
4 changes: 2 additions & 2 deletions cmake/fetch_re-mock.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ include(cmake/REEditFetchContent.cmake)
# Git repo/tag for re-mock
#------------------------------------------------------------------------
set(re-mock_GIT_REPO "https:/pongasoft/re-mock" CACHE STRING "re-mock git repository url")
set(re-mock_GIT_TAG "v1.4.3" CACHE STRING "re-mock git tag")
set(re-mock_GIT_TAG "v1.6.0" CACHE STRING "re-mock git tag")
set(re-mock_DOWNLOAD_URL "${re-mock_GIT_REPO}/archive/refs/tags/${re-mock_GIT_TAG}.zip" CACHE STRING "re-mock download url" FORCE)
set(re-mock_DOWNLOAD_URL_HASH "SHA256=251340fdc1ddb4a44b55ab4b55e9dad3f3b1d4de70a46af183577523ca87e27a" CACHE STRING "re-mock download url hash" FORCE)
set(re-mock_DOWNLOAD_URL_HASH "SHA256=6879590c88ae318c57ff01e57c322e85ec7f598543cfe4eca99b728600b4b89e" CACHE STRING "re-mock download url hash" FORCE)

re_edit_fetch_content(NAME re-mock)

Expand Down
2 changes: 1 addition & 1 deletion src/cpp/re/edit/AppContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class UpdateListener : public efsw::FileWatchListener
auto file = fs::weakly_canonical(iFile, errorCode);
if(errorCode)
{
RE_EDIT_LOG_WARNING("Cannot convert %s to canonical form", iFile);
RE_EDIT_LOG_WARNING("Cannot convert %s to canonical form", iFile.u8string());
return;
}

Expand Down
7 changes: 4 additions & 3 deletions src/cpp/re/edit/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ void Application::renderWelcome()
{
renderLogoBox();

ImGui::TextUnformatted("© 2023 pongasoft");
ImGui::TextUnformatted("© 2024 pongasoft");

auto textSizeHeight = ImGui::CalcTextSize("R").y;
auto remainingSizeY = viewport->Size.y - ImGui::GetCursorPosY();
Expand Down Expand Up @@ -1567,7 +1567,7 @@ std::optional<std::string> Application::readFile(fs::path const &iFile, UserErro
catch(...)
{
if(oErrors)
oErrors->add("Error while reading file %s: %s", iFile, what(std::current_exception()));
oErrors->add("Error while reading file %s: %s", iFile.u8string(), what(std::current_exception()));
}

return std::nullopt;
Expand Down Expand Up @@ -1605,7 +1605,7 @@ void Application::saveFile(fs::path const &iFile, std::string const &iContent, U
catch(...)
{
if(oErrors)
oErrors->add("Error while saving file %s: %s", iFile, what(std::current_exception()));
oErrors->add("Error while saving file %s: %s", iFile.u8string(), what(std::current_exception()));
}
}

Expand Down Expand Up @@ -1650,6 +1650,7 @@ void Application::about() const
ImGui::Text("manufacturer: %s", info.fManufacturer.c_str());
ImGui::Text("version_number: %s", info.fVersionNumber.c_str());
ImGui::Text("device_type: %s", deviceTypeToString(info.fDeviceType));
ImGui::Text("device_categories: %s", re::mock::stl::join_to_string(info.fDeviceCategories).c_str());
ImGui::Text("supports_patches: %s", boolToString(info.fSupportPatches));
ImGui::Text("default_patch: %s", info.fDefaultPatch.c_str());
ImGui::Text("accepts_notes: %s", boolToString(info.fAcceptNotes));
Expand Down

0 comments on commit 73158b3

Please sign in to comment.