From ee4f035e24a96ec8cdcadb60ba2002bbf78bbd4b Mon Sep 17 00:00:00 2001 From: Lars-Magnus Skog Date: Fri, 11 Jan 2019 22:56:59 +0100 Subject: [PATCH] Prepare for v0.98.2 --- CHANGELOG.md | 39 ++++++++++++++++++++++++++- CONTRIBUTORS.md | 2 +- README.md | 7 +---- package.json | 2 +- static/chat.delta.desktop.appdata.xml | 38 ++++++++++++++++++++++++++ 5 files changed, 79 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b73a833bfc..c1c52213fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,41 @@ ## [Unreleased][unreleased] +## [0.98.2] - 2019-01-11 + +### Changed + +- Tweak search button ([#568](https://github.com/deltachat/deltachat-desktop/issues/568)) ([**@jikstra**](https://github.com/jikstra)) +- Convert `src/config.js` to `src/applications-constants.js` with a functional API ([#578](https://github.com/deltachat/deltachat-desktop/issues/578)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Improve css building for conversations stylesheets ([#573](https://github.com/deltachat/deltachat-desktop/issues/573)) ([**@jikstra**](https://github.com/jikstra)) +- Update install instructions in README ([**@jikstra**](https://github.com/jikstra), [**@ralphtheninja**](https://github.com/ralphtheninja)) +- Restyle create chat buttons ([#563](https://github.com/deltachat/deltachat-desktop/issues/563)) ([**@jikstra**](https://github.com/jikstra)) +- Update outdated watch script ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Hide known accounts section when it's empty ([#567](https://github.com/deltachat/deltachat-desktop/issues/567)) ([**@Simon-Laux**](https://github.com/Simon-Laux)) +- Set minimum window height to 450px ([**@jikstra**](https://github.com/jikstra)) +- Upgrade `deltachat-node` to `^0.36.0` for Mac OS prebuilt binaries ([#570](https://github.com/deltachat/deltachat-desktop/issues/570)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Make unit tests less spammy ([#554](https://github.com/deltachat/deltachat-desktop/issues/554)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Simplify state load ([#540](https://github.com/deltachat/deltachat-desktop/issues/540)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Make converting translations less spammy ([#547](https://github.com/deltachat/deltachat-desktop/issues/547)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) + +### Added + +- Add `rc` module for configuration ([#574](https://github.com/deltachat/deltachat-desktop/issues/574)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Add logging functionality ([#497](https://github.com/deltachat/deltachat-desktop/issues/497)) ([**@Simon-Laux**](https://github.com/Simon-Laux)) +- Add `hallmark` module for markdown linting ([#548](https://github.com/deltachat/deltachat-desktop/issues/548)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) + +### Removed + +- Remove `bin/clean.js` ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Clean up unused configuration code ([**@ralphtheninja**](https://github.com/ralphtheninja)) + +### Fixed + +- Fix non verified contacts in verified groups ([#580](https://github.com/deltachat/deltachat-desktop/issues/580)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Fix escaped characters in translations ([#569](https://github.com/deltachat/deltachat-desktop/issues/569)) ([**@ralphtheninja**](https://github.com/ralphtheninja)) +- Adjust login form so it's not hidden below navigation bar ([#564](https://github.com/deltachat/deltachat-desktop/issues/564)) ([**@jikstra**](https://github.com/jikstra)) +- Fix broken `rimraf` dependency ([**@jikstra**](https://github.com/jikstra)) + ## [0.98.1] - 2019-01-06 ### Changed @@ -363,7 +398,9 @@ - Do not scroll to bottom when opening message context menu ([**@ralphtheninja**](https://github.com/ralphtheninja)) - Make sure `Float on Top` menu item stays checked/unchecked when language is changed ([**@ralphtheninja**](https://github.com/ralphtheninja)) -[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v0.98.1...HEAD +[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v0.98.2...HEAD + +[0.98.2]: https://github.com/deltachat/deltachat-desktop/compare/v0.98.1...v0.98.2 [0.98.1]: https://github.com/deltachat/deltachat-desktop/compare/v0.98.0...v0.98.1 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 659bcbfe17..eead15bd11 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,8 +9,8 @@ | **Jikstra** | [**@Jikstra**](https://github.com/Jikstra) | | **holger krekel** | | | **jankass** | | +| **muelli** | | | **B. Petersen** | | | **Oliver Bestwalter** | | | **alfaslash** | | -| **Tobias Mueller** | | | **substack** | | diff --git a/README.md b/README.md index 9f6af3797a..f11c68b958 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,6 @@
Click to expand - [Install](#install) - - [Linux](#linux) - - [AppImage](#appimage) - - [Debian/Ubuntu](#debian/ubuntu) - - [Arch Linux](#arch-linux) - - [Mac OS](#mac-os) - - [From Source](#from) - [Configuration and Databases](#configuration-and-databases) - [Troubleshooting](#troubleshooting) - [How to Contribute](#how-to-contribute) @@ -57,6 +51,7 @@ To install a `.AppImage` based release: If you have a AUR helper like yay installed, you can install it by running `yay -S deltachat-desktop-git` and following the instruction in your terminal. Otherwise you can still do it manually: + ``` # Download the latest snapshot of the PKGBUILD wget https://aur.archlinux.org/cgit/aur.git/snapshot/deltachat-desktop-git.tar.gz diff --git a/package.json b/package.json index 2720a0dced..de85d76437 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "deltachat-desktop", - "version": "0.98.1", + "version": "0.98.2", "description": "Desktop Application for delta.chat", "main": "index.js", "scripts": { diff --git a/static/chat.delta.desktop.appdata.xml b/static/chat.delta.desktop.appdata.xml index 3462ff975d..b1322dd8c9 100644 --- a/static/chat.delta.desktop.appdata.xml +++ b/static/chat.delta.desktop.appdata.xml @@ -24,6 +24,44 @@ Free, independent, email compatible. https://delta.chat/ + + +

+ Changed + + Tweak search button (@jikstra) + Convert src/config.js to src/applications-constants.js with a functional API (@ralphtheninja) + Improve css building for conversations stylesheets (@jikstra) + Update install instructions in README (@jikstra, @ralphtheninja) + Restyle create chat buttons (@jikstra) + Update outdated watch script (@ralphtheninja) + Hide known accounts section when it's empty (@Simon-Laux) + Set minimum window height to 450px (@jikstra) + Upgrade deltachat-node to ^0.36.0 for Mac OS prebuilt binaries (@ralphtheninja) + Make unit tests less spammy (@ralphtheninja) + Simplify state load (@ralphtheninja) + Make converting translations less spammy (@ralphtheninja) + + Added + + Add rc module for configuration (@ralphtheninja) + Add logging functionality (@Simon-Laux) + Add hallmark module for markdown linting (@ralphtheninja) + + Removed + + Remove bin/clean.js (@ralphtheninja) + Clean up unused configuration code (@ralphtheninja) + + Fixed + + Fix non verified contacts in verified groups (@ralphtheninja) + Fix escaped characters in translations (@ralphtheninja) + Adjust login form so it's not hidden below navigation bar (@jikstra) + Fix broken rimraf dependency (@jikstra) +

+
+