From afce1143ca03af5de122d2497e544fd7f5e3d4e1 Mon Sep 17 00:00:00 2001 From: Tejas Gupta <131871888+multiverseweb@users.noreply.github.com> Date: Thu, 11 Jul 2024 20:27:18 +0530 Subject: [PATCH 1/4] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 55ef6e9..3dcae98 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,9 @@ Dataverse is currently under development. It will be available for installastion soon. However, you can follow these steps to run the project locally on your computer: - - | Don't forget to read the [prerequisites](#prerequisites). | - |--| +> [!IMPORTANT] +> Don't forget to read the [prerequisites](#prerequisites). + - Clone the project From 3cb582fba0803d9165dc7f553dc8e9e8f7365c82 Mon Sep 17 00:00:00 2001 From: Tejas Gupta <131871888+multiverseweb@users.noreply.github.com> Date: Fri, 12 Jul 2024 20:21:10 +0530 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dcae98..2898ada 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Dataverse is currently under development. It will be available for installastion soon. However, you can follow these steps to run the project locally on your computer: -> [!IMPORTANT] +> [!TIP] > Don't forget to read the [prerequisites](#prerequisites). From 0d17a0403d888612fbee648f4578603b3699d0ea Mon Sep 17 00:00:00 2001 From: Tejas Gupta <131871888+multiverseweb@users.noreply.github.com> Date: Fri, 12 Jul 2024 20:21:52 +0530 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2898ada..3dcae98 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Dataverse is currently under development. It will be available for installastion soon. However, you can follow these steps to run the project locally on your computer: -> [!TIP] +> [!IMPORTANT] > Don't forget to read the [prerequisites](#prerequisites). From 00906f19599367ee6e7dd8fe67d612b635944f8c Mon Sep 17 00:00:00 2001 From: Tejas Gupta <131871888+multiverseweb@users.noreply.github.com> Date: Sun, 14 Jul 2024 20:21:46 +0530 Subject: [PATCH 4/4] Add files via upload --- .../financeTracker.cpython-311.pyc | Bin 15295 -> 15292 bytes software/financeTracker.py | 2 +- software/mainGUI.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/software/__pycache__/financeTracker.cpython-311.pyc b/software/__pycache__/financeTracker.cpython-311.pyc index 6e5cfe5d67ff64532a090cafc28626c3109ae9fd..92d68051554219a3a00adaba1f6147000665cb8c 100644 GIT binary patch delta 221 zcmdmAzNegfIWI340}u#4oV<}co6*bI#M~q`sfu0MG&R}M%;*+dWok}NemPJe&BD^u z!~n=JGPE?bNCq;DlT3{)Kx&hdP0Y05X!3P0Ylqn4Hs8>(XB27&T6&8sH?blcTO&_ zP-WW!R8zEN@@$Lm;uAs4(;z*pd8N4pl|^$w0+T1Nv@~Yyn0(hVNaZ+KF^G@`5egte Y4oLjsu*uC&Da}c>D|)aw*ea6|09^t~$p8QV diff --git a/software/financeTracker.py b/software/financeTracker.py index 2379918..8906ebd 100644 --- a/software/financeTracker.py +++ b/software/financeTracker.py @@ -9,7 +9,7 @@ from datetime import datetime, timedelta,date #for x-axis time class-width from matplotlib.widgets import Cursor as lines #===============================================================================================================plot colors -colors=["#fde725","#5ec962","#21918c","#3b528b","#440154","#f89540","#cc4778","cyan","#7e03a8","tomato","tan","#0d0887","green","blue","indigo","violet"] +colors=["#3474eb","#5ec962","yellow","#f89540","#21918c","#3b528b","#cc4778","cyan","#440154","#7e03a8","tomato","tan","#0d0887","green","blue","indigo"] #==================================================================================================connecting MySQL import mysql.connector as my #required modules mycon=my.connect(host='localhost',user='root',passwd='tejas123',database='finance') diff --git a/software/mainGUI.py b/software/mainGUI.py index 03843aa..a2ae270 100644 --- a/software/mainGUI.py +++ b/software/mainGUI.py @@ -15,7 +15,7 @@ from matplotlib.widgets import Cursor #for lines on hover in plot import numpy as np #for x-axis time arange #===================================================================================================================plot colors -colors=["#fde725","#5ec962","#21918c","#3b528b","#440154","#f89540","#cc4778","cyan","#7e03a8","tomato","tan","#0d0887","green","blue","indigo","red"] +colors=["#3474eb","#5ec962","yellow","#440154","#f89540","#21918c","#3b528b","#cc4778","cyan","#7e03a8","tomato","tan","#0d0887","green","blue","indigo"] #===================================================================================================================connecting mySQL mycon=financeTracker.mycon cursor=financeTracker.cursor