Skip to content

Commit

Permalink
- version 0.9.3.11
Browse files Browse the repository at this point in the history
- recovering from regression after addressing #249
  • Loading branch information
s-n-g committed Aug 30, 2024
1 parent 52b0a5b commit d70d138
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-08-30 s-n-g
* version 0.9.3.11 (BUG FIX)
* recovering from regression after addressing #249
* updating docs

2024-08-30 s-n-g
* version 0.9.3.10
* do not enable xdg compliant if user_config_dir is specified
Expand Down
5 changes: 5 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,11 @@ <h2 id="requirements">Requirements <span style="padding-left: 10px;"><sup style=
<h2 id="changelog">Changelog <span style="padding-left: 10px;"><sup style="font-size: 50%"><a href="#" title="Go to top of the page">Top</a></sup></span></h2>
<pre style="height: 200px;">

2024-08-30 s-n-g
* version 0.9.3.11 (BUG FIX)
* recovering from regression after addressing #249
* updating docs

2024-08-30 s-n-g
* version 0.9.3.10
* do not enable xdg compliant if user_config_dir is specified
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyradio"
version = "0.9.3.10"
version = "0.9.3.11"
authors = [
{ name="Ben Dowling", email="ben.m.dowling@gmail.com" },
{ name="Spiros Georgaras", email="sng@hellug.gr" },
Expand Down
2 changes: 1 addition & 1 deletion pyradio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
" pyradio -- Console radio player. "

version_info = (0, 9, 3, 10)
version_info = (0, 9, 3, 11)

# Set it to True if new stations have been
# added to the package's stations.csv
Expand Down
2 changes: 1 addition & 1 deletion pyradio/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
''' This is PyRadio version this
install.py was released for
'''
PyRadioInstallPyReleaseVersion = '0.9.3.10'
PyRadioInstallPyReleaseVersion = '0.9.3.11'

import locale
locale.setlocale(locale.LC_ALL, "")
Expand Down
9 changes: 9 additions & 0 deletions pyradio/radio.py
Original file line number Diff line number Diff line change
Expand Up @@ -6036,6 +6036,15 @@ def keypress(self, char):
# # logger.error('\n\nbackup params\n{}\n\n'.format(self._cnf.backup_player_params))
# if char == curses.KEY_RESIZE:
# logger.error('\n\nRESIZE\n\n')
if char in (curses.KEY_RESIZE, ):
self._i_am_resizing = True
self._normal_mode_resize()
if not self._limited_width_mode:
if not self._limited_height_mode:
self._do_display_notify()
self._i_am_resizing = False
return

self._curses_key_resize = char == curses.KEY_RESIZE

if self._system_asked_to_terminate:
Expand Down
2 changes: 1 addition & 1 deletion pyradio/win.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
https://sourceforge.net/projects/mpv-player-windows/files/latest/download
'''
zurl = [
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20240602-git-df166c1.7z/download',
'https://sourceforge.com/projects/mpv-player-windows/files/64bit/mpv-x86_64-20240825-git-cb4fdb5.7z/download',
'https://sourceforge.net/projects/mplayerwin/files/MPlayer-MEncoder/r38151/mplayer-svn-38151-x86_64.7z/download'
]

Expand Down

0 comments on commit d70d138

Please sign in to comment.