Skip to content

Commit 1942787

Browse files
author
Stefan Ruepp
committed
changed watching filter to hours - default value 8
1 parent 8120d1a commit 1942787

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

EveChatNotifier/FormMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private void T_Tick(object sender, EventArgs e)
7070
}
7171

7272
// only add logfiles which are last modified in the past X hour
73-
if ((DateTime.Now - System.IO.File.GetLastWriteTime(curLogFile)).TotalMinutes > Properties.Settings.Default.MaxAgeForWatchingLogs)
73+
if ((DateTime.Now - System.IO.File.GetLastWriteTime(curLogFile)).TotalHours > Properties.Settings.Default.MaxAgeForWatchingLogs)
7474
{
7575
continue;
7676
}

EveChatNotifier/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
3333
// übernehmen, indem Sie "*" eingeben:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.3.2.0")]
36-
[assembly: AssemblyFileVersion("1.3.2.0")]
35+
[assembly: AssemblyVersion("1.3.3.0")]
36+
[assembly: AssemblyFileVersion("1.3.3.0")]

EveChatNotifier/Properties/Settings.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

EveChatNotifier/Properties/Settings.settings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<Value Profile="(Default)">True</Value>
3434
</Setting>
3535
<Setting Name="MaxAgeForWatchingLogs" Type="System.Int32" Scope="Application">
36-
<Value Profile="(Default)">30</Value>
36+
<Value Profile="(Default)">8</Value>
3737
</Setting>
3838
</Settings>
3939
</SettingsFile>

EveChatNotifier/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<value>True</value>
4646
</setting>
4747
<setting name="MaxAgeForWatchingLogs" serializeAs="String">
48-
<value>30</value>
48+
<value>8</value>
4949
</setting>
5050
</EveChatNotifier.Properties.Settings>
5151
</applicationSettings>

0 commit comments

Comments
 (0)