Skip to content

Commit

Permalink
Bump version to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
complexlogic committed Sep 15, 2022
1 parent 29c124d commit a1543bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian

ARG VERSION=2.0.1 \
ARG VERSION=3.0 \
ARCH=amd64

RUN apt-get update && \
Expand Down

0 comments on commit a1543bc

Please sign in to comment.