Compare commits

..

2 Commits

Author SHA1 Message Date
a39f5fbe4e update changelog 2022-03-15 18:10:22 +01:00
327348ab30 update tool with API changes 2022-03-15 18:08:32 +01:00
3 changed files with 7 additions and 3 deletions

View File

@ -51,7 +51,7 @@ namespace EliteBGS.BGS {
public void Scan(PlayerJournal journal, DateTime start, DateTime end) { public void Scan(PlayerJournal journal, DateTime start, DateTime end) {
var entries = from file in journal.Files var entries = from file in journal.Files
where file.NormalisedTimestamp >= start && file.NormalisedTimestamp <= end where file.NormalisedDateTime >= start && file.NormalisedDateTime <= end
select file.Entries select file.Entries
; ;
Scan(entries.SelectMany(x => x).ToList()); Scan(entries.SelectMany(x => x).ToList());

View File

@ -1,5 +1,9 @@
# EliteBGS changelog # 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 ## 0.1.0 on 27.02.2022
* Final release without beta in front of it. * Final release without beta in front of it.

View File

@ -51,5 +51,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.0")] [assembly: AssemblyVersion("0.1.1.0")]
[assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyFileVersion("0.1.1.0")]