2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 01:29:38 -04:00

[Core] Make Prereading the default behavior, re-enable settings upgrade (#140)

Pre-reading is good. And turns out a number of plugins kinda depend on it now. Time to make it default.

Also, comment out settings upgrades so settings are carried over from version to version when running in the IDE -- which makes using it far better.
This commit is contained in:
F K 2024-01-30 20:48:18 -05:00 committed by GitHub
parent 59d5fad5d5
commit 6d6b6f7951
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,7 @@ namespace Observatory
{
try
{
// Properties.Core.Default.Upgrade();
Properties.Core.Default.Upgrade();
}
catch
{

View File

@ -119,8 +119,7 @@ namespace Observatory.Utils
public void PrereadJournals()
{
if (!Properties.Core.Default.TryPrimeSystemContextOnStartMonitor ||
Properties.Core.Default.StartReadAll) return;
if (Properties.Core.Default.StartReadAll) return;
SetLogMonitorState(currentState | LogMonitorState.PreRead);