- Use: artist, album, year and first (first letter in artist name)
+ Use: artist, album, year, releasetype and first (first letter in artist name)
E.g.: first/artist/album [year] = G/Girl Talk/All Day [2010]
File Format:
@@ -422,13 +420,23 @@
Path to Encoder:
+
+
Prowl Notification:
+
+
Enabled Prowl Notification
+
+
API key:
+
Notify on snatch?
+
Priority (-2,-1,0,1 or 2):
+
+
(Web Interface changes require a restart to take effect)
-
+
%def>
<%def name="javascriptIncludes()">
@@ -454,6 +462,26 @@
$("#encoderoptions").hide("fast");
}
});
+
+ if ($("#prowl").is(":checked"))
+ {
+ $("#prowloptions").show();
+ }
+ else
+ {
+ $("#prowloptions").hide();
+ }
+
+ $("#prowl").click(function(){
+ if ($("#prowl").is(":checked"))
+ {
+ $("#prowloptions").show("fast");
+ }
+ else
+ {
+ $("#prowloptions").hide("fast");
+ }
+ });
});
-%def>
\ No newline at end of file
+%def>