aboutsummaryrefslogtreecommitdiff
path: root/utils (follow)
Commit message (Collapse)AuthorAgeLines
* The program is basically usable.HEADmainAdrián Oliva2023-05-09-1/+1
| | | | | And mostly finished. It still needs a few tweaks here and there, but it is completely usable in this state.
* First attempt at sorting accounts.Adrián Oliva2023-05-08-0/+122
| | | | I DID IT!! I'm really happy with the result. :')
* First step to adding filters to accounts.Adrián Oliva2023-05-08-3/+4
|
* Balance is now sorted!Adrián Oliva2023-05-07-0/+3
| | | | Apparently it can only be sorted alphabetically. So I hard-coded it.
* Balance now has colors!Adrián Oliva2023-05-07-20/+27
| | | | | Moved color functions to its own file. Now the colored output can be easily edited in general.
* Just added a new line at the EOF.Adrián Oliva2023-05-07-1/+1
|
* First attempt at balance!!Adrián Oliva2023-05-07-0/+114
| | | | The output still needs colors, but it's functional. :D
* `currencies` class can now convert to string.Adrián Oliva2023-05-07-3/+14
| | | | | Before we had to iterate and immediatly stop. Now if there's only one type of currency, we can return the string of it.
* First attempt at sorting.Adrián Oliva2023-05-07-0/+118
| | | | | We can only sort by date and amount right now. I don't know if there are other important ways of sorting. D:
* We can now compare currencies.Adrián Oliva2023-05-07-0/+12
| | | | | At least with just the `<` and if we only have one type of currency. The value is the only thing that will be compared.
* New it has colors!!!Adrián Oliva2023-05-05-8/+27
|
* First attempt at the register command.Adrián Oliva2023-05-05-0/+162
| | | | Still needs colored output and doesn't have any filters to it.
* Print verb is mostly completed.Adrián Oliva2023-05-05-1/+25
| | | | May still have bugs, but for now it is good enough.
* The `--file` option is more or less completed.Adrián Oliva2023-05-05-1/+1
| | | | The `stdin` option is left to be worked on.
* First attempt at storing ledger entries.Adrián Oliva2023-05-04-0/+119
| | | | | Now we can store the entries in very simple ways and we can even print them!
* Read and test command line arguments.Adrián Oliva2023-05-03-0/+72
First try at reading command line arguments. Still needs testing the command `--sort`.