Change log update and added Slovenian.

This commit is contained in:
James Cole 2017-05-02 21:08:29 +02:00
parent fddf1f146c
commit 19847ee80b
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 14 additions and 3 deletions

View File

@ -2,9 +2,19 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [4.4.3] - 2017-05-02
### Added
- Support for Slovenian
### Changed
- The journal collector, an internal piece of code to collect transactions, now uses a slightly different method of collecting journals. This may cause problems.
### Fixed
- Issue #638 as reported by [worldworm](https://github.com/worldworm).
## [4.4.2] - 2017-04-27
### Fixed
Fixed a bug where the opening balance could not be stored.
- Fixed a bug where the opening balance could not be stored.
## [4.4.1] - 2017-04-27

View File

@ -105,7 +105,8 @@ return [
'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch', 'complete' => true],
'pl_PL' => ['name_locale' => 'Polski', 'name_english' => 'Polish ', 'complete' => false],
'pt_BR' => ['name_locale' => 'Português do Brasil', 'name_english' => 'Portuguese (Brazil)', 'complete' => true],
'ru-RU' => ['name_locale' => 'Russian', 'name_english' => 'Russian', 'complete' => false],
'ru-RU' => ['name_locale' => 'ру́сский', 'name_english' => 'Russian', 'complete' => false],
'sl-SI' => ['name_locale' => 'Slovenščina', 'name_english' => 'Slovenian', 'complete' => false],
'zh-HK' => ['name_locale' => '繁體中文(香港)', 'name_english' => 'Chinese Traditional, Hong Kong', 'complete' => false],
'zh-TW' => ['name_locale' => '正體中文', 'name_english' => 'Chinese Traditional', 'complete' => false],
],
@ -176,7 +177,7 @@ return [
'category_is' => 'FireflyIII\Rules\Triggers\CategoryIs',
'budget_is' => 'FireflyIII\Rules\Triggers\BudgetIs',
'tag_is' => 'FireflyIII\Rules\Triggers\TagIs',
'has_attachments' => 'FireflyIII\Rules\Triggers\HasAttachment',
'has_attachments' => 'FireflyIII\Rules\Triggers\HasAttachment',
],
'rule-actions' => [
'set_category' => 'FireflyIII\Rules\Actions\SetCategory',