Skip to content

Commit c32fb37

Browse files
authored
Merge pull request #232 from TheAxelander/pre-release
Merge changes for version 1.8.1
2 parents a0d7af4 + a9f77ee commit c32fb37

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.8.1 (2024-03-17)
2+
3+
### :beetle: Bug Fixes
4+
5+
* Duplicate check on Import Page was showing wrong Account. Now only Transactions of the selected target Account will be considered during the analysis [#230](https://github.com/TheAxelander/OpenBudgeteer/issues/230)
6+
* Bucket Movements were shown with Account `(Inactive)` [#231](https://github.com/TheAxelander/OpenBudgeteer/issues/231)
7+
18
## 1.8 (2024-03-16)
29

310
### :warning: Breaking Changes

OpenBudgeteer.Blazor/Shared/MainLayout.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</button>
1717
<span class="navbar-brand flex-fill ms-2 fs-5">OpenBudgeteer</span>
1818
<span class="navbar-text ms-3 d-none d-md-block">Database: @CurrentDatabase</span>
19-
<span class="navbar-text ms-3 d-none d-md-block">Version: 1.8 (<a href="https://github.com/TheAxelander/OpenBudgeteer/blob/master/CHANGELOG.md" target="_blank">Change Log</a>)</span>
19+
<span class="navbar-text ms-3 d-none d-md-block">Version: 1.8.1 (<a href="https://github.com/TheAxelander/OpenBudgeteer/blob/master/CHANGELOG.md" target="_blank">Change Log</a>)</span>
2020
</div>
2121
</header>
2222
<div class="container-fluid">

OpenBudgeteer.Core/ViewModels/EntityViewModels/TransactionViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public static async Task<TransactionViewModel> CreateFromBucketMovementAsync(ISe
361361
{
362362
Id = Guid.Empty,
363363
AccountId = Guid.Empty,
364-
Account = new Account(),
364+
Account = new Account(){ IsActive = 1},
365365
Amount = bucketMovement.Amount,
366366
Memo = "Bucket Movement",
367367
Payee = string.Empty,

OpenBudgeteer.Core/ViewModels/PageViewModels/ImportPageViewModel.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,9 @@ private async Task DuplicateCheckOnParsedRecordsAsync()
407407
{
408408
await Task.Run(() =>
409409
{
410-
var transactions = ServiceManager.BankTransactionService.GetAll().ToList();
410+
var transactions = ServiceManager.BankTransactionService
411+
.GetFromAccount(SelectedImportProfile.Account.AccountId)
412+
.ToList();
411413
var parsedRecords = ParsedRecords
412414
.Where(i => i.IsValid)
413415
.ToList();

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
| Version | Supported |
66
|-------------| ------------------ |
7-
| 1.8 | :white_check_mark: |
7+
| 1.8.1 | :white_check_mark: |
88
| pre-release | :white_check_mark: |
9-
| < 1.8 | :x: |
9+
| < 1.8.1 | :x: |
1010

1111
## Reporting a Vulnerability
1212

0 commit comments

Comments
 (0)