Skip to content

Commit

Permalink
few small changes for release v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasBenaets committed Jan 5, 2022
1 parent 0caea3a commit 7f88c31
Show file tree
Hide file tree
Showing 17 changed files with 48 additions and 16 deletions.
Binary file modified .vs/BasedBudgeting/v17/.suo
Binary file not shown.
10 changes: 10 additions & 0 deletions BasedBudgeting/App.vb
Expand Up @@ -269,13 +269,23 @@ Public Class App
End If
End Sub
Private Sub pbPrevMonth_Click(sender As Object, e As EventArgs) Handles pbPrevMonth.Click ' Show previous month budget
Dim toDec As Decimal
lblDate.Text = CDate(lblDate.Text).AddMonths(-1).ToString("MMM yyyy").ToUpper()
dgvDateChange(lblDate.Text)
For j As Integer = 0 To dgvAccounts.Rows.Count - 1
toDec += CType(dgvAccounts.Rows(j).Cells(1).Value, Decimal)
lblTotalBalance.Text = toDec.ToString("C")
Next
End Sub

Private Sub pbNextMonth_Click(sender As Object, e As EventArgs) Handles pbNextMonth.Click ' Show next or current month duget
Dim toDec As Decimal
lblDate.Text = CDate(lblDate.Text).AddMonths(+1).ToString("MMM yyyy").ToUpper()
dgvDateChange(lblDate.Text)
For j As Integer = 0 To dgvAccounts.Rows.Count - 1
toDec += CType(dgvAccounts.Rows(j).Cells(1).Value, Decimal)
lblTotalBalance.Text = toDec.ToString("C")
Next
End Sub
Private Sub dgvAccounts_CellContentClick(sender As Object, e As DataGridViewCellEventArgs) Handles dgvAccounts.CellEndEdit
SaveAccounts()
Expand Down
2 changes: 1 addition & 1 deletion BasedBudgeting/bin/Debug/BasedBudgeting.application
Expand Up @@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>MKjs4p4Gk1vIIEGjq2n1DCSRb5dnIKxqt1hUZdARtfw=</dsig:DigestValue>
<dsig:DigestValue>Bnkvlh+MWSWWEkB/bcrvroyg7dPid1EOlkR5xaFmdPs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified BasedBudgeting/bin/Debug/BasedBudgeting.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions BasedBudgeting/bin/Debug/BasedBudgeting.exe.manifest
Expand Up @@ -43,14 +43,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BasedBudgeting.exe" size="169952">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BasedBudgeting.exe" size="175072">
<assemblyIdentity name="BasedBudgeting" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>hpzycdGgcTluq+5L96HeJfq1lHuDbv5APVFQq6k5Coc=</dsig:DigestValue>
<dsig:DigestValue>udhSapzwB16FamE7zC8JGmTvC4bykpt4OtVhL030olw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified BasedBudgeting/bin/Debug/BasedBudgeting.pdb
Binary file not shown.
10 changes: 10 additions & 0 deletions BasedBudgeting/bin/Debug/BasedBudgeting.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified BasedBudgeting/obj/Debug/BasedBudgeting.Resources.resources
Binary file not shown.
2 changes: 1 addition & 1 deletion BasedBudgeting/obj/Debug/BasedBudgeting.application
Expand Up @@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>MKjs4p4Gk1vIIEGjq2n1DCSRb5dnIKxqt1hUZdARtfw=</dsig:DigestValue>
<dsig:DigestValue>Bnkvlh+MWSWWEkB/bcrvroyg7dPid1EOlkR5xaFmdPs=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified BasedBudgeting/obj/Debug/BasedBudgeting.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions BasedBudgeting/obj/Debug/BasedBudgeting.exe.manifest
Expand Up @@ -43,14 +43,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BasedBudgeting.exe" size="169952">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="BasedBudgeting.exe" size="175072">
<assemblyIdentity name="BasedBudgeting" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>hpzycdGgcTluq+5L96HeJfq1lHuDbv5APVFQq6k5Coc=</dsig:DigestValue>
<dsig:DigestValue>udhSapzwB16FamE7zC8JGmTvC4bykpt4OtVhL030olw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified BasedBudgeting/obj/Debug/BasedBudgeting.pdb
Binary file not shown.
Binary file not shown.
Expand Up @@ -78,3 +78,4 @@ C:\Users\matth\Desktop\BasedBudgeting\BasedBudgeting\bin\Debug\BasedBudgeting.ex
C:\Users\matth\Desktop\BasedBudgeting\BasedBudgeting\bin\Debug\BasedBudgeting.application
C:\Users\matth\Desktop\BasedBudgeting\BasedBudgeting\obj\Debug\BasedBudgeting.exe.manifest
C:\Users\matth\Desktop\BasedBudgeting\BasedBudgeting\obj\Debug\BasedBudgeting.application
C:\Users\matth\Documents\BasedBudgeting\BasedBudgeting\obj\Debug\BasedBudgeting.vbproj.AssemblyReference.cache
Binary file not shown.
10 changes: 10 additions & 0 deletions BasedBudgeting/obj/Debug/BasedBudgeting.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions README.md
Expand Up @@ -32,9 +32,9 @@

<div align="center">Based Budgeting is a budgeting application written in Visual Basic .NET for Windows.

The applications aims to make you get a hold of your personal finances and set limits on expense, all while growing your net worth and purchase power.
The applications aims to make you get a hold of your personal finances and set limits on expenses, all while growing your net worth and purchase power.

Either take the blue pill and live in contented ignorance and debt, or take the red pill and discover the potential financial growth and become debt free.
Either take the blue pill and live in ignorance and debt, or take the red pill and discover potential financial growth and become debt free.
</div>

## 📋Table of Contents
Expand All @@ -49,6 +49,7 @@ Either take the blue pill and live in contented ignorance and debt, or take the
- **Give Your Money A Job**: With Multi-Category Budgeting, split transaction in multiple (sub-)categories
- **Visualise balance**: Visual representation of transactions and net worth
- **Transaction Tracker**: Log all inflow and outflow of your accounts
- **Keeping track of the past**: All monthly budgets and bank balances will be stored for reference in the future
- **User Friendly**: Aimed to make the process as much of as possible automated
- **Stocks Logger**: Coming soon™
<br></br>
Expand All @@ -62,9 +63,9 @@ Coming soon™
<br></br>
## 🧩Components
- **Accounts:**
- Add multiple accounts to the budget
- Keep track of bank accounts, cash or even your portfolio balance at one place
- Balance will stay updated automatically after initial setup
- Add multiple bank accounts to the budget
- Keep track of bank accounts, cash or even your investment portfolio balance at one place
- Balance will stay updated and calculated automatically after initial setup
- **Budget:**
- Keep a budget for the current month and review budget from previous months
- List different categories and subcategories
Expand All @@ -73,19 +74,19 @@ Coming soon™
- Follow up on the available balance of your budgeted categories
- Always be on top of how much you budgeted, your inflow & outflow and overall availablity of the current month
- **Reports:**
- Net worth chart, Visualise money diversification
- Current month doughnut spending chart , link to your subcategories
- 1 Year stacked column spending chart, link to your subcategories
- Net worth chart: Visualise money diversification
- Current month doughnut spending chart: link to your subcategories
- 1 Year stacked column spending chart: link to your subcategories
- **All Accounts:**
- Add transactions linked to your given accounts and subcategories
- Transactions will automatically update your account balance and budget activity
- **To Be Budgeted:**
- The "To Be Budgeted" feature on the budget menu is used to give your money a job.
- It will prompt your to allocate your money to different categories, but don't allocate to much, or you might go in the red.
- It will prompt you to allocate your money to different categories, but don't allocate to much, or you might go in the red.
<br></br>
## ⌛Download
### **[Releases](https://github.com/MatthiasBenaets/BasedBudgeting/releases)**
### **[Latest Version](https://github.com/MatthiasBenaets/BasedBudgeting/releases/tag/v1.1.0)**
### **[Latest Version](https://github.com/MatthiasBenaets/BasedBudgeting/releases/tag/v1.1.2)**
<br></br>
## 🙋FAQ
Nothing to tell at the moment.
Expand Down

0 comments on commit 7f88c31

Please sign in to comment.