Compare commits
2 Commits
41337b8b0b
...
a39f5fbe4e
Author | SHA1 | Date | |
---|---|---|---|
a39f5fbe4e | |||
327348ab30 |
@ -51,7 +51,7 @@ namespace EliteBGS.BGS {
|
||||
|
||||
public void Scan(PlayerJournal journal, DateTime start, DateTime end) {
|
||||
var entries = from file in journal.Files
|
||||
where file.NormalisedTimestamp >= start && file.NormalisedTimestamp <= end
|
||||
where file.NormalisedDateTime >= start && file.NormalisedDateTime <= end
|
||||
select file.Entries
|
||||
;
|
||||
Scan(entries.SelectMany(x => x).ToList());
|
||||
|
@ -1,5 +1,9 @@
|
||||
# EliteBGS changelog
|
||||
|
||||
## 0.1.1 on 15.03.2022
|
||||
|
||||
* Update tool to work with the new journal filenames introduced in Update 11.
|
||||
|
||||
## 0.1.0 on 27.02.2022
|
||||
|
||||
* Final release without beta in front of it.
|
||||
|
@ -51,5 +51,5 @@ using System.Windows;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("0.1.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.1.0.0")]
|
||||
[assembly: AssemblyVersion("0.1.1.0")]
|
||||
[assembly: AssemblyFileVersion("0.1.1.0")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user