@@ -75,8 +75,9 @@ public List<Result> Query(Query query)
7575 }
7676 res . Add ( new Result
7777 {
78- Title = $ "{ playback . ArtistName } - { playback . Name } ",
79- SubTitle = "Click me to toggle play/pause" ,
78+ // TODO: Use the artwork as the icon
79+ SubTitle = $ "{ playback . ArtistName } - { playback . Name } ",
80+ Title = "Play/Pause" ,
8081 IcoPath = TmpIcon ,
8182 Action = c => PostMethod ( "playpause" )
8283 } ) ;
@@ -89,7 +90,7 @@ public List<Result> Query(Query query)
8990 } ) ;
9091 res . Add ( new Result
9192 {
92- Title = "Previous Track " ,
93+ Title = "Previous" ,
9394 SubTitle = "Previous track" ,
9495 IcoPath = CiderIcon ,
9596 Action = c => PostMethod ( "previous" )
@@ -98,7 +99,7 @@ public List<Result> Query(Query query)
9899 {
99100 res . Add ( new Result
100101 {
101- Title = "Add to Library " ,
102+ Title = "Add" ,
102103 SubTitle = "Add to library" ,
103104 IcoPath = CiderIcon ,
104105 Action = c => PostMethod ( "add-to-library" )
@@ -108,14 +109,14 @@ public List<Result> Query(Query query)
108109 {
109110 res . Add ( new Result
110111 {
111- Title = "Add to Favourites " ,
112+ Title = "Favourite " ,
112113 SubTitle = "Add to favourites" ,
113114 IcoPath = CiderIcon ,
114115 Action = c => ToggleFavourite ( 1 )
115116 } ) ;
116117 res . Add ( new Result
117118 {
118- Title = "Less Suggested " ,
119+ Title = "Dislike " ,
119120 SubTitle = "Mark as less suggested" ,
120121 IcoPath = CiderIcon ,
121122 Action = c => ToggleFavourite ( - 1 )
@@ -125,7 +126,7 @@ public List<Result> Query(Query query)
125126 {
126127 res . Add ( new Result
127128 {
128- Title = "Remove from Favourites " ,
129+ Title = "Remove" ,
129130 SubTitle = "Remove from favourites" ,
130131 IcoPath = CiderIcon ,
131132 Action = c => ToggleFavourite ( 0 )
0 commit comments