Skip to content

Commit d59c137

Browse files
committed
Merge branch 'clovett/net8'
2 parents 6cc8c9c + 5eaf012 commit d59c137

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Source/WPF/ScenarioTest/Wrappers/TransactionViewWrapper.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ internal string GetSelectedTransactionXml()
264264

265265
internal void NavigateTransfer()
266266
{
267+
this.Focus();
267268
var selection = (TransactionViewRow)this.ScrollSelectionIntoView();
268269
if (selection == null)
269270
{
@@ -552,11 +553,11 @@ public string ParseTransferPayee(out string tofrom)
552553

553554
if (payee.StartsWith("Transfer"))
554555
{
555-
payee = payee[0..8].Trim();
556+
payee = payee.Trim();
556557
int i = payee.IndexOf(':');
557-
if (i > 0)
558+
if (i > 8)
558559
{
559-
tofrom = payee.Substring(0, i);
560+
tofrom = payee.Substring(8, i - 8).Trim();
560561
return payee.Substring(i + 1).Trim();
561562
}
562563
}

docs/Basics/Setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The database file is portable so you can move it using USB storage device, or st
2222

2323
## Security
2424

25-
MyMoney.NET on .NET 7.0 does not support adding a password to your **SQL Lite** databases, but you
25+
MyMoney.NET on .NET 8.0 does not support adding a password to your **SQL Lite** databases, but you
2626
can set a password on the **Binary XML** files. This password is also saved in your local Windows
2727
Credential Store so you don't have to keep typing it in.  But this convenience could also help you
2828
forget the password.  If you open your Windows Credential Manager you will see an entry with a name
@@ -51,7 +51,7 @@ of MyMoney.Net you might see an error message like this, which is the result of
5151

5252
![](../Images/Setup1.png)
5353

54-
The new .NET 7.0 version of MyMoney.Net does not support passwords. This means if you are upgrading
54+
The new .NET 8.0 version of MyMoney.Net does not support passwords. This means if you are upgrading
5555
to this new version you have to first remove the password from your database, then do the upgrade.
5656
If you forgot to do that then you can install this
5757
[old version using winget](https://winget.run/pkg/LovettSoftware/MyMoney.Net) that does work with a password, remove the password, then re-install the new version.

docs/Basics/install.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# Install MyMoney.Net
22

3-
There are two ways to install the app.
4-
53
This most convenient is to install it directly from the web browser. If the browser downloads this
64
file, click "Open file" to install it.
7-
You must first ensure you have [.NET 7.0 Desktop Runtime installed](https://dotnet.microsoft.com/en-us/download/dotnet/7.0).
5+
6+
You must first ensure you have [.NET 8.0 runtime installed](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
87

98
When installed using ClickOnce the app will [auto-update](Updates.md).
109

docs/dev/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ git clone https://github.com/clovett/MyMoney.Net
1313
```
1414

1515
To build the WPF app load the following solution into
16-
Visual Studio 2022. You will need to first install [.NET 7.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/7.0).
16+
Visual Studio 2022. You will need to first install [.NET 8.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/7.0).
1717

1818
```
1919
devenv Source\WPF\MyMoney.sln

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Home
22

3-
**MyMoney** is a rich client [.NET 7.0 ClickOnce application](https://dotnet.microsoft.com/en-us/download/dotnet/7.0) for managing your personal finances. See [Demo Video](https://youtu.be/u6BVF2x9FBA).
3+
**MyMoney** is a rich client [.NET 8.0 ClickOnce application](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) for managing your personal finances. See [Demo Video](https://youtu.be/u6BVF2x9FBA).
44

55
<div>
66
<a href="Basics/install" class="btn btn-primary mt-20 mr-30" style="color:#EEEEFF" >Install</a>

0 commit comments

Comments
 (0)