From 8e75c345d9fce7f682de29b01ae435e49026d8c3 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 28 Dec 2015 16:52:21 +0100 Subject: [PATCH 1/3] Found a bug that requires a new release of FF3 to fix. --- app/Repositories/Journal/JournalRepository.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/Repositories/Journal/JournalRepository.php b/app/Repositories/Journal/JournalRepository.php index 0f3cc946ea..061d9c39a3 100644 --- a/app/Repositories/Journal/JournalRepository.php +++ b/app/Repositories/Journal/JournalRepository.php @@ -172,12 +172,12 @@ class JournalRepository implements JournalRepositoryInterface // store actual journal. $journal = new TransactionJournal( [ - 'user_id' => $data['user'], - 'transaction_type_id' => $transactionType->id, - 'amount_currency_id_amount' => $data['amount_currency_id_amount'], - 'description' => $data['description'], - 'completed' => 0, - 'date' => $data['date'], + 'user_id' => $data['user'], + 'transaction_type_id' => $transactionType->id, + 'transaction_currency_id' => $data['amount_currency_id_amount'], + 'description' => $data['description'], + 'completed' => 0, + 'date' => $data['date'], ] ); $journal->save(); From f79c9f7cf1df50dabc1305dbe5fba5fa9fdaed98 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 28 Dec 2015 16:52:28 +0100 Subject: [PATCH 2/3] Cleanup. --- app/Events/JournalDeleted.php | 25 ------------------------- composer.json | 1 - 2 files changed, 26 deletions(-) delete mode 100644 app/Events/JournalDeleted.php diff --git a/app/Events/JournalDeleted.php b/app/Events/JournalDeleted.php deleted file mode 100644 index 575697e6f9..0000000000 --- a/app/Events/JournalDeleted.php +++ /dev/null @@ -1,25 +0,0 @@ - Date: Mon, 28 Dec 2015 16:53:30 +0100 Subject: [PATCH 3/3] New release. --- config/firefly.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/firefly.php b/config/firefly.php index 2ebd6019aa..a7696da971 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -2,7 +2,7 @@ return [ 'chart' => 'chartjs', - 'version' => '3.5.6', + 'version' => '3.5.6.1', 'index_periods' => ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'], 'budget_periods' => ['daily', 'weekly', 'monthly', 'quarterly', 'half-year', 'yearly'], 'csv_import_enabled' => true,