Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.6.0 #404

Merged
merged 2 commits into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions data/metainfo/srain.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
</content_rating>

<releases>
<release version="1.6.0" date="2024-02-11">
<url>https://srain.silverrainz.me/changelog.html#version-1-6-0</url>
</release>
<release version="1.5.1" date="2023-03-26">
<url>https://srain.silverrainz.me/changelog.html#version-1-5-1</url>
</release>
Expand Down
26 changes: 26 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,32 @@ Change Log
- XXX

.. _version-latest:
.. _version-1.6.0:

2024-02-11 Version 1.6.0
========================

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

- Features:

- Use new app indicator provided by libayatana-appindicator_, which has better
compatibility than ``GtkStatusIcon`` (:pull:`374`, :pull:`401`)

.. note:: User can still use ``GtkStatusIcon`` if they have trouble installing
libayatana-appindicator, see :doc:`./install` for more details.

- Add conf item ``scroll-on-new-message`` to automatically scroll down the
message list when a new message is incoming even if the application is
inactive (:issue:`382`)

- Bug fixes:

- Let conf item ``chat.log`` works as expected (:issue:`402`)

.. _libayatana-appindicator: https://github.com/AyatanaIndicators/libayatana-appindicator

.. _version-1.5.1:

2023-03-26 Version 1.5.1
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# General information about the project.
project = 'Srain'
copyright = '2022, Shengyu Zhang'
copyright = '2024, Shengyu Zhang'
author = 'Shengyu Zhang'
baseurl = 'https://srain.silverrainz.me/'

Expand All @@ -62,7 +62,7 @@
# built documents.
#
# The short X.Y version.
version = '1.5.1'
version = '1.6.0'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
4 changes: 1 addition & 3 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,10 @@ libsecret
openssl
python-sphinx Optional, for building documentation
adwaita-icon-theme Or any other icon themes
libayatana-appindicator_ Optional application indicators support, can be
libayatana-appindicator Optional application indicator support, can be
disabled by meson options ``-Dapp_indicator=false``
======================== =================================================== ========

.. _libayatana-appindicator: https://github.com/AyatanaIndicators/libayatana-appindicator

.. _install-building:

Building
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.5.1',
version: '1.6.1',
license: 'GPL3',
meson_version: '>= 0.47.0'
)
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ meta_h.set_quoted('PACKAGE_WEBSITE', app_url)
meta_h.set_quoted('PACKAGE_BUGREPORT', app_bugreport)
meta_h.set_quoted('PACKAGE_AUTHOR', 'Shengyu Zhang')
meta_h.set_quoted('PACKAGE_EMAIL', '[email protected]')
meta_h.set_quoted('PACKAGE_COPYRIGHT_DATES', '2016 - 2023')
meta_h.set_quoted('PACKAGE_COPYRIGHT_DATES', '2016 - 2024')
meta_h.set_quoted('PACKAGE_DATA_DIR', data_dir)
meta_h.set_quoted('PACKAGE_CONFIG_DIR', sys_conf_dir)

Expand Down
Loading