Skip to content

Commit e855609

Browse files
committed
v0.5.15
2 parents df2b56c + 5d6a4ad commit e855609

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v0.5.15
4+
Released 07 June 2016
5+
6+
Hotfix update
7+
8+
Highlights:
9+
* Fixed: Update vip mirror url to point to new server
10+
* Fixed: Update waffles url to .ch
11+
12+
The full list of commits can be found [here](https://github.com/rembo10/headphones/compare/v0.5.14...v0.5.15).
13+
314
## v0.5.14
415
Released 02 June 2016
516

data/interfaces/default/config.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ <h1 class="clearfix"><i class="fa fa-gear"></i> Settings</h1>
593593

594594
<fieldset>
595595
<div class="row checkbox left">
596-
<input id="use_waffles" type="checkbox" class="bigcheck" name="use_waffles" value="1" ${config['use_waffles']} /><label for="use_waffles"><span class="option">Waffles.fm</span></label>
596+
<input id="use_waffles" type="checkbox" class="bigcheck" name="use_waffles" value="1" ${config['use_waffles']} /><label for="use_waffles"><span class="option">Waffles.ch</span></label>
597597
</div>
598598
<div class="config">
599599
<div class="row">

headphones/deluge.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def addTorrent(link, data=None, name=None):
8181
result = {}
8282
retid = False
8383
url_what = ['https://what.cd/', 'http://what.cd/']
84-
url_waffles = ['https://waffles.fm/', 'http://waffles.fm/']
84+
url_waffles = ['https://waffles.ch/', 'http://waffles.ch/']
8585

8686
if link.lower().startswith('magnet:'):
8787
logger.debug('Deluge: Got a magnet link: %s' % _scrubber(link))

headphones/mb.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def startmb():
5151
mbpass = headphones.CONFIG.CUSTOMPASS
5252
sleepytime = int(headphones.CONFIG.CUSTOMSLEEP)
5353
elif headphones.CONFIG.MIRROR == "headphones":
54-
mbhost = "codeshy.com"
55-
mbport = 8181
54+
mbhost = "musicbrainz.codeshy.com"
55+
mbport = 80
5656
mbuser = headphones.CONFIG.HPUSER
5757
mbpass = headphones.CONFIG.HPPASS
5858
sleepytime = 0

headphones/searcher.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def get_seed_ratio(provider):
165165
seed_ratio = headphones.CONFIG.PIRATEBAY_RATIO
166166
elif provider == 'Old Pirate Bay':
167167
seed_ratio = headphones.CONFIG.OLDPIRATEBAY_RATIO
168-
elif provider == 'Waffles.fm':
168+
elif provider == 'Waffles.ch':
169169
seed_ratio = headphones.CONFIG.WAFFLES_RATIO
170170
elif provider == 'Mininova':
171171
seed_ratio = headphones.CONFIG.MININOVA_RATIO
@@ -1332,8 +1332,8 @@ def set_proxy(proxy_url):
13321332
logger.exception("Unhandled exception in the KAT parser")
13331333

13341334
if headphones.CONFIG.WAFFLES:
1335-
provider = "Waffles.fm"
1336-
providerurl = fix_url("https://www.waffles.fm/browse.php")
1335+
provider = "Waffles.ch"
1336+
providerurl = fix_url("https://www.waffles.ch/browse.php")
13371337

13381338
bitrate = None
13391339
if headphones.CONFIG.PREFERRED_QUALITY == 3 or losslessOnly:
@@ -1362,7 +1362,7 @@ def set_proxy(proxy_url):
13621362
query_items.append('bitrate:"%s"' % bitrate)
13631363

13641364
# Requesting content
1365-
logger.info('Parsing results from Waffles.fm')
1365+
logger.info('Parsing results from Waffles.ch')
13661366

13671367
params = {
13681368
"uid": headphones.CONFIG.WAFFLES_UID,
@@ -1395,7 +1395,7 @@ def set_proxy(proxy_url):
13951395
logger.info('Found %s. Size: %s', title, helpers.bytes_to_mb(size))
13961396
except Exception as e:
13971397
logger.error(
1398-
u"An error occurred while trying to parse the response from Waffles.fm: %s",
1398+
u"An error occurred while trying to parse the response from Waffles.ch: %s",
13991399
e)
14001400

14011401
# rutracker.org

0 commit comments

Comments
 (0)