commit b868bf32b6aa96f243eac124cd26fdbb68793af0
parent 1c903adf06595c7a7ccf2e247bd83bf747fc607f
Author: gearsix <gearsix@tuta.io>
Date: Thu, 2 Mar 2023 15:45:51 +0000
moved files about to tidy the repo a little
Diffstat:
11 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -114,11 +114,23 @@ To run *sya-pyqt*, you don't need to build a binary everytime, you can just run
**POSIX (Linux, MacOS, BSD)**
- pyinstaller ./sya-pyqt.py -F --windowed --add-data "./HELP.md:." --add-data "./folder.png:." --add-data "./file.png:." --add-data "./sya.png:." --add-data "$FFMPEG:." --add-data "$YT-DLP:."
+ pyinstaller ./src/sya-pyqt.py -F --windowed \
+ --add-data "./doc/HELP.md:." \
+ --add-data "./res/folder.png:." \
+ --add-data "./file.png:." \
+ --add-data "./sya.png:." \
+ --add-data "$FFMPEG:." \
+ --add-data "$YT-DLP:."
**Windows**
- pyinstaller ./sya-pyqt.py -F --windowed --add-data ".\HELP.md;." --add-data ".\folder.png;." --add-data ".\file.png;." --add-data ".\sya.png;." --add-data "$FFMPEG;." --add-data "$YT-DLP;."
+ pyinstaller ./sya-pyqt.py -F --windowed
+ --add-data ".\HELP.md;." \
+ --add-data ".\folder.png;." \
+ --add-data ".\file.png;." \
+ --add-data ".\sya.png;." \
+ --add-data "$FFMPEG;." \
+ --add-data "$YT-DLP;."
- Make sure you have a *yt-dlp* binary available, the filepath of this is referred to as *$YT-DLP*.
- Make sure you have a *ffmpeg* binary available, the filepath of this is referred to as *$FFMPEG*.
diff --git a/BUGS.md b/doc/BUGS.md
diff --git a/HELP.md b/doc/HELP.md
diff --git a/LICENSE.txt b/doc/LICENSE.txt
diff --git a/TODO.md b/doc/TODO.md
diff --git a/file.png b/res/file.png
Binary files differ.
diff --git a/folder.png b/res/folder.png
Binary files differ.
diff --git a/sya.png b/res/sya.png
Binary files differ.
diff --git a/setup.py b/setup.py
@@ -21,5 +21,5 @@ setuptools.setup(
'Programming Language :: Python',
'Operating System :: OS Independent',
],
- scripts=['sya.py', 'sya-pyqt.py']
+ scripts=['./src/sya.py', './src/sya-pyqt.py']
)
diff --git a/sya-pyqt.py b/src/sya-pyqt.py
diff --git a/sya.py b/src/sya.py