1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Merge branch 'master' into readline

Conflicts:
	src/tools/history.c
	src/tools/history.h
This commit is contained in:
James Booth 2015-02-11 00:09:58 +00:00
commit b24510c776
86 changed files with 114 additions and 109 deletions

View File

@ -1,16 +1,17 @@
0.4.6 0.4.6
===== =====
- 16 colour support - 16 colour support (/theme colours)
- UI preferences included in themes - UI preferences included in themes
- Word wrapping (/wrap) - /wrap - Word wrapping
- Show hide time (/time) - /time - Show/hide time in main window, and configure precision
- Show or hide and customise roster panel (/roster) - /roster - Show/hide and customise roster panel
- /roster and /occupants panel size settings (% of screen width)
- /account default - Set default account for /connect
- /account remove - /account remove
- Added default account for /connect - /presence - Show/hide contact presence in titlebar
- Additional readline style shortcuts - /resource - Override resource during chat, resource display settings
- Improved chat session handling - Improved chat session handling <http://xmpp.org/rfcs/rfc6121.html#message-chat>
- Override resource during chat and resource display settings (/resource) - Lower CPU usage with dynamic input blocking timeout
- Disable terminal title by default, additonal title on exit - Keychain/keyring integration using account eval_password property
- Dynamic input blocking timeout to use less CPU - Disable term window title by default
- eval_password property on accounts for retrieving password from keyring/keychain

View File

@ -1,5 +1,5 @@
Profanity Profanity
Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
Profanity is free software: you can redistribute it and/or modify Profanity is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by

View File

@ -1,9 +1,9 @@
.TH Profanity 1 "March 2014" "Profanity XMPP client" .TH Profanity 1 "February 2015" "Profanity XMPP client"
.SH NAME .SH NAME
Profanity \- a simple console based XMPP chat client. Profanity \- a simple console based XMPP chat client.
.SH SYNOPSIS .SH SYNOPSIS
.B profanity .B profanity
[\-vhd] [\-l level] [\-vhd] [\-l level] [\-a account]
.SH DESCRIPTION .SH DESCRIPTION
.B Profanity .B Profanity
is a simple lightweight console based XMPP chat client. Its emphasis is is a simple lightweight console based XMPP chat client. Its emphasis is
@ -15,19 +15,21 @@ at:
.SH OPTIONS .SH OPTIONS
.TP .TP
.BI "\-v, \-\-version" .BI "\-v, \-\-version"
Show version information. Show version and build information.
.TP .TP
.BI "\-h, \-\-help" .BI "\-h, \-\-help"
Show help on command line arguments. Show help on command line arguments.
.TP .TP
.BI "\-a, \-\-account" .BI "\-a, \-\-account "ACCOUNT
Auto connect to an account on startup. Auto connect to an account on startup,
.I ACCOUNT
must be an existing account.
.TP .TP
.BI "\-d, \-\-disable\-tls" .BI "\-d, \-\-disable\-tls"
Disable TLS for servers that either don't support it, or claim to but do not Disable TLS for servers that either don't support it, or claim to but do not
complete the handshake. complete the handshake.
.TP .TP
.BI "\-l, \-\-log="LEVEL .BI "\-l, \-\-log "LEVEL
Set the logging level, Set the logging level,
.I LEVEL .I LEVEL
may be set to DEBUG, INFO (the default), WARN or ERROR. may be set to DEBUG, INFO (the default), WARN or ERROR.
@ -45,10 +47,10 @@ is stored in
, details on configuring Profanity can be found at <http://www.profanity.im/configuration.html>. , details on configuring Profanity can be found at <http://www.profanity.im/configuration.html>.
.PP .PP
.SH BUGS .SH BUGS
Bugs can either be reported by sending a mail directly to: Bugs can either be reported by raising an issue at the Github issue tracker:
.br .br
.PP .PP
<boothj5web@gmail.com> <https://github.com/boothj5/profanity/issues>
.br .br
.PP .PP
or to the mailing list at: or to the mailing list at:
@ -57,12 +59,14 @@ or to the mailing list at:
<https://groups.google.com/forum/#!forum/profanitydev> <https://groups.google.com/forum/#!forum/profanitydev>
.br .br
.PP .PP
or with a Github account by logging issues on the issue tracker at: or by sending a mail directly to:
.br
.PP
<boothj5web@gmail.com>
.br .br
.PP .PP
<https://github.com/boothj5/profanity>
.SH LICENSE .SH LICENSE
Copyright (C) 2012 \- 2014 James Booth <boothj5web@gmail.com>. Copyright (C) 2012 \- 2015 James Booth <boothj5web@gmail.com>.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it. This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. There is NO WARRANTY, to the extent permitted by law.

View File

@ -1,7 +1,7 @@
/* /*
* chat_session.c * chat_session.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* chat_session.h * chat_session.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* chat_state.c * chat_state.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* chat_state.h * chat_state.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* command.c * command.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* command.h * command.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* commands.c * commands.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* commands.h * commands.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* common.c * common.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* common.h * common.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* account.c * account.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* account.h * account.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* accounts.c * accounts.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* accounts.h * accounts.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* preferences.c * preferences.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *
@ -62,7 +62,7 @@
#define PREF_GROUP_ALIAS "alias" #define PREF_GROUP_ALIAS "alias"
#define PREF_GROUP_OTR "otr" #define PREF_GROUP_OTR "otr"
#define INPBLOCK_DEFAULT 20 #define INPBLOCK_DEFAULT 1000
static gchar *prefs_loc; static gchar *prefs_loc;
static GKeyFile *prefs; static GKeyFile *prefs;

View File

@ -1,7 +1,7 @@
/* /*
* preferences.h * preferences.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* theme.c * theme.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* theme.h * theme.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* contact.c * contact.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* contact.h * contact.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* jid.c * jid.c
* *
* Copyright (C) 2012 -2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* jid.h * jid.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* log.c * log.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* log.h * log.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* main.c * main.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *
@ -89,7 +89,7 @@ main(int argc, char **argv)
g_print("Profanity, version %s\n", PACKAGE_VERSION); g_print("Profanity, version %s\n", PACKAGE_VERSION);
} }
g_print("Copyright (C) 2012 - 2014 James Booth <%s>.\n", PACKAGE_BUGREPORT); g_print("Copyright (C) 2012 - 2015 James Booth <%s>.\n", PACKAGE_BUGREPORT);
g_print("License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n"); g_print("License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n");
g_print("\n"); g_print("\n");
g_print("This is free software; you are free to change and redistribute it.\n"); g_print("This is free software; you are free to change and redistribute it.\n");

View File

@ -1,7 +1,7 @@
/* /*
* muc.c * muc.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* muc.h * muc.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* otr.c * otr.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* otr.h * otr.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* otrlib.h * otrlib.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* otrlibv3.c * otrlibv3.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* otrlibv4.c * otrlibv4.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* profanity.c * profanity.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* profanity.h * profanity.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* resource.c * resource.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* resource.h * resource.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* roster_list.c * roster_list.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* roster_list.h * roster_list.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* server_events.c * server_events.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* server_events.h * server_events.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* autocomplete.c * autocomplete.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* autocomplete.h * autocomplete.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* parser.c * parser.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* parser.h * parser.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* tinyurl.c * tinyurl.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* tinyurl.h * tinyurl.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* buffer.c * buffer.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* buffer.h * buffer.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* console.c * console.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *
@ -176,7 +176,7 @@ cons_about(void)
} }
} }
win_save_vprint(console, '-', NULL, 0, 0, "", "Copyright (C) 2012 - 2014 James Booth <%s>.", PACKAGE_BUGREPORT); win_save_vprint(console, '-', NULL, 0, 0, "", "Copyright (C) 2012 - 2015 James Booth <%s>.", PACKAGE_BUGREPORT);
win_save_println(console, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>"); win_save_println(console, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>");
win_save_println(console, ""); win_save_println(console, "");
win_save_println(console, "This is free software; you are free to change and redistribute it."); win_save_println(console, "This is free software; you are free to change and redistribute it.");

View File

@ -1,7 +1,7 @@
/* /*
* core.c * core.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* inputwin.c * inputwin.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* inputwin.c * inputwin.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* notifier.c * notifier.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* occupantswin.c * occupantswin.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* rosterwin.c * rosterwin.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* statusbar.c * statusbar.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* statusbar.h * statusbar.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* titlebar.c * titlebar.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* titlebar.h * titlebar.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* ui.h * ui.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* window.c * window.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* window.h * window.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* windows.c * windows.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* windows.h * windows.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* bookmark.c * bookmark.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* bookmark.h * bookmark.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* capabilities.c * capabilities.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* capabilities.h * capabilities.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* connection.c * connection.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* connection.h * connection.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* form.c * form.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* form.h * form.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* iq.c * iq.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* iq.h * iq.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* message.c * message.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* message.h * message.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* presence.c * presence.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* presence.h * presence.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* roster.c * roster.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* roster.h * roster.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* stanza.c * stanza.c
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* stanza.h * stanza.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *

View File

@ -1,7 +1,7 @@
/* /*
* xmpp.h * xmpp.h
* *
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com> * Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
* *
* This file is part of Profanity. * This file is part of Profanity.
* *