aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/CHANGES15
-rw-r--r--doc/user-guide/commands.xml15
2 files changed, 30 insertions, 0 deletions
diff --git a/doc/CHANGES b/doc/CHANGES
index 1bfd71d4..a0e9b30b 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -3,6 +3,21 @@ found in the bzr commit logs, for example you can try:
http://bugs.bitlbee.org/bitlbee/timeline?daysback=90&changeset=on
+Version 1.2.5:
+- Many bug fixes, including a fix for MSN login issues, Jabber login timing
+ issues, Yahoo! crashes at login time with huge contact lists,
+- Avoid linking in a static version of libresolv now that glibc has all
+ relevant functions available in the dynamic version.
+- Improved away state code and added the ability to set (non-away) status
+ messages using "set status" (also possible per account).
+- Added a post-1.2 equivalent of encode/decode to quickly encrypt/decrypt
+ passwords in a way that BitlBee can read them.
+- Allow using the full name for generating nicknames, instead of just the
+ handle. This is especially useful when using the Facebook XMPP server.
+- Auto reconnect is now enabled by default since all protocols can properly
+ detect cases where auto reconnect should be avoided (i.e. concurrent
+ logins).
+
Version 1.2.4:
- Most important change (and main reason for releasing now): Upgraded Yahoo!
module to a newer version to get it working again.
diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml
index a7d06cf1..931608ee 100644
--- a/doc/user-guide/commands.xml
+++ b/doc/user-guide/commands.xml
@@ -607,6 +607,21 @@
</description>
</bitlbee-setting>
+ <bitlbee-setting name="nick_source" type="string" scope="account">
+ <default>handle</default>
+ <possible-values>handle, full_name, first_name</possible-values>
+
+ <description>
+ <para>
+ By default, BitlBee generates a nickname for every contact by taking its handle and chopping off everything after the @. In some cases, this gives very inconvenient nicknames. The Facebook XMPP server is a good example, as all Facebook XMPP handles are numeric.
+ </para>
+
+ <para>
+ With this setting set to <emphasis>full_name</emphasis>, the person's full name is used to generate a nickname. Or if you don't like long nicknames, set this setting to <emphasis>first_name</emphasis> instead and only the first word will be used. Note that the full name can be full of non-ASCII characters which will be stripped off.
+ </para>
+ </description>
+ </bitlbee-setting>
+
<bitlbee-setting name="ops" type="string" scope="global">
<default>both</default>
<possible-values>both, root, user, none</possible-values>
> Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/i18n_fixes.rb
blob: 6e684d44a50971efb5bba204dfa1639c735dd3bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159