Changeset e6298e5
- Timestamp:
- 2012-12-29T10:56:53Z (12 years ago)
- Branches:
- master
- Children:
- 62a2bf9, eab8e52
- Parents:
- 14d0b02 (diff), 3c7af69 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols/skype
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/README
r14d0b02 re6298e5 31 31 == Requirements 32 32 33 * Skype >= 1.4.0.99. The latest version I've tested is 2. 1.0.81.33 * Skype >= 1.4.0.99. The latest version I've tested is 2.2.0.35. 34 34 * BitlBee >= 3.0. The latest version I've tested is @BITLBEE_VERSION@. Use 35 35 old versions (see the NEWS file about which one) if you have older BitlBee … … 353 353 - Group support: 354 354 355 * To enable: `account skype set read_groups true` 355 356 * Skype groups are told to BitlBee 356 357 * The usual `/invite` in a group channel adds the buddy to the group in skype -
protocols/skype/skype.c
r14d0b02 re6298e5 1046 1046 static void skype_parse_groups(struct im_connection *ic, char *line) 1047 1047 { 1048 if (!set_getbool(&ic->acc->set, "read_groups")) 1049 return; 1050 1048 1051 char **i; 1049 1052 char **groups = g_strsplit(line + 7, ", ", 0); … … 1536 1539 s = set_add(&acc->set, "edit_prefix", "EDIT:", 1537 1540 NULL, acc); 1541 1542 s = set_add(&acc->set, "read_groups", "false", set_eval_bool, acc); 1538 1543 } 1539 1544
Note: See TracChangeset
for help on using the changeset viewer.