diff --git a/data/metainfo/srain.metainfo.xml.in.in b/data/metainfo/srain.metainfo.xml.in.in index 95cbaa38..a2647a7c 100644 --- a/data/metainfo/srain.metainfo.xml.in.in +++ b/data/metainfo/srain.metainfo.xml.in.in @@ -71,6 +71,12 @@ + + https://srain.silverrainz.me/changelog.html#version-1-8-0 + + + https://srain.silverrainz.me/changelog.html#version-1-7-0 + https://srain.silverrainz.me/changelog.html#version-1-6-0 diff --git a/docs/changelog.rst b/docs/changelog.rst index 3d17a32a..b66f1dfd 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 ` ``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 diff --git a/docs/commands.rst b/docs/commands.rst index 24bf8490..5eda4c46 100644 --- a/docs/commands.rst +++ b/docs/commands.rst @@ -454,6 +454,8 @@ Clear all messages in current buffer. .. versionadded:: 1.4 +.. _commands-pass: + /pass ------ diff --git a/docs/conf.py b/docs/conf.py index 5a867c63..c25958b5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 @@ -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'), @@ -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), } diff --git a/docs/misc.rst b/docs/misc.rst index 1eaef3a3..259643a8 100644 --- a/docs/misc.rst +++ b/docs/misc.rst @@ -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. diff --git a/meson.build b/meson.build index c262ab1a..df5b8a97 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( 'srain', 'c', - version: '1.7.0', + version: '1.8.0', license: 'GPL3', meson_version: '>= 0.47.0' ) diff --git a/src/sui/sui_app.c b/src/sui/sui_app.c index a5f6b8da..ff36bf18 100644 --- a/src/sui/sui_app.c +++ b/src/sui/sui_app.c @@ -460,7 +460,7 @@ static void show_about_dialog(SuiApplication *self){ "Artem Polishchuk (ru)\n" \ "Andrij Mizyk (uk)\n" \ "Shengyu Zhang (zh_CN)\n" \ - "Jianqiu Zhang (zh_CN)" \ + "Jianqiu Zhang (zh_CN)\n" \ "Peter Dave Hello (zh_TW)"; gtk_show_about_dialog(window,