MoneyTools / MyMoney.Net

MyMoney is a rich client .NET ClickOnce application for managing your personal finances. It is written entirely in C# and is designed for programmers who want easy access to their data and who want to quickly and easily add their own features. Your data will not be locked up in some proprietary format, it is yours to do with as you like.
https://moneytools.github.io/MyMoney.Net/
70 stars 21 forks source link

Fiscal year start setting is saved globally instead of per database #38

Closed andreva7 closed 2 years ago

andreva7 commented 2 years ago

The fiscal year start setting is saved globally instead of per database.

clovett commented 2 years ago

ha, interesting... it will take some work to implement this since I will need a new per-database setting concept...

clovett commented 2 years ago

Ok, I added a new xml settings file which lives next to your database like this:

image

And migrated FiscalYearStart and RentalManagement settings to this file out of the per user settings file.

This will be available in version 2.0.0.19.

andreva7 commented 2 years ago

Cool - thanks!

From: Chris Lovett @.> Sent: August 27, 2022 6:49 PM To: clovett/MyMoney.Net @.> Cc: andreva7 @.>; Author @.> Subject: Re: [clovett/MyMoney.Net] Fiscal year start setting is saved globally instead of per database (Issue #38)

Ok, I added a new xml settings file which lives next to your database like this:

[image]https://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fuser-images.githubusercontent.com%2F3336415%2F187051825-5b6e07f5-93df-4d8e-b42d-6ace0b91beac.png&data=05%7C01%7C%7Cb6b2c52174b34e5a006008da88977ef4%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637972481503872207%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=8DHAX5HSS7ty8nJ%2F1VBUtX33IICymqBILv7gtrW%2BPGQ%3D&reserved=0

And migrated FiscalYearStart and RentalManagement settings to this file out of the per user settings file.

This will be available in version 2.0.0.19.

- Reply to this email directly, view it on GitHubhttps://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fclovett%2FMyMoney.Net%2Fissues%2F38%23issuecomment-1229355290&data=05%7C01%7C%7Cb6b2c52174b34e5a006008da88977ef4%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637972481503872207%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=bXgHAt6KxxFTW3f9iPyVti1t%2ByQWgDfaT1iIlJOXjOM%3D&reserved=0, or unsubscribehttps://nam12.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAJBV66F65WQBJME3YDEIE2TV3LARFANCNFSM5Q5F4WMA&data=05%7C01%7C%7Cb6b2c52174b34e5a006008da88977ef4%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637972481503872207%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=fPZyg18kIvx5nNq%2B2gos3IbscRdikabpd0GSsae4zK8%3D&reserved=0. You are receiving this because you authored the thread.Message ID: @.**@.>>

andreva7 commented 2 years ago

Thanks.