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
[FieldDefinition(0,Label="Last.fm Username",HelpText="Your Last.fm username to generate personalized recommendations",Placeholder="EnterLastFMUsername")]
52
+
publicstringUserId{get;set;}=string.Empty;
53
+
54
+
[FieldDefinition(1,Label="Refresh Interval",Type=FieldType.Textbox,HelpText="The interval to refresh the import list. Fractional values are allowed (e.g., 1.5 for 1 day and 12 hours).",Unit="days",Advanced=true,Placeholder="7")]
55
+
publicdoubleRefreshInterval{get;set;}=7;
56
+
57
+
[FieldDefinition(2,Label="Recommendation Source",Type=FieldType.Select,SelectOptions=typeof(LastFmRecommendMethodList),HelpText="Type of listening data to use for recommendations (Top Artists, Albums or Tracks)")]
58
+
publicintMethod{get;set;}
59
+
60
+
[FieldDefinition(3,Label="Time Range",Type=FieldType.Select,SelectOptions=typeof(LastFmUserTimePeriod),HelpText="Time period to analyze for generating recommendations (Last week/3 months/6 months/All time)")]
61
+
publicintPeriod{get;set;}
62
+
63
+
[FieldDefinition(4,Label="Fetch Limit",Type=FieldType.Number,HelpText="Number of results to pull from the top list on Last.fm")]
64
+
publicintFetchCount{get;set;}=25;
65
+
66
+
[FieldDefinition(5,Label="Import Limit",Type=FieldType.Number,HelpText="Number of recommendations per top list result to actually import to your library")]
Copy file name to clipboardExpand all lines: Tubifarry/Indexers/Youtube/YoutubeIndexerSettings.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ public class YoutubeIndexerSettings : IIndexerSettings
35
35
[FieldDefinition(1,Label="Cookie Path",Type=FieldType.FilePath,Hidden=HiddenType.Visible,Placeholder="/path/to/cookies.txt",HelpText="Specify the path to the Spotify cookies file. This is optional but required for accessing restricted content.",Advanced=true)]
36
36
publicstringCookiePath{get;set;}=string.Empty;
37
37
38
-
[FieldDefinition(2,Label="PoToken)",Type=FieldType.Textbox,HelpText="A unique token to verify the origin of the request.",Advanced=true)]
38
+
[FieldDefinition(2,Label="PoToken",Type=FieldType.Textbox,HelpText="A unique token to verify the origin of the request.",Advanced=true)]
0 commit comments