aboutsummaryrefslogtreecommitdiff
path: root/utils (unfollow)
Commit message (Collapse)AuthorLines
2023-05-07First attempt at balance!!Adrián Oliva-0/+114
The output still needs colors, but it's functional. :D
2023-05-07`currencies` class can now convert to string.Adrián Oliva-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.
2023-05-07First attempt at sorting.Adrián Oliva-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:
2023-05-07We can now compare currencies.Adrián Oliva-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.
2023-05-05New it has colors!!!Adrián Oliva-8/+27
2023-05-05First attempt at the register command.Adrián Oliva-0/+162
Still needs colored output and doesn't have any filters to it.
2023-05-05Print verb is mostly completed.Adrián Oliva-1/+25
May still have bugs, but for now it is good enough.
2023-05-05The `--file` option is more or less completed.Adrián Oliva-1/+1
The `stdin` option is left to be worked on.
2023-05-04First attempt at storing ledger entries.Adrián Oliva-0/+119
Now we can store the entries in very simple ways and we can even print them!
2023-05-03Read and test command line arguments.Adrián Oliva-0/+72
First try at reading command line arguments. Still needs testing the command `--sort`.