Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AJenbo committed Nov 9, 2023
1 parent 0aea247 commit 248beaf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion source/mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 248beaf

Please sign in to comment.