Skip to content

Commit

Permalink
Merge pull request #232 from TheAxelander/pre-release
Browse files Browse the repository at this point in the history
Merge changes for version 1.8.1
  • Loading branch information
TheAxelander committed Mar 17, 2024
2 parents a0d7af4 + a9f77ee commit c32fb37
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.8.1 (2024-03-17)

### :beetle: Bug Fixes

* 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)
* Bucket Movements were shown with Account `(Inactive)` [#231](https://github.com/TheAxelander/OpenBudgeteer/issues/231)

## 1.8 (2024-03-16)

### :warning: Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion OpenBudgeteer.Blazor/Shared/MainLayout.razor
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</button>
<span class="navbar-brand flex-fill ms-2 fs-5">OpenBudgeteer</span>
<span class="navbar-text ms-3 d-none d-md-block">Database: @CurrentDatabase</span>
<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>
<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>
</div>
</header>
<div class="container-fluid">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ public static TransactionViewModel CreateEmpty(IServiceManager serviceManager)
{
Id = Guid.Empty,
AccountId = Guid.Empty,
Account = new Account(),
Account = new Account(){ IsActive = 1},
Amount = bucketMovement.Amount,
Memo = "Bucket Movement",
Payee = string.Empty,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,9 @@ private async Task DuplicateCheckOnParsedRecordsAsync()
{
await Task.Run(() =>
{
var transactions = ServiceManager.BankTransactionService.GetAll().ToList();
var transactions = ServiceManager.BankTransactionService
.GetFromAccount(SelectedImportProfile.Account.AccountId)
.ToList();
var parsedRecords = ParsedRecords
.Where(i => i.IsValid)
.ToList();
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

| Version | Supported |
|-------------| ------------------ |
| 1.8 | :white_check_mark: |
| 1.8.1 | :white_check_mark: |
| pre-release | :white_check_mark: |
| < 1.8 | :x: |
| < 1.8.1 | :x: |

## Reporting a Vulnerability

Expand Down

0 comments on commit c32fb37

Please sign in to comment.