Skip to content

Commit 98cd090

Browse files
author
LiuLang
committed
Update contributors list
1 parent 4eb937d commit 98cd090

39 files changed

+64
-41
lines changed

bcloud-gui

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
# Copyright (C) 2014 LiuLang <[email protected]>
3+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
44
# Use of this source code is governed by GPLv3 license that can be found
55
# in http://www.gnu.org/licenses/gpl-3.0.html
66

bcloud/App.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/BTBrowserDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/CategoryPage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/CloudPage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/Config.py

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

@@ -36,13 +36,22 @@
3636
APPNAME = 'BCloud'
3737
VERSION = bcloud.__version__
3838
HOMEPAGE = 'https://github.com/LiuLang/bcloud'
39-
# 这里只列出了提交代码在三次以上的开发者, 完整的开发者信息可以在
40-
# https://github.com/LiuLang/bcloud/pulls 查看
39+
# https://github.com/LiuLang/bcloud/pulls
4140
AUTHORS = [
42-
'LiuLang <[email protected]>',
41+
'Alexzhang <[email protected]>',
42+
4343
'CzBiX <[email protected]>',
44+
'HybridGlucose <[email protected]>',
45+
'Iridium Cao <[email protected]>',
46+
'Khalid Hsu <[email protected]>',
47+
'latyas <[email protected]>',
48+
'Libertas <[email protected]>',
49+
'LiuLang <[email protected]>',
50+
'Zhenbo Li <[email protected]>',
51+
'slawdan <[email protected]>',
52+
'Zihao Wang <[email protected]>',
4453
]
45-
COPYRIGHT = 'Copyright (c) 2014 LiuLang'
54+
COPYRIGHT = 'Copyright (c) 2014-2015 LiuLang'
4655
DESCRIPTION = _('Baidu Pan client for GNU/Linux desktop users.')
4756

4857
CACHE_DIR = os.path.join(HOME_DIR, '.cache', NAME)

bcloud/DownloadPage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/Downloader.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/ErrorMsg.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/FileWatcher.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
# Copyright (C) 2015 Alexzhang <[email protected]>
3+
24
import os
35
from threading import Thread, Lock
46
from time import time, sleep

bcloud/FolderBrowserDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/HomePage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/IconWindow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/MimeProvider.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/NewFolderDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/PreferencesDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/PropertiesDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/RenameDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/RequestCookie.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2013-2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/SharePage.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/Shutdown.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
3+
# Use of this source code is governed by GPLv3 license that can be found
4+
# in http://www.gnu.org/licenses/gpl-3.0.html
25

36
import os
47

bcloud/SigninDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/TrashPage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/UploadPage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/Uploader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/VCodeDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/Widgets.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/auth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2013-2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2013-2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/decoder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/encoder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2013-2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/gutil.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/hasher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/log.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

bcloud/net.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2013-2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/pcs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Copyright (C) 2013-2014 LiuLang <[email protected]>
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
33
# Use of this source code is governed by GPLv3 license that can be found
44
# in http://www.gnu.org/licenses/gpl-3.0.html
55

bcloud/util.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Copyright (C) 2014 LiuLang <[email protected]>
1+
2+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
23
# Use of this source code is governed by GPLv3 license that can be found
34
# in http://www.gnu.org/licenses/gpl-3.0.html
45

tools/i18n.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
# Copyright (C) 2014 LiuLang <[email protected]>
3+
# Copyright (C) 2014-2015 LiuLang <[email protected]>
44

55
# Use of this source code is governed by GPLv3 license that can be found
66
# in the LICENSE file.

0 commit comments

Comments
 (0)