From a1543bc87645eb5d5266e4bd14e05e030fed5c01 Mon Sep 17 00:00:00 2001 From: complexlogic Date: Wed, 14 Sep 2022 21:46:29 -0700 Subject: [PATCH] Bump version to 3.0 --- CHANGELOG | 4 ++-- CMakeLists.txt | 1 + Dockerfile | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a902bfc..0322f2e 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -Unreleased +v3.0 (2022-9-14) - Massive internal rewrite: - Source code is now purely C++ instead of mixed C/C++ - Text formating and output now utilize the fmt library, which is safer and typically faster than C stdio implementations @@ -11,7 +11,7 @@ Unreleased - Added more statistics to Easy Mode output - Write uppercase tags by default for all tag types in Easy Mode - Optimized scan progress bar, resulting in signifcant speed boost for Windows single threaded scanning -- "Overrides" feature renamed "preset" +- "Overrides" feature renamed "Preset" - Specified with -p instead of -o - Support preset name as argument, which will automatically find the preset in the predetermined location(s) per platform - Support "Global" section in preset, which allows the user to specify settings for all formats to reduce duplication diff --git a/CMakeLists.txt b/CMakeLists.txt index b5316b9..fa46b26 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -124,6 +124,7 @@ if (WIN32) elseif (UNIX) install(TARGETS ${EXECUTABLE_TITLE} DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") install(DIRECTORY "${PROJECT_SOURCE_DIR}/config/presets" DESTINATION "${CMAKE_INSTALL_PREFIX}/share/${EXECUTABLE_TITLE}") + set(PRESETS_DIR ${CMAKE_INSTALL_PREFIX}/share/${EXECUTABLE_TITLE}/presets) # Build Debian packages if (PACKAGE STREQUAL "DEB") diff --git a/Dockerfile b/Dockerfile index 3aebb30..cb769c8 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian -ARG VERSION=2.0.1 \ +ARG VERSION=3.0 \ ARCH=amd64 RUN apt-get update && \