diff options
-rw-r--r-- | module/download_thread.py | 2 | ||||
-rw-r--r-- | module/file_list.py | 2 | ||||
-rw-r--r-- | module/gui/connector.py | 2 | ||||
-rw-r--r-- | module/thread_list.py | 2 | ||||
-rw-r--r-- | module/web/settings.py | 4 | ||||
-rwxr-xr-x | pyLoadCore.py | 6 | ||||
-rwxr-xr-x | pyLoadGui.py | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/module/download_thread.py b/module/download_thread.py index 7c899b185..1cc509bca 100644 --- a/module/download_thread.py +++ b/module/download_thread.py @@ -18,7 +18,7 @@ @author: mkaay @author: spoob @author: sebnapi - @version: v0.3 + @version: v0.3.1 """ import threading diff --git a/module/file_list.py b/module/file_list.py index d251868b9..84f875cad 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -17,7 +17,7 @@ @author: mkaay @author: RaNaN - @version: v0.3 + @version: v0.3.1 @list-version: v4 """ diff --git a/module/gui/connector.py b/module/gui/connector.py index 7b872a0a9..9ca164625 100644 --- a/module/gui/connector.py +++ b/module/gui/connector.py @@ -16,7 +16,7 @@ @author: mkaay """ -SERVER_VERSION = "0.3" +SERVER_VERSION = "0.3.1" from time import sleep from uuid import uuid4 as uuid diff --git a/module/thread_list.py b/module/thread_list.py index a50d73aaf..d8a05a41d 100644 --- a/module/thread_list.py +++ b/module/thread_list.py @@ -19,7 +19,7 @@ @author: spoob @author: sebnapi @author: RaNaN - @version: v0.3 + @version: v0.3.1 """ from __future__ import with_statement diff --git a/module/web/settings.py b/module/web/settings.py index 0b9a9e460..11224faf4 100644 --- a/module/web/settings.py +++ b/module/web/settings.py @@ -8,7 +8,7 @@ import os.path import sys
import xmlrpclib
-SERVER_VERSION = "0.3"
+SERVER_VERSION = "0.3.1"
PROJECT_DIR = os.path.dirname(__file__)
@@ -134,4 +134,4 @@ INSTALLED_APPS = ( AUTH_PROFILE_MODULE = 'pyload.UserProfile'
-LOGIN_URL = '/login'
\ No newline at end of file +LOGIN_URL = '/login' diff --git a/pyLoadCore.py b/pyLoadCore.py index c0a3697c5..483750152 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -19,10 +19,10 @@ @author: sebnapi
@author: RaNaN
@author: mkaay
- @version: v0.3
+ @version: v0.3.1
"""
-CURRENT_VERSION = '0.3'
+CURRENT_VERSION = '0.3.1'
from getopt import getopt
import gettext
from glob import glob
@@ -76,7 +76,7 @@ class Core(object): exit()
elif option == "-c":
remove(join("module", "links.pkl"))
- print "Removed Linkliste"
+ print "Removed Linklist"
elif option == "-l":
self.arg_links.append(argument)
print "Added %s" % argument
diff --git a/pyLoadGui.py b/pyLoadGui.py index b79de56eb..c0fc98c5b 100755 --- a/pyLoadGui.py +++ b/pyLoadGui.py @@ -16,7 +16,7 @@ along with this program; if not, see <http://www.gnu.org/licenses/>. @author: mkaay - @version: v0.3 + @version: v0.3.1 """ import sys |