Skip to content

Commit

Permalink
Update changelog, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jtdaugherty committed Jul 14, 2017
1 parent 5b62345 commit c95a1c9
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 4 deletions.
58 changes: 58 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,62 @@

31000.0.0
=========

This release supports server verison 3.10.0.

Package changes:
* Upgraded mattermost-api to 31000.0.0.
* Upgraded mattermost-api-qc to 31000.0.0.

New features and keybindings:
* Matterhorn now supports Flagged Posts. To use this feature:
* Press M-8 to show a list of your flagged posts. Within that view,
'f' will unflag.
* In message selection mode in channels (C-s), 'f' will flag/unflag
the selected message.
* Flagged posts appear with a flag marker "[!]" next to the author's
username.
* Syntax highlighting of fenced code blocks is now supported in
256-color terminals. Code blocks must provide the langauge hint using
the same syntax as supported by the web client.
* Spell checking of user input is now supported using Aspell. To use
this feature:
* Install the Aspell binary and dictionaries on your system.
* Set enableAspell = true in your Matterhorn configuration.
* Optionally, set aspellDictionary to the name of the Aspell
dictionary you want to use (this is only necessary if you want to
override your LANG setting, which is typically sufficient)
* Once user input is entered into the input area, a short delay after
typing stops, a spell check will highlight any misspelled words.
* Home and End now move the cursor as usual in editor while in normal
mode, and also navigate the message list while scrolling.
* Matterhorn now displays the mention count in the channel sidebar to
mimic the web client behavior and highlights channels with at least
mone ention in megenta in the sidebar.

Bug fixes and improvements:
* Configuration file values can now use quoted string syntax (fixes
#269)
* The channel switch mode prompt now mentions anchors.
* The URL opening command is now run asynchronously.
* Input history files are now saved with an appropriate file mode (fixes #218)
* Fixed a bug that caused users created after a session began not to
appear in the sidebar.
* Help topics (valid arguments to /help) are now displayed in the main
help UI (fixes #225)
* Message deletion now also deletes replies to the deleted message
(fixes #257)
* On channel deletion, leave before deleting to avoid a server error.
* URLs in the URL list are now displayed in the same order in which
they appear in messages (fixes #250)
* User identification now appears in DM channel headers.
* Numbered lists now render starting at first specified number (fixes
#243)
* The login screen now displays validation errors for hostname and port
inputs when appropriate (fixes #242)
* Channel select inputs that have an exact match no longer require
^/$ anchors.

30802.1.0
=========

Expand Down
8 changes: 4 additions & 4 deletions matterhorn.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: matterhorn
version: 30802.1.0
version: 31000.0.0
synopsis: Terminal client for the Mattermost chat system
description: This is a terminal client for the Mattermost chat
system. Please see the README for a list of
Expand Down Expand Up @@ -74,7 +74,7 @@ executable matterhorn
ScopedTypeVariables
ghc-options: -Wall -threaded
build-depends: base >=4.8 && <5
, mattermost-api == 30802.1.0
, mattermost-api == 31000.0.0
, base-compat >= 0.9 && < 0.10
, unordered-containers >= 0.2 && < 0.3
, containers >= 0.5.7 && < 0.6
Expand Down Expand Up @@ -131,8 +131,8 @@ test-suite test_messages
, filepath >= 1.4 && < 1.5
, hashable >= 1.2 && < 1.3
, Hclip >= 3.0 && < 3.1
, mattermost-api == 30802.1.0
, mattermost-api-qc == 30802.1.0
, mattermost-api == 31000.0.0
, mattermost-api-qc == 31000.0.0
, microlens-platform >= 0.3 && < 0.4
, mtl >= 2.2 && < 2.3
, process >= 1.4 && < 1.7
Expand Down

0 comments on commit c95a1c9

Please sign in to comment.