Skip to content

Commit

Permalink
update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Aug 24, 2020
1 parent 3fcbb99 commit b3d479c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 13 deletions.
7 changes: 2 additions & 5 deletions extra/com.github.taiko2k.tauonmb.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,10 @@

<releases>

<release version="6.2.0" date="2020-08-22">
<release version="6.2.1" date="2020-08-24">
<description>
<ul>
<li>Added radio station search</li>
<li>Improved GStreamer backend</li>
<li>Removed BASS backend</li>
<li>Various bug fixes</li>
<li>Fixes and improvements to radio station search</li>
</ul>
</description>
</release>
Expand Down
3 changes: 0 additions & 3 deletions t_modules/t_gstreamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,9 +658,6 @@ def main_callback(self):

elif command == 'url':

print("gst load stream")
print(pctl.url)

# Stop if playing or paused
if self.play_state == 1 or self.play_state == 2 or self.play_state == 3:
self.playbin.set_state(Gst.State.NULL)
Expand Down
4 changes: 0 additions & 4 deletions t_modules/t_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,11 @@ def start_download(self, url):

self.abort = True

print("AB1")
while self.download_running:
time.sleep(0.01)
print("AB2")
while self.encode_running:
time.sleep(0.01)

print("Ready")

self.__init__(self.tauon)

def NiceToICY(self):
Expand Down
4 changes: 3 additions & 1 deletion tauon.py
Original file line number Diff line number Diff line change
Expand Up @@ -30833,7 +30833,9 @@ def draw_list(self):
if self.tab == 1:
radio_list = self.temp_list

self.scroll_position += mouse_wheel * -1
rect = (x, y, w, h)
if coll(rect):
self.scroll_position += mouse_wheel * -1
self.scroll_position = max(self.scroll_position, 0)
self.scroll_position = min(self.scroll_position, len(radio_list) // 2 - 7)

Expand Down

0 comments on commit b3d479c

Please sign in to comment.