diff --git a/README.md b/README.md index 12e67db..660bb2e 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,8 @@ Please make sure to compatible with [FeelUOwn](https://github.com/feeluown/FeelU - [ ] Discovering page ## Changelog +- v0.4.6 (2024-12-01) + - 修复获取专辑详细信息失败的问题 - v0.4.5 (2024-11-14) - 简化登录窗口(之前登录窗口的部分按钮功能实际上不可用) - 注:由于 https://github.com/sigma67/ytmusicapi/issues/676,当前登录功能不可用 diff --git a/pyproject.toml b/pyproject.toml index 1f7fb42..edbf925 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fuo-ytmusic" -version = "0.4.5" +version = "0.4.6" description = "feeluown Youtube Music plugin" authors = ["Bruce Zhang "] keywords = ["feeluown", "ytmusic", "youtube"] diff --git a/setup.py b/setup.py index a917e1c..ad12069 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup_kwargs = { 'name': 'fuo-ytmusic', - 'version': '0.4.5', + 'version': '0.4.6', 'description': 'feeluown Youtube Music plugin', 'long_description': "# YouTube Music plugin for FeelUOwn player\n\n## Prerequisites\n\nInstall [FeelUOwn](https://github.com/feeluown/FeelUOwn) before installing this plugin.\nSees: [Documentation](https://feeluown.readthedocs.io/)\n\n## Installation\n\n```shell\npip install fuo-ytmusic # Lastest stable release\npip install https://github.com/feeluown/feeluown-ytmusic.git # master branch\npoetry install # Local development\n```\n\n## Configuration\n\n### Proxies\n\n```python\n# In ~/.fuorc\nconfig.deffield('YTM_HTTP_PROXY', type_=str, default='', desc='YouTube Music 代理设置')\nconfig.YTM_HTTP_PROXY='127.0.0.1:10809'\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please create a new issue first to discuss what you'd like to change.\n\nPlease make sure to compatible with [FeelUOwn](https://github.com/feeluown/FeelUOwn) lastest stable release.\n\n## License\n\nThis project is licensed under the [GPLv3](LICENSE.txt).\n", 'author': 'Bruce Zhang',