This commit is contained in:
Thomas Hanika 2022-01-28 12:49:38 +01:00
parent 2179c48d5a
commit 838d2f3639
3 changed files with 8 additions and 6 deletions

View file

@ -1,14 +1,17 @@
<img src="https://image.ibb.co/iBY6hq/yamaha.png" width="600">
# YCast
# YCast (advanced)
[![PyPI latest version](https://img.shields.io/pypi/v/ycast?color=success)](https://pypi.org/project/ycast/) [![GitHub latest version](https://img.shields.io/github/v/release/milaq/YCast?color=success&label=github&sort=semver)](https://github.com/milaq/YCast/releases) [![Python version](https://img.shields.io/pypi/pyversions/ycast)](https://www.python.org/downloads/) [![License](https://img.shields.io/pypi/l/ycast)](https://www.gnu.org/licenses/gpl-3.0.en.html) [![GitHub issues](https://img.shields.io/github/issues/milaq/ycast)](https://github.com/milaq/YCast/issues)
[Get it via PyPI](https://pypi.org/project/ycast/)
[Download from GitHub](https://github.com/THanika/YCast/releases)
[Download from GitHub](https://github.com/milaq/YCast/releases)
[Issue tracker](https://github.com/THanika/YCast/issues)
[Issue tracker](https://github.com/milaq/YCast/issues)
### The advanced feature:
* icons in my_stations stations.yml
* recently visited ./ycast/recently.yml
* global filter by ./ycast/filter.yml
YCast is a self hosted replacement for the vTuner internet radio service which many AVRs use.
It emulates a vTuner backend to provide your AVR with the necessary information to play self defined categorized internet radio stations and listen to Radio stations listed in the [Community Radio Browser index](http://www.radio-browser.info).

View file

@ -1 +1 @@
__version__ = '1.1.0'
__version__ = '1.2.0'

View file

@ -78,7 +78,6 @@ def get_station_by_id(vtune_id):
if station_cache:
station = station_cache[vtune_id]
if station:
logging.debug('verify %s:%s', station.stationuuid, uid)
return station
# no item in cache, do request
station_json = request('stations/byuuid?uuids=' + uid)