From 248beafe6fa88f6e9cb76bc1be35ab3ca9b9e3bb Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Thu, 9 Nov 2023 22:48:20 +0100 Subject: [PATCH] Bump version to 1.0.1 --- CHANGELOG.md | 15 +++++++++++++++ CMakeLists.txt | 4 ++-- source/mainwindow.h | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index facc7825..cb3921cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 1.0.1 - 2023-11-09 +### Fixed +- Windows: No longer requires MSVC installation to run. +- Linux: Now depends on the correct version of Qt. +- Linux: Settings are now saved correctly, and recent paths are remembered. +- Frame counter no longer resets when only one frame exists. +- Corrected the issue of the wrong frame being displayed in tile mode. + +### Changed +- Aligned the tileset naming convention with other projects. + +### Added +- Introduced an alert for users when an image doesn't fit in the tileset. +- Users can now drag the view using the middle mouse button. + ## 1.0.0 - 2023-04-12 ### Added - Create new sprites or tilesets. diff --git a/CMakeLists.txt b/CMakeLists.txt index ec1d49ea..eb43036b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) -project(D1GraphicsTool VERSION 1.0.0 LANGUAGES CXX) +project(D1GraphicsTool VERSION 1.0.1 LANGUAGES CXX) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTOMOC ON) @@ -142,7 +142,7 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") set(CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/diasurgical/d1-graphics-tool") set(CPACK_PACKAGE_DESCRIPTION "Diablo 1 Graphics Tool can open CEL/CL2 graphics files and display them with chosen color palette (PAL) and color translation (TRN) files.") set(CPACK_DEBIAN_PACKAGE_SECTION "graphics") - + if(${QT_VERSION_MAJOR} GREATER_EQUAL 6) set(CPACK_DEBIAN_PACKAGE_DEPENDS "libqt6widgets6 (>= 6.2.4), qt6-qpa-plugins (>= 6.2.4)") else() diff --git a/source/mainwindow.h b/source/mainwindow.h index 0d41030d..2b8c668f 100644 --- a/source/mainwindow.h +++ b/source/mainwindow.h @@ -22,7 +22,7 @@ #include "settingsdialog.h" #define D1_GRAPHICS_TOOL_TITLE "Diablo 1 Graphics Tool" -#define D1_GRAPHICS_TOOL_VERSION "1.0.0" +#define D1_GRAPHICS_TOOL_VERSION "1.0.1" enum class FILE_DIALOG_MODE { OPEN, // open existing