Browse Source

core: add bar item "typing" in status bar by default

master
Sébastien Helleu 2 years ago
parent
commit
3199877bc0
  1. 10
      ReleaseNotes.adoc
  2. 4
      doc/de/weechat_user.de.adoc
  3. 3
      doc/en/weechat_user.en.adoc
  4. 3
      doc/fr/weechat_user.fr.adoc
  5. 3
      doc/it/weechat_user.it.adoc
  6. 3
      doc/ja/weechat_user.ja.adoc
  7. 3
      doc/pl/weechat_user.pl.adoc
  8. 3
      doc/sr/weechat_user.sr.adoc
  9. 2
      src/gui/gui-bar-item.c

10
ReleaseNotes.adoc

@ -20,6 +20,16 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog] @@ -20,6 +20,16 @@ https://weechat.org/files/changelog/ChangeLog-devel.html[ChangeLog]
[[v3.3]]
== Version 3.3 (under dev)
[[v3.3_typing_bar_item]]
=== Bar item "typing"
A bar item called "typing" has been added to status bar by default. It is used
to display users that are currently typing a message on the current IRC channel
or private buffer.
If you want to display typing notifications in the status bar, add ",[typing]"
in your option _weechat.bar.status.items_.
[[v3.3_ordered_hashtables]]
=== Ordered hashtables

4
doc/de/weechat_user.de.adoc

@ -4819,8 +4819,8 @@ auch für die IRC-Erweiterung aktivieren: @@ -4819,8 +4819,8 @@ auch für die IRC-Erweiterung aktivieren:
/set irc.look.typing_status_self on
----
Dann müssen Sie das Bar-Item "typing" in eine Bar einfügen, zum Beispiel in
Option _weechat.bar.status.items_.
// TRANSLATION MISSING
The typing notifications are displayed at the end of the status bar.
Beispiel für die Statusleiste mit dem "typing" Item: "bob" tippt gerade eine
Nachricht und "alice" hat eine Nachricht getippt, machte aber eine Pause:

3
doc/en/weechat_user.en.adoc

@ -4723,8 +4723,7 @@ If you want to use it, you must enable options in both typing and irc plugins: @@ -4723,8 +4723,7 @@ If you want to use it, you must enable options in both typing and irc plugins:
/set irc.look.typing_status_self on
----
Then you must add the "typing" bar item in a bar, for example in option
_weechat.bar.status.items_.
The typing notifications are displayed at the end of the status bar.
Example of status bar with the "typing" item: "bob" is typing a message and
"alice" was typing a message but made a pause:

3
doc/fr/weechat_user.fr.adoc

@ -4889,8 +4889,7 @@ typing et irc : @@ -4889,8 +4889,7 @@ typing et irc :
/set irc.look.typing_status_self on
----
Puis vous devez ajouter l'objet de barre "typing" dans une barre, par exemple
dans l'option _weechat.bar.status.items_.
Les notifications "typing" sont affichées à la fin de la barre de statut.
Exemple de barre de statut avec l'objet "typing" : "bob" écrit un message et
"alice" était en train d'en écrire un mais a fait une pause :

3
doc/it/weechat_user.it.adoc

@ -5064,8 +5064,7 @@ If you want to use it, you must enable options in both typing and irc plugins: @@ -5064,8 +5064,7 @@ If you want to use it, you must enable options in both typing and irc plugins:
/set irc.look.typing_status_self on
----
Then you must add the "typing" bar item in a bar, for example in option
_weechat.bar.status.items_.
The typing notifications are displayed at the end of the status bar.
Example of status bar with the "typing" item: "bob" is typing a message and
"alice" was typing a message but made a pause:

3
doc/ja/weechat_user.ja.adoc

@ -4829,8 +4829,7 @@ If you want to use it, you must enable options in both typing and irc plugins: @@ -4829,8 +4829,7 @@ If you want to use it, you must enable options in both typing and irc plugins:
/set irc.look.typing_status_self on
----
Then you must add the "typing" bar item in a bar, for example in option
_weechat.bar.status.items_.
The typing notifications are displayed at the end of the status bar.
Example of status bar with the "typing" item: "bob" is typing a message and
"alice" was typing a message but made a pause:

3
doc/pl/weechat_user.pl.adoc

@ -4752,8 +4752,7 @@ If you want to use it, you must enable options in both typing and irc plugins: @@ -4752,8 +4752,7 @@ If you want to use it, you must enable options in both typing and irc plugins:
/set irc.look.typing_status_self on
----
Then you must add the "typing" bar item in a bar, for example in option
_weechat.bar.status.items_.
The typing notifications are displayed at the end of the status bar.
Example of status bar with the "typing" item: "bob" is typing a message and
"alice" was typing a message but made a pause:

3
doc/sr/weechat_user.sr.adoc

@ -4393,8 +4393,7 @@ If you want to use it, you must enable options in both typing and irc plugins: @@ -4393,8 +4393,7 @@ If you want to use it, you must enable options in both typing and irc plugins:
/set irc.look.typing_status_self on
----
Then you must add the "typing" bar item in a bar, for example in option
_weechat.bar.status.items_.
The typing notifications are displayed at the end of the status bar.
Example of status bar with the "typing" item: "bob" is typing a message and
"alice" was typing a message but made a pause:

2
src/gui/gui-bar-item.c

@ -73,7 +73,7 @@ char *gui_bar_items_default_for_bars[][2] = @@ -73,7 +73,7 @@ char *gui_bar_items_default_for_bars[][2] =
{ GUI_BAR_DEFAULT_NAME_STATUS,
"[time],[buffer_last_number],[buffer_plugin],buffer_number+:+"
"buffer_name+(buffer_modes)+{buffer_nicklist_count}+buffer_zoom+"
"buffer_filter,scroll,[lag],[hotlist],completion" },
"buffer_filter,scroll,[lag],[hotlist],[typing],completion" },
{ GUI_BAR_DEFAULT_NAME_NICKLIST,
"buffer_nicklist" },
{ NULL,

Loading…
Cancel
Save