Skip to content

1.4.0

Compare
Choose a tag to compare
@djaiss djaiss released this 14 Dec 03:21
fb004fc

This version requires to run migrations (php artisan migrate).

Added

  • Some dates (birthdates, first met date, deceased date) can now be set without knowing the year (issue #75). It may seem like a small change (especially visually), but it required a lot of work in the backend.
  • For the developers: there is now a new Artisan command (php artisan setup:test) that will speed up the time it takes to make your tests. Take a look at the gif below to show what it does. It does in this order:
    • recreate the database from scratch
    • run all the migrations in your current branch
    • create two accounts, one with fake data (up to 100 contacts, with avatars), the other completely empty.

2017-12-13 16 13 52

Changed

  • Previously, the last consulted date that is shown in the list of contacts, was using the updated_at value. It does now use a new last_consulted date field that we've added in the database.
  • Updated Italian translations (#683).
  • Revert minimum PHP version to 7.0 (down from 7.1) as it caused some issues on Heroku. Moreover, this is the official supported version by Laravel itself (#690).
  • Remove the important_dates table as it was not used.

Fixed

  • Fix a bug regarding the use of PostgreSQL (#688).