aboutsummaryrefslogtreecommitdiff
path: root/pyinst.py
AgeCommit message (Collapse)Author
2023-02-12[pyinst] Fix for pyinstaller 5.8pukkandan
Fixes comment https://github.com/yt-dlp/yt-dlp/issues/1839#issuecomment-1427002271
2023-02-09[devscripts] Provide pyinstaller hookspukkandan
Closes #6185
2022-11-11[build] Create armv7l and aarch64 releases (#5449)MrOctopus
Closes #5436 Authored by: MrOctopus, pukkandan
2022-08-15[build] Exclude devscripts from installsLesmiscore
Closes #4667
2022-08-09[devscripts] Create `utils` and refactorpukkandan
2022-07-17[compat] Let PyInstaller detect _legacy modulepukkandan
2022-07-17Fix bug in 5200976949b93bc937a95d4453985e5e1a1160e2pukkandan
2022-07-16[build] Fix architecture suffix of executables (#4355)odo2063
Authored by: odo2063
2022-06-26[cleanup] Fix some typos (#4194)crazymoose77756
Authored by: crazymoose77756
2022-06-25[cleanup] Consistent style for file headspukkandan
2022-06-21[build] Add Linux standalone buildspukkandan
2022-06-21[update] Expose more functionality to APIpukkandan
2022-06-03[cleanup] Misc fixespukkandan
Cherry-picks from: #3498, #3947 Related: #3949, https://github.com/yt-dlp/yt-dlp/issues/1839#issuecomment-1140313836 Authored by: pukkandan, flashdagger, gamer191
2022-05-22[build, cleanup] Refactorpukkandan
Closes #3835, #3837
2022-04-28[build] Fix `--onedir` on macOSpukkandan
Closes #3584
2022-04-27[cleanup,build] Cleanup some build-related codepukkandan
Fixes an issue in 7ab56be2c7309a2d11d4ee28c71f8fb29da21ef7
2022-04-26[build] Ensure `compat._legacy` is packed in executablespukkandan
Fixes https://github.com/yt-dlp/yt-dlp/commit/9196cbfe8bb7a6eb46037735b76f21963dfdc61a#commitcomment-72192406
2022-04-12[cleanup] Sort importspukkandan
Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
2022-04-12[cleanup] Upgrade syntaxpukkandan
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
2022-03-22Use certificates from `certifi` if installed (#3115)coletdev
Fixes #3102 and most `CERTIFICATE_VERIFY_FAILED` issues Authored by: coletdjnz
2022-03-08Add brotli content-encoding support (#2433)coletdev
Authored by: coletdjnz
2021-12-19[cleanup] Fix some typos (#2033)Unit 193
Authored by: unit193
2021-10-23[cleanup] miscpukkandan
2021-10-21[build] Refactor `pyinst.py` and misc cleanuppukkandan
Closes #1361
2021-10-21[build] Build standalone MacOS packages (#1221)Ricardo
Closes #1075 Authored by: smplayer-dev
2021-10-06[docs,build] Change all pycryptodome references to pycryptodomexpukkandan
2021-10-05[build] Use pycryptodomex for PyInstaller (#1179)shirt
2021-10-04[build] Allow building with py2exe (and misc fixes)pukkandan
py2exe config is copied from youtube-dl Closes #1160
2021-09-24[build] Improve release process (#880)pukkandan
* Automate more of the release process by animelover1984, pukkandan - closes #823 * Fix sha256 by nihil-admirari - closes #385 * Bring back brew taps by nao20010128nao #865 * Provide `--onedir` zip for windows by pukkandan - Closes #1024, #661, #705 and #890 Authored by: pukkandan, animelover1984, nihil-admirari, nao20010128nao
2021-08-02Add logo and bannerpukkandan
2021-06-21[websockets] Add `WebSocketFragmentFD` (#399)pukkandan
Necessary for #392 Co-authored by: nao20010128nao, pukkandan
2021-06-07[pyinst] Show Python version in EXE metadata (#384)Nil Admirari
Authored by: nihil-admirari
2021-06-06[cleanup] Point all shebang to `python3` (#372)felix
Authored by: fstirlitz
2021-06-01[cleanup] setup.pypukkandan
2021-04-22[documentation] Fix typospukkandan
2021-02-25Completely change project name to yt-dlp (#85)Pccode66
* All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
2021-02-16#89 [pyinst.py] Exclude vcruntime140.dll from UPX (#89)Jody Bruchon
Related: https://github.com/blackjack4494/yt-dlc/pull/182 (7b400ac40b8e9ce5abaa6d0293fa9d4f017cf1f3) Authored by: jbruchon
2021-02-16#88 Implement SHA256 checking for autoupdatershirt-dev
* Also fix bugs from e5813e53f089e018606435926ae0e109c4838394 Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com> :ci skip dl
2021-02-16Fix build.yml hashing and crypto support (#87)shirt-dev
Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com>
2021-02-15Improve build/updaterpukkandan
* Fix `get_executable_path` in UNIX * Update `x86.exe` correctly * Exit immediately in windows once the update process starts so that the file handle is released correctly * Show `exe`/`zip`/`source` and 32/64bit in verbose message * Look for both `yt-dlp` and `youtube-dlc` in releases. This ensures that the updater will keep working when the binary name is changed to yt-dlp * Disable pycryptodome in win_x86 since it causes `distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 10.0 is required`
2021-02-11#75 Change optional dependency from `Crypto` to `pycryptodome` (Closes #74)shirt-dev
Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com> (shirt-dev) pycryptodome is an in-place replacement for Crypto and is more actively developed
2021-02-09[pyinst.py] Move back to root dir (Closes #63)pukkandan
2021-01-29Refactor `update-version`, `pyinst.py` and related filespukkandan
* Refactor update-version * Moved pyinst, update-version and icon into devscripts * pyinst doesn't bump version anymore * Merge pyinst and pyinst32. Usage: `pyinst.py [32|64]` * Add mutagen as requirement * Remove make_win and related files
2021-01-12Fix typos (Closes #14)pukkandan
:skip ci all Co-authored by: FelixFrog
2020-09-23datetime updated.Unknown
2020-09-23add missing future importUnknown
2020-09-23update workflow, semi fix integrated updaterUnknown