diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..1de571fe --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.cpp] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true \ No newline at end of file diff --git a/CHANGES.md b/CHANGES.md index c7b0fc20..d78e6a97 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,17 @@ Magic Set Editor changelog, for the details see `git log` ============================================================================== - + +FORK: Changes isolated to this fork +------------------------------------------------------------------------------ + +Features: + * Independently control Export Zoom setting in Preferences Window. + * Center the loaded image by default in the Image Slice Window. + * Add Button to Center the loaded image in the Image Slice Window. + * Add "Created At", "Last Modified At", "Has Notes" columns to card list. + * Add filter box to Game and Stylesheet selection. + +------------------------------------------------------------------------------ HEAD: new items added as changes are made ------------------------------------------------------------------------------ diff --git a/CMakeLists.txt b/CMakeLists.txt index 54e46995..4b633cc3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.13) -project(magicseteditor VERSION 2.1.3) +project(magicseteditor VERSION 2.2.0) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED True) diff --git a/data/en.mse-locale/locale b/data/en.mse-locale/locale index 046fafa2..20227ec2 100644 --- a/data/en.mse-locale/locale +++ b/data/en.mse-locale/locale @@ -212,6 +212,10 @@ help: website: about: + # New Set Window + search game list control: Filter the game list. Use - to exclude games. Use field: to search in a specific field. Use quotes for literal search. Separate multiple queries with a space. + search stylesheet list control: Filter the stylesheet list. Use - to exclude styles. Use field: to search in a specific field. Use quotes for literal search. Separate multiple queries with a space. + # Cards panel collapse notes: Hide the card notes box expand notes: Show the card notes box @@ -461,6 +465,8 @@ label: # New set window game type: &Game type: style type: &Card style: + search game list : Filter Games + search stylesheet list: Filter Stylesheets stylesheet not found : The set you are trying to open uses the stylesheet "%s". diff --git a/src/gui/control/package_list.cpp b/src/gui/control/package_list.cpp index bc3a7d98..5f6b4a31 100644 --- a/src/gui/control/package_list.cpp +++ b/src/gui/control/package_list.cpp @@ -13,6 +13,12 @@ #include