Releases: tferreira/piggydime
v1.2.1
v1.2 - Hypnotic Frog
v1.2 implements a major change on transactions and balance behavior.
You can now wait until your transactions has been processed by your favorite bank before ticking them into Piggydime. Your current balance will update accordingly.
By default the transactions will not be ticked. If you come from a previous version of the app, you will have to tick your old transactions.
This release has breaking changes on the database. The transaction
database table schema has been reworked.
For both new installation or upgrade, you need to run the db upgrade as like:
$ export DATABASE_URL="mysql+mysqlconnector://username:password@localhost/mydatabase"
$ python3.5 manage.py db upgrade
If you're running it on production (using dist
files and not launching yarn start
), you'll also need to recompile the assets from within the static
directory:
$ yarn run build:production
v1.1 - Flippered Pinguin
Woohoo! This version finally brings the ability to have the choice between monthly and yearly recurring transactions.
- Implements yearly recurring transactions
- Fixes dialog forms keeping previous state values which leaded to wrong field validation messages
- Performance fix on dialog forms (too many updates on user typing)
About recurring transactions, the only difference between monthly
and yearly
groups is the month of year
field. If you specify this value, it will automatically generate yearly
recurring transactions. It's as simple as that!
This release has breaking changes on the database. The recurring_transaction
database table schema has been reworked.
For both new installation or upgrade, you need to run the db upgrade as like:
$ export DATABASE_URL="mysql+mysqlconnector://username:password@localhost/mydatabase"
$ python3.5 manage.py db upgrade
If you're running it on production (using dist
files and not launching yarn start
), you'll also need to recompile the assets from within the static
directory:
$ yarn run build:production
v1.0.3
v1.0.2
v1.0.1
v1.0 - Sparkling Unicorn
Time to rollout the first kind-of-stable version of this app!
- Possibility to create multiple account
- Monthly recurring transactions support
- Projected balance with date choice by account
For both new installation or upgrade, you need to run the db upgrade as like:
$ export DATABASE_URL="mysql+mysqlconnector://username:password@localhost/mydatabase"
$ python3.5 manage.py db upgrade
If you're running it on production (using dist
files and not launching yarn start
), you'll also need to recompile the assets from within the static
directory:
$ yarn run build:production