Skip to content

Commit

Permalink
Merge pull request #428 from SrainApp/release-1.8.0
Browse files Browse the repository at this point in the history
Release 1.8.0
  • Loading branch information
SilverRainZ authored Nov 2, 2024
2 parents 5b5bcee + 61526fd commit 3f87653
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 5 deletions.
6 changes: 6 additions & 0 deletions data/metainfo/srain.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@
</content_rating>

<releases>
<release version="1.8.0" date="2024-11-02">
<url>https://srain.silverrainz.me/changelog.html#version-1-8-0</url>
</release>
<release version="1.7.0" date="2024-04-26">
<url>https://srain.silverrainz.me/changelog.html#version-1-7-0</url>
</release>
<release version="1.6.0" date="2024-02-11">
<url>https://srain.silverrainz.me/changelog.html#version-1-6-0</url>
</release>
Expand Down
24 changes: 24 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,30 @@ Change Log
- XXX
.. _version-latest:
.. _version-1.8.0:

2024-11-02 Version 1.8.0
========================

.. post:: 2024-11-02
:category: Release

- Features:

- Add zh_TW Traditional Chinese translation, thanks to @PeterDaveHello (:pull:`417`)
- Add :doc:`configuration <config>` ``chat-list-order = "recent|alphabet"`` for changing chat list order, thanks to @Exagone313 (:pull:`421`)
- Add :kbd:`ctrl+q` :ref:`hot-keys` for quitting Srain, thanks to @Exagone313 (:issue:`223`)
- Add :ref:`commands-pass` command for sending connection password to server , thanks to @Exagone313 (:pull:`423`)

- Changes:

- docs: Fix and update macos instructions, thanks to @step21 (:pull:`414`)

- Bug fixes:

- Convert IRCv3 received server-time to local timezone (:issue:`379`), thanks to @Exagone313
- Fix release assets (:pull:`427`)

.. _version-1.7.0:

2024-04-26 Version 1.7.0
Expand Down
2 changes: 2 additions & 0 deletions docs/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,8 @@ Clear all messages in current buffer.

.. versionadded:: 1.4

.. _commands-pass:

/pass
------

Expand Down
7 changes: 6 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
# built documents.
#
# The short X.Y version.
version = '1.7.0'
version = '1.8.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down Expand Up @@ -189,6 +189,10 @@
# -- Options for sphinx.ext.extlinks --------------------------------------

extensions.append('sphinx.ext.extlinks')
extensions.append('sphinxnotes.mock')
mock_directives = []
mock_directives.append('contents') # Theme has built-in local-toc, see html_theme
mock_directives.append('post') # Theme has built-in local-toc, see html_theme

extlinks = {
'issue': ('https://github.com/SrainApp/srain/issues/%s', '#%s'),
Expand All @@ -210,6 +214,7 @@
blog_path = 'blog'
blog_title = project
blog_baseurl = baseurl
blog_date_format = '%Y-%m-%d'
blog_authors = {
author: (author, blog_baseurl),
}
Expand Down
6 changes: 4 additions & 2 deletions docs/misc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
Miscellaneous
=============

.. _hot-keys:

Hot Keys
========

* :kbd:`ctrl + j/k`: switch chat panel
* :kbd:`ctrl+j/k`: switch chat panel
* :kbd:`up/down`: scroll message list
* :kbd:`ctrl + q`: exit Srain
* :kbd:`ctrl+q`: exit Srain

.. note:: Customized hot keys will be supported in the future.

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

project(
'srain', 'c',
version: '1.7.0',
version: '1.8.0',
license: 'GPL3',
meson_version: '>= 0.47.0'
)
Expand Down
2 changes: 1 addition & 1 deletion src/sui/sui_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ static void show_about_dialog(SuiApplication *self){
"Artem Polishchuk <[email protected]> (ru)\n" \
"Andrij Mizyk <[email protected]> (uk)\n" \
"Shengyu Zhang <[email protected]> (zh_CN)\n" \
"Jianqiu Zhang <[email protected]> (zh_CN)" \
"Jianqiu Zhang <[email protected]> (zh_CN)\n" \
"Peter Dave Hello <[email protected]> (zh_TW)";

gtk_show_about_dialog(window,
Expand Down

0 comments on commit 3f87653

Please sign in to comment.