Thomas Hanika 3 年之前
父节点
当前提交
838d2f3639
共有 3 个文件被更改,包括 8 次插入6 次删除
  1. 7 4
      README.md
  2. 1 1
      ycast/__init__.py
  3. 0 1
      ycast/radiobrowser.py

+ 7 - 4
README.md

@@ -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).

+ 1 - 1
ycast/__init__.py

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

+ 0 - 1
ycast/radiobrowser.py

@@ -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)