diff --git a/Changelog.md b/Changelog.md index 6b9916b1..05deb987 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,16 @@ # CHANGELOG - ## COMPASS v1.8.9 (26 October 2025) + ## COMPASS v1.8.10 (23 November 2025) + +### Improvements + +- Add a button to the codex edit window to clear the rating. +- Change the default tag color from gray to Same as Parent. + +### Fixes + +- Fix a crash when moving an item without thumbnail to a different collection +- Potentially fix a crash when opening the file selector dialog +## COMPASS v1.8.9 (26 October 2025) ### Improvements diff --git a/Deployment/install.iss b/Deployment/install.iss index bc9e04e7..7d523392 100644 --- a/Deployment/install.iss +++ b/Deployment/install.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "COMPASS" -#define MyAppVersion "1.8.9" +#define MyAppVersion "1.8.10" #define MyAppPublisher "Paul De Smul" #define MyAppURL "https://www.compassapp.info" #define MyAppExeName "COMPASS.exe" diff --git a/src/COMPASS.csproj b/src/COMPASS.csproj index b706944f..8e06e4e4 100644 --- a/src/COMPASS.csproj +++ b/src/COMPASS.csproj @@ -4,6 +4,9 @@ WinExe net9.0-windows true + + false COMPASS COMPASS COMPASS.ico @@ -39,24 +42,24 @@ - + - - + + - - + + - + @@ -64,7 +67,7 @@ - + diff --git a/src/Models/Tag.cs b/src/Models/Tag.cs index 4b806beb..29647e9d 100644 --- a/src/Models/Tag.cs +++ b/src/Models/Tag.cs @@ -56,7 +56,7 @@ public Color BackgroundColor set => _serializableBackgroundColor = value; } - private Color? _serializableBackgroundColor = Colors.DarkGray; + private Color? _serializableBackgroundColor; public Color? SerializableBackgroundColor { get => _serializableBackgroundColor; diff --git a/src/Properties/AssemblyInfo.cs b/src/Properties/AssemblyInfo.cs index 527c66b5..1384f235 100644 --- a/src/Properties/AssemblyInfo.cs +++ b/src/Properties/AssemblyInfo.cs @@ -40,7 +40,7 @@ // app, or any theme specific resource dictionaries) )] -[assembly: AssemblyVersion("1.8.9")] +[assembly: AssemblyVersion("1.8.10")] [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")] diff --git a/src/ViewModels/CodexEditViewModel.cs b/src/ViewModels/CodexEditViewModel.cs index 30faeb2a..a332b969 100644 --- a/src/ViewModels/CodexEditViewModel.cs +++ b/src/ViewModels/CodexEditViewModel.cs @@ -68,6 +68,13 @@ public bool ShowLoading #region Methods and Commands + private RelayCommand? _clearRatingCommand; + public RelayCommand ClearRatingCommand => _clearRatingCommand ??= new(ClearRating); + private void ClearRating() + { + _tempCodex.Rating = 0; + } + private RelayCommand? _browsePathCommand; public RelayCommand BrowsePathCommand => _browsePathCommand ??= new(BrowsePath); private void BrowsePath() diff --git a/src/ViewModels/CodexViewModel.cs b/src/ViewModels/CodexViewModel.cs index b16a18cd..1e7400b1 100644 --- a/src/ViewModels/CodexViewModel.cs +++ b/src/ViewModels/CodexViewModel.cs @@ -293,9 +293,14 @@ public static void MoveToCollection(CodexCollection targetCollection, List - + + +