Update copyright dates
This commit is contained in:
		
							parent
							
								
									0cf8a9befc
								
							
						
					
					
						commit
						da74afdbdc
					
				
					 15 changed files with 21 additions and 21 deletions
				
			
		|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # about.py - about dialog box | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # buffer.py - management of WeeChat buffers/nicklist | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # chat.py - chat area | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # config.py - configuration for QWeeChat (~/.qweechat/qweechat.conf) | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # connection.py - connection window | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # debug.py - debug window | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # input.py - input line for chat and debug window | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # network.py - I/O with WeeChat/relay | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # qweechat.py - WeeChat remote GUI using Qt toolkit | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  | @ -26,7 +26,7 @@ | |||
| # | ||||
| # History: | ||||
| # | ||||
| # 2011-05-27, Sebastien Helleu <flashcode@flashtux.org>: | ||||
| # 2011-05-27, Sébastien Helleu <flashcode@flashtux.org>: | ||||
| #     start dev | ||||
| # | ||||
| 
 | ||||
|  | @ -46,7 +46,7 @@ NAME = 'QWeeChat' | |||
| VERSION = '0.0.1-dev' | ||||
| AUTHOR = 'Sébastien Helleu' | ||||
| AUTHOR_MAIL= 'flashcode@flashtux.org' | ||||
| WEECHAT_SITE = 'http://www.weechat.org/' | ||||
| WEECHAT_SITE = 'http://weechat.org/' | ||||
| 
 | ||||
| # number of lines in buffer for debug window | ||||
| DEBUG_NUM_LINES = 50 | ||||
|  | @ -196,7 +196,7 @@ class MainWindow(QtGui.QMainWindow): | |||
| 
 | ||||
|     def open_about_dialog(self): | ||||
|         messages = ['<b>%s</b> %s' % (NAME, VERSION), | ||||
|                     '© 2011-2013 %s <<a href="mailto:%s">%s</a>>' % (AUTHOR, AUTHOR_MAIL, AUTHOR_MAIL), | ||||
|                     '© 2011-2014 %s <<a href="mailto:%s">%s</a>>' % (AUTHOR, AUTHOR_MAIL, AUTHOR_MAIL), | ||||
|                     '', | ||||
|                     'Running with %s' % ('PySide' if qt_compat.uses_pyside else 'PyQt4'), | ||||
|                     '', | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # color.py - remove/replace colors in WeeChat strings | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # protocol.py - decode binary messages received from WeeChat/relay | ||||
| # | ||||
| # Copyright (C) 2011-2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2011-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  | @ -23,11 +23,11 @@ | |||
| 
 | ||||
| # | ||||
| # For info about protocol and format of messages, please read document | ||||
| # "WeeChat Relay Protocol", available at:  http://www.weechat.org/doc/ | ||||
| # "WeeChat Relay Protocol", available at:  http://weechat.org/doc/ | ||||
| # | ||||
| # History: | ||||
| # | ||||
| # 2011-11-23, Sebastien Helleu <flashcode@flashtux.org>: | ||||
| # 2011-11-23, Sébastien Helleu <flashcode@flashtux.org>: | ||||
| #     start dev | ||||
| # | ||||
| 
 | ||||
|  |  | |||
|  | @ -3,7 +3,7 @@ | |||
| # | ||||
| # testproto.py - command-line program for testing protocol WeeChat/relay | ||||
| # | ||||
| # Copyright (C) 2013 Sebastien Helleu <flashcode@flashtux.org> | ||||
| # Copyright (C) 2013-2014 Sébastien Helleu <flashcode@flashtux.org> | ||||
| # | ||||
| # This file is part of QWeeChat, a Qt remote GUI for WeeChat. | ||||
| # | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Sebastien Helleu
						Sebastien Helleu