update readme

This commit is contained in:
Yaronzz
2022-04-02 10:44:26 +08:00
parent a969583d79
commit c61be4bbf3
3 changed files with 11 additions and 16 deletions
+8 -8
View File
@@ -40,14 +40,14 @@ jobs:
pyinstaller -F tidal_dl/__init__.py -n tidal-dl
working-directory: TIDALDL-PY
- name: Build tidal-gui-macOs
shell: bash
if: ${{ matrix.os == 'macos-latest' }}
run: |
cp -rf guiStatic.in MANIFEST.in
pyinstaller -F tidal_gui/__init__.py -w -n tidal-gui
cp -rf tidal_gui/resource dist/
working-directory: TIDALDL-PY
# - name: Build tidal-gui-macOs
# shell: bash
# if: ${{ matrix.os == 'macos-latest' }}
# run: |
# cp -rf guiStatic.in MANIFEST.in
# pyinstaller -F tidal_gui/__init__.py -w -n tidal-gui
# cp -rf tidal_gui/resource dist/
# working-directory: TIDALDL-PY
- name: Build tidal-gui
shell: bash
+1 -7
View File
@@ -28,7 +28,6 @@
<a href="https://github.com/yaronzz/Tidal-Media-Downloader-PRO/releases">Download</a> |
<a href="https://yaronzz.com/post/tidal_dl_installation/">Documentation</a> |
<a href="https://yaronzz.com/post/tidal_dl_installation_chn/">中文文档</a> |
<a href="https://t.me/Tidal_Media_Downloader">Channel</a>
<br>
</p>
@@ -37,7 +36,7 @@
| ----------------------------- | --------------------------------- | ------------------------------------------------------------ |
| tidal-dl (cli) | Windows \ Linux \ Macos \ Android | ```pip3 install tidal-dl --upgrade```<br />[Detailed Description](https://yaronzz.com/post/tidal_dl_installation/#Install) |
| tidal-gui | Windows | [GUI Repository](https://github.com/yaronzz/Tidal-Media-Downloader-PRO) |
| tidal-gui(**Cross-platform**) | Windows \ Linux \ Macos | [Testing](https://github.com/yaronzz/Tidal-Media-Downloader/actions/workflows/build.yml) |
| tidal-gui(**Cross-platform**) | Windows \ Linux \ Macos | ```pip3 install tidal-gui --upgrade``` |
### Nightly Builds
@@ -47,11 +46,6 @@
[Actions]: https://github.com/yaronzz/Tidal-Media-Downloader/actions
[Build]: https://github.com/yaronzz/Tidal-Media-Downloader/workflows/Tidal%20Media%20Downloader/badge.svg
## 📡 Telegram
- [Group](https://t.me/tidal_group) : Feed back
- [Channel](https://t.me/Tidal_Media_Downloader) : Notify the new version
## 🤖 Features
- Download album \ track \ video \ playlist \ artist-albums
+2 -1
View File
@@ -9,7 +9,7 @@
@Desc :
"""
import sys
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QApplication
from tidal_gui import theme
@@ -17,6 +17,7 @@ from tidal_gui.viewModel.mainModel import MainModel
def main():
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
qss = theme.getThemeQssContent()
app = QApplication(sys.argv)
app.setStyleSheet(qss)