From 71cb0d10e0e71afdc8b52dcd49fb8f8d829d9f21 Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Sat, 11 Apr 2020 15:09:17 +0800 Subject: [PATCH 1/5] Doc(fix): update logo path --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index fdb5d26d..94d6efc6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -111,7 +111,7 @@ ] } -html_logo = '../data/icons/scalable/srain.png' +html_logo = '../data/icons/128x128/srain.png' html_favicon = html_logo # -- Options for HTMLHelp output ------------------------------------------ From ceb5ca3e3dcdea9f7cc238528d770bdf61787687 Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Sat, 11 Apr 2020 15:15:31 +0800 Subject: [PATCH 2/5] Doc(update): update gentoo install doc --- doc/install.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/install.rst b/doc/install.rst index 2eda342d..9a0fbc5a 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -175,14 +175,14 @@ you already have flatpak installed: .. _Flatpak manifest for Srain: https://github.com/SrainApp/srain-contrib/tree/master/pack/flatpak .. _Flathub: https://flathub.org +.. _install-packages-gentoo: + Gentoo ~~~~~~ -`rtlanceroad`_ is maintaining `Gentoo ebuilds for Srain`_, please refer to it -for more details. +Please refers to `gentoo portage overlays`_. -.. _rtlanceroad: https://github.com/rtlanceroad -.. _Gentoo ebuilds for Srain: https://github.com/SrainApp/srain-contrib/tree/master/pack/gentoo +.. _gentoo portage overlays: https://gpo.zugaina.org/net-im/srain .. _install-packages-opensuse: From 367e0dc13cd5b0a2862ee2e372c973f9e4813143 Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Sat, 11 Apr 2020 15:09:39 +0800 Subject: [PATCH 3/5] Doc(update): changelog for 1.0.2 --- doc/changelog.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/doc/changelog.rst b/doc/changelog.rst index a65835aa..a1b1793b 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -29,6 +29,33 @@ Change Log - XXX .. _version-latest: + +.. _version-1.0.2: + +2020-04-11 Version 1.0.2 +======================== + +- Features: + + - Add MAN documentation (:commit:`deaf723`) + - Add more predefined IRC networks: DALnet, EFnet, IRCnet, Undernet and QuakeNet (:pull:`228`) + +- Changes: + + - Build: Allow setting CC variable via environment (:pull:`224`) + - Add channel related messages to corresponding buffer as possible (:issue:`149`) + - Improve widget focus control (:pull:`229`) + - Drop unused icons (:commit:`6239fe5`) + - Provide clearer error message when connecting (:pull:`233`) + - Update gentoo installation documentation :ref:`install-packages-gentoo` (:commit:`ceb5ca3`) + +- Bug fixes: + + - Truncate long message before sendisg (:pull:`227`) + - Deal with invalid UTF-8 string (:commit:`50e7757`) + - Fix incorrect user number of channel user list (:pull:`230`) + - Fix incorrect icon install path (:commit:`9f07380`) + .. _version-1.0.1: 2020-03-14 Version 1.0.1 From b983a661f9d9c01138851550e9b3eaf1f6ab0a3d Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Sat, 11 Apr 2020 21:48:21 +0800 Subject: [PATCH 4/5] Script(update): bump version to 1.0.2 --- Makefile.in | 2 +- data/srain.appdata.xml | 3 +++ doc/conf.py | 4 ++-- doc/install.rst | 6 +++--- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile.in b/Makefile.in index 36bd7d7d..6b3816c7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,7 +10,7 @@ PACKAGE_APPID = im.srain.Srain PACKAGE_BUILD = $(shell [ -d .git ] && \ git rev-parse --git-dir > /dev/null 2>&1 && \ echo -n -git@0.`git rev-list --count HEAD`.`git describe --always`) -PACKAGE_VERSION = 1.0.1 +PACKAGE_VERSION = 1.0.2 PACKAGE_AUTHOR = Shengyu Zhang PACKAGE_EMAIL = i@silverrainz.me PACKAGE_DESC = Modern IRC client written in GTK. diff --git a/data/srain.appdata.xml b/data/srain.appdata.xml index 25073565..4a0e3bfc 100644 --- a/data/srain.appdata.xml +++ b/data/srain.appdata.xml @@ -67,6 +67,9 @@ + + https://doc.srain.im/en/latest/changelog.html#version-1-0-2 + https://doc.srain.im/en/latest/changelog.html#version-1-0-1 diff --git a/doc/conf.py b/doc/conf.py index 94d6efc6..5aba5390 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '1.0.1' +version = '1.0.2' # The full version, including alpha/beta/rc tags. -release = '1.0.1' +release = '1.0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/install.rst b/doc/install.rst index 9a0fbc5a..330ac5d1 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -46,9 +46,9 @@ you can get source code of latest release: .. code-block:: console - $ wget https://github.com/SrainApp/srain/archive/1.0.1.tar.gz - $ tar -xvzf 1.0.1.tar.gz - $ cd srain-1.0.1 + $ wget https://github.com/SrainApp/srain/archive/1.0.2.tar.gz + $ tar -xvzf 1.0.2.tar.gz + $ cd srain-1.0.2 Or get git version: From 150e7a2bda371819901b8e4d2391c5946ae99e07 Mon Sep 17 00:00:00 2001 From: Shengyu Zhang Date: Sat, 11 Apr 2020 22:30:06 +0800 Subject: [PATCH 5/5] Doc(update): improve README --- README.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4a6b1aab..26ab4276 100644 --- a/README.rst +++ b/README.rst @@ -2,11 +2,14 @@ Srain ===== -|ci-status| |channel| +|ci-status| |doc-status| |channel| .. |ci-status| image:: https://github.com/SrainApp/srain/workflows/build/badge.svg?branch=master :target: https://github.com/SrainApp/srain/actions +.. |doc-status| image:: https://readthedocs.org/projects/srain/badge/?version=latest + :target: https://doc.srain.im/en/latest/ + .. |channel| image:: https://img.shields.io/badge/channel-%23srain-brightgreen.svg :target: ircs://chat.freenode.net/#srain @@ -18,6 +21,8 @@ Modern IRC client written in GTK. .. _Documentation: https://doc.srain.im .. _Source code: https://github.com/SrainApp/srain +.. image:: https://srain.im/assets/images/cover.png + Packaging Status ================