You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: API.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ Unmark album as wanted / i.e. mark as skipped
66
66
67
67
### forceSearch
68
68
force search for wanted albums - not launched in a separate thread so it may take a bit to complete
69
-
### forceProcess
69
+
### forceProcess[&dir=/path/to/folder]
70
70
Force post process albums in download directory - also not launched in a separate thread
71
71
### forceActiveArtistsUpdate
72
72
force Active Artist Update - also not launched in a separate thread
@@ -108,4 +108,4 @@ See above.
108
108
Gives you a list of results from searcher.searchforalbum(). Basically runs a normal search, but rather than sorting them and downloading the best result, it dumps the data, which you can then pass on to download_specific_release(). Returns a list of dictionaries with params: title, size, url, provider & kind - all of these values must be passed back to download_specific_release
Headphones is an automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent and Blackhole.
4
7
@@ -18,8 +21,8 @@ You are free to join the Headphones support community on IRC where you can ask q
18
21
19
22
1. Analyze your log, you just might find the solution yourself!
20
23
2. You read the wiki and searched existing issues, but this is not solving your problem.
21
-
3. Post the issue with a clear title, description and the HP log and use [proper markdown syntax](https://help.github.com/articles/github-flavored-markdown) to structure your text (code/log in code blocks).
22
-
4. Close your issue when it's solved! If you found the solution yourself please comment so that others benefit from it.
24
+
3. Post the issue with a clear title, description and the HP log and use [proper markdown syntax](https://help.github.com/articles/github-flavored-markdown) to structure your text (code/log in code blocks).
25
+
4. Close your issue when it's solved! If you found the solution yourself, please comment so that others benefit from it.
23
26
24
27
**Feature requests** can be reported on the GitHub issue tracker too:
%if album['Status'] == 'Skipped' or album['Status'] == 'Ignored':
17
-
<aid="menu_link_wanted" href="#" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=False', $(this),true)" data-success="'${album['AlbumTitle']}' added to queue"><iclass="fa fa-heart"></i> Mark Album as Wanted</a>
17
+
<aid="menu_link_wanted" href="javascript:void(0)" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=False', $(this),true)" data-success="'${album['AlbumTitle']}' added to queue"><iclass="fa fa-heart"></i> Mark Album as Wanted</a>
18
18
%elif album['Status'] == 'Wanted':
19
-
<aid="menu_link_check" href="#" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=True', $(this));" data-success="Forced checking successful"><iclass="fa fa-search"></i> Force Check</a>
20
-
<aid="menu_link_skipped" href="#" onclick="doAjaxCall('unqueueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}', $(this),true);" data-success="'${album['AlbumTitle']}' marked as Skipped"><iclass="fa fa-step-forward"></i> Mark Album as Skipped</a>
19
+
<aid="menu_link_check" href="javascript:void(0)" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=True', $(this));" data-success="Forced checking successful"><iclass="fa fa-search"></i> Force Check</a>
20
+
<aid="menu_link_skipped" href="javascript:void(0)" onclick="doAjaxCall('unqueueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}', $(this),true);" data-success="'${album['AlbumTitle']}' marked as Skipped"><iclass="fa fa-step-forward"></i> Mark Album as Skipped</a>
21
21
%else:
22
-
<aid="menu_link_retry" href="#" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=False', $(this),true);" data-success="Retrying the same version of '${album['AlbumTitle']}'"><iclass="fa fa-refresh"></i> Retry Download</a>
23
-
<aid="menu_link_new" href="#" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=True', $(this),true);" data-success="Looking for a new version of '${album['AlbumTitle']}'"><iclass="fa fa-download"></i> Try New Version</a>
22
+
<aid="menu_link_retry" href="javascript:void(0)" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=False', $(this),true);" data-success="Retrying the same version of '${album['AlbumTitle']}'"><iclass="fa fa-refresh"></i> Retry Download</a>
23
+
<aid="menu_link_new" href="javascript:void(0)" onclick="doAjaxCall('queueAlbum?AlbumID=${album['AlbumID']}&ArtistID=${album['ArtistID']}&new=True', $(this),true);" data-success="Looking for a new version of '${album['AlbumTitle']}'"><iclass="fa fa-download"></i> Try New Version</a>
<divid="dialog" title="Choose an Alternate Release" style="display:none" class="configtable">
27
27
<divclass="links">
28
28
<%
29
29
alternate_albums = myDB.select("SELECT * from allalbums WHERE AlbumID=? ORDER BY ReleaseDate ASC", [album['AlbumID']])
30
30
%>
31
31
%if not alternate_albums:
32
32
<p>No alternate releases found. Try refreshing the artist (if the artist is being refreshed, please wait until it's finished)</p>
33
-
<h2><aid="refresh_artist" onclick="doAjaxCall('refreshArtist?ArtistID=${album['ArtistID']}', $(this)), true" href="#" data-success="'${album['ArtistName']}' is being refreshed">Refresh Artist</a></h2>
33
+
<h2><aid="refresh_artist" onclick="doAjaxCall('refreshArtist?ArtistID=${album['ArtistID']}', $(this)), true" href="javascript:void(0)" data-success="'${album['ArtistName']}' is being refreshed">Refresh Artist</a></h2>
0 commit comments