diff --git a/data/interfaces/default/config.html b/data/interfaces/default/config.html
index 0d46458e..31d0f4b4 100644
--- a/data/interfaces/default/config.html
+++ b/data/interfaces/default/config.html
@@ -260,7 +260,7 @@
Re-Encoding Options:
- Re-encode Postprocessed Albuns
+ Re-encode downloads during postprocessing
Note: this option requires the lame or ffmpeg encoder
<%
@@ -275,66 +275,30 @@
-
- <%
- if config['encoderoutputformat'] == 'ogg':
- oggselect = 'selected="selected"'
- mp3select = ''
- m4aselect = ''
- elif config['encoderoutputformat'] == 'm4a':
- oggselect = ''
- m4aselect = 'selected="selected"'
- mp3select = ''
- else:
- oggselect = ''
- m4aselect = ''
- mp3select = 'selected="selected"'
- %>
+
Format:
- <%
- if config["bitrate"] == 64:
- bitrate64select = 'selected="selected"'
- bitrate128select = ''
- bitrate192select = ''
- bitrate256select = ''
- bitrate320select = ''
- elif config["bitrate"] == 128:
- bitrate64select = ''
- bitrate128select = 'selected="selected"'
- bitrate192select = ''
- bitrate256select = ''
- bitrate320select = ''
- elif config["bitrate"] == 192:
- bitrate64select = ''
- bitrate128select = ''
- bitrate192select = 'selected="selected"'
- bitrate256select = ''
- bitrate320select = ''
- elif config["bitrate"] == 256:
- bitrate64select = ''
- bitrate128select = ''
- bitrate192select = ''
- bitrate256select = 'selected="selected"'
- bitrate320select = ''
- else:
- bitrate64select = ''
- bitrate128select = ''
- bitrate192select = ''
- bitrate256select = ''
- bitrate320select = 'selected="selected"'
- %>
Bitrate:
<%
diff --git a/headphones/__init__.py b/headphones/__init__.py
index e46f8c0e..30b6917f 100755
--- a/headphones/__init__.py
+++ b/headphones/__init__.py
@@ -308,7 +308,10 @@ def initialize():
CURRENT_VERSION = versioncheck.getVersion()
# Check for new versions
- LATEST_VERSION = versioncheck.checkGithub()
+ try:
+ LATEST_VERSION = versioncheck.checkGithub()
+ except:
+ LATEST_VERSION = CURRENT_VERSION
__INITIALIZED__ = True
return True
diff --git a/headphones/version.py b/headphones/version.py
index b6c5af53..0dda129e 100644
--- a/headphones/version.py
+++ b/headphones/version.py
@@ -1 +1 @@
-HEADPHONES_VERSION = "develop"
\ No newline at end of file
+HEADPHONES_VERSION = "master"
\ No newline at end of file
|