Skip to content

Commit b37da67

Browse files
committed
Change background job to 5 minutes
1 parent 5af7f83 commit b37da67

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Source/NETworkManager.Settings/GlobalStaticConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static class GlobalStaticConfiguration
2727

2828
// Settings
2929
public static ApplicationName General_DefaultApplicationViewName => ApplicationName.Dashboard;
30-
public static int General_BackgroundJobInterval => 15;
30+
public static int General_BackgroundJobInterval => 5;
3131
public static int General_HistoryListEntries => 10;
3232
public static bool SplashScreen_Enabled => true;
3333
public static string Appearance_Theme => "Dark";

Source/NETworkManager/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private void Save()
147147
// Save local settings (custom settings path in AppData/Local)
148148
LocalSettingsManager.Save();
149149

150-
if (SettingsManager.Current.SettingsChanged) // This will also create the "Settings" folder, if it does not exist
150+
if (SettingsManager.Current.SettingsChanged)
151151
SettingsManager.Save();
152152

153153
if (ProfileManager.ProfilesChanged)

docs/Changelog/next-release.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ permalink: /Changelog/next-release
2727
## Improvements
2828
- Min Window size reduced to 800x600 [#1366](https://github.com/BornToBeRoot/NETworkManager/pull/1366){:target="_blank"}
2929
- Default history entries increased from 5 to 10 [#1372](https://github.com/BornToBeRoot/NETworkManager/issues/1372){:target="_blank"}
30+
- Default background job time decreased from 15 to 5 minutes
3031

3132
## Bugfixes
3233
- The Min/Max/Close button on the pulled out window is visible again [#1366](https://github.com/BornToBeRoot/NETworkManager/pull/1366){:target="_blank"}

0 commit comments

Comments
 (0)