Clean up for 3.1 beta 11

This commit is contained in:
Robert McRackan 2019-12-18 14:27:27 -05:00
parent 73c671b7c0
commit de66e5b405
3 changed files with 2 additions and 4 deletions

View File

@ -109,7 +109,7 @@ namespace LibationLauncher
//Log.Logger.Here().Debug("Begin Libation. Debug with line numbers"); //Log.Logger.Here().Debug("Begin Libation. Debug with line numbers");
} }
private static string defaultLoggingLevel = "Information"; private static string defaultLoggingLevel { get; } = "Information";
private static void ensureLoggingConfig(Configuration config) private static void ensureLoggingConfig(Configuration config)
{ {
if (config.GetObject("Logging") != null) if (config.GetObject("Logging") != null)

View File

@ -36,9 +36,6 @@ namespace LibationWinForms
private void Form1_Load(object sender, EventArgs e) private void Form1_Load(object sender, EventArgs e)
{ {
// call static ctor. There are bad race conditions if static ctor is first executed when we're running in parallel in setBackupCountsAsync()
var foo = FilePathCache.JsonFile;
// load default/missing cover images. this will also initiate the background image downloader // load default/missing cover images. this will also initiate the background image downloader
var format = System.Drawing.Imaging.ImageFormat.Jpeg; var format = System.Drawing.Imaging.ImageFormat.Jpeg;
PictureStorage.SetDefaultImage(PictureSize._80x80, Properties.Resources.default_cover_80x80.ToBytes(format)); PictureStorage.SetDefaultImage(PictureSize._80x80, Properties.Resources.default_cover_80x80.ToBytes(format));

View File

@ -1,6 +1,7 @@
-- begin VERSIONING --------------------------------------------------------------------------------------------------------------------- -- begin VERSIONING ---------------------------------------------------------------------------------------------------------------------
https://github.com/rmcrackan/Libation/releases https://github.com/rmcrackan/Libation/releases
v3.1-beta.11 : Improved configuration and settings file management. Configurable logging
v3.1-beta.10 : New feature: clicking Liberate button on a liberated item navigates to that audio file v3.1-beta.10 : New feature: clicking Liberate button on a liberated item navigates to that audio file
v3.1-beta.9 : New feature: liberate individual book v3.1-beta.9 : New feature: liberate individual book
v3.1-beta.8 : Bugfix: decrypt file conflict v3.1-beta.8 : Bugfix: decrypt file conflict