diff --git a/.sandstorm/changelog.md b/.sandstorm/changelog.md index 75e45b90ad..8e92ce0b68 100644 --- a/.sandstorm/changelog.md +++ b/.sandstorm/changelog.md @@ -1,3 +1,15 @@ +# 4.7.11 +- Experimental audit logging channel to track important events (separate from debug logging). +- [Issue 2003](https://github.com/firefly-iii/firefly-iii/issues/2003), [issue 2006](https://github.com/firefly-iii/firefly-iii/issues/2006) Transactions can be stored with a timestamp. The user-interface does not support this yet. But the API does. +- Docker image tags a new manifest for arm and amd64. +- [skuzzle](https://github.com/skuzzle) removed an annoying console.log statement. +- [Issue 2048](https://github.com/firefly-iii/firefly-iii/issues/2048) Fix "Are you sure?" popup, thanks to @nescafe2002! +- [Issue 2049](https://github.com/firefly-iii/firefly-iii/issues/2049) Empty preferences would crash Firefly III. +- [Issue 2052](https://github.com/firefly-iii/firefly-iii/issues/2052) Rules could not auto-covert to liabilities. +- Webbased upgrade routine will also decrypt the database. +- Last use date for categories was off. +- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date. + # 4.7.10 - [Issue 2037](https://github.com/firefly-iii/firefly-iii/issues/2037) Added some new magic keywords to reports. - Added a new currency exchange rate service, [ratesapi.io](https://ratesapi.io/), that does not require expensive API keys. Built by [@BoGnY](https://github.com/BoGnY). diff --git a/.sandstorm/sandstorm-pkgdef.capnp b/.sandstorm/sandstorm-pkgdef.capnp index 1d58b6858b..dd6219a976 100644 --- a/.sandstorm/sandstorm-pkgdef.capnp +++ b/.sandstorm/sandstorm-pkgdef.capnp @@ -15,8 +15,8 @@ const pkgdef :Spk.PackageDefinition = ( manifest = ( appTitle = (defaultText = "Firefly III"), - appVersion = 20, - appMarketingVersion = (defaultText = "4.7.10"), + appVersion = 21, + appMarketingVersion = (defaultText = "4.7.11"), actions = [ # Define your "new document" handlers here. diff --git a/changelog.md b/changelog.md index 7231863962..e42f67ffc2 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [4.7.11] - 2019-02-09 +## [4.7.11 (API 0.9.2)] - 2019-02-10 ### Added - Experimental audit logging channel to track important events (separate from debug logging). @@ -21,8 +21,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Last use date for categories was off. ### API -- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date. - +- The `date`-field in any transaction object now returns a ISO 8601 timestamp instead of a date. + ## [4.7.10] - 2019-02-03 ### Added