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

Update documentation about Debian installation #217

Merged
merged 5 commits into from Mar 11, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.rst
Expand Up @@ -55,11 +55,15 @@ Features
Need Help?
==========

`Frequently Asked Questions`_ may be helpful.

Feel free to contact us if you have any question about Srain.

- IRC Channel: `#srain <ircs://chat.freenode.org:6697/srain>`_ @ freenode
- Github: file an issue `Here <https://github.com/SrainApp/srain/issues>`_

.. _Frequently Asked Questions: https://doc.srain.im/en/latest/faq.html

License
=======

Expand Down
27 changes: 27 additions & 0 deletions doc/faq.rst
Expand Up @@ -53,3 +53,30 @@ removed.

Or you can use `secret-tool` (provided by libsecret) to manage all your stored
passwords.

How can I hide JOIN/PART messages of channel?
=============================================

So far, Srain has not yet a specialized option for hiding such messages.
You can use write regular expression to filter them::

/pattern add filter-join ^\w+ has joined$
/filter filter-join
/pattern add filter-part ^\w+ has left: .*$
/filter filter-part

.. NOTE:: The content of regular expression depends on your language.

Why can't I login to my ZNC server?
===================================

According `ZNC's FAQ`_, way 2, supply your "user@phone/network:pass"
(without quotes) in the server password field. Other as usual.

.. NOTE::

Way 1 in `ZNC's FAQ`_ requires username field can be set via connection panel,
which will be supported by Srain in the future.


.. _ZNC's FAQ: https://wiki.znc.in/FAQ#Why_do_I_get_an_.22Incorrect_Password.22_every_time_I_connect_even_though_my_pass_is_correct.3F
16 changes: 11 additions & 5 deletions doc/install.rst
Expand Up @@ -114,16 +114,22 @@ If you are the user of `Arch Linux CN Repository`_, try:
.. _srain-git: https://aur.archlinux.org/packages/srain-git
.. _Arch Linux CN Repository: https://www.archlinuxcn.org/archlinux-cn-repo-and-mirror

.. _install-packages-debian:

Debian
~~~~~~

.. warning:: This package is **broken** now.
`tomac4t`_ is maintaining `Debian package script for Srain`_.

Move the ``debian`` directory to srain's project root directory, perform the
following commands to build a deb package:

.. code-block:: console

`dfceaef`_ has written `Debian package script for Srain`_, but it is already
**out of date**, I will be glad if anyone can fix it.
$ dpkg-buildpackage -b -us -uc

.. _dfceaef: https://github.com/yangfl
.. _Debian package script for Srain: https://github.com/SrainApp/srain/tree/misc/debian
.. _tomac4t: https://github.com/tomac4t
.. _Debian package script for Srain: https://github.com/SrainApp/srain-contrib/tree/master/pack/debian

.. _install-packages-flatpak:

Expand Down
1 change: 1 addition & 0 deletions src/sui/sui_app.c
Expand Up @@ -419,6 +419,7 @@ static void show_about_dialog(SuiApplication *self){
gtk_get_minor_version(),
gtk_get_micro_version());
const char *translators =
"Heimen Stoffels (nl)\n" \
"Artem Polishchuk (ru)\n" \
"Shengyu Zhang (zh_CN)\n" \
"Jianqiu Zhang (zh_CN)";
Expand Down