├── B23Downloader ├── .gitignore ├── AboutWidget.cpp ├── AboutWidget.h ├── B23Downloader.ico ├── B23Downloader.pro ├── DownloadDialog.cpp ├── DownloadDialog.h ├── DownloadTask.cpp ├── DownloadTask.h ├── Extractor.cpp ├── Extractor.h ├── Flv.cpp ├── Flv.h ├── LoginDialog.cpp ├── LoginDialog.h ├── MainWindow.cpp ├── MainWindow.h ├── MyTabWidget.cpp ├── MyTabWidget.h ├── Network.cpp ├── Network.h ├── QrCode.cpp ├── QrCode.h ├── Settings.cpp ├── Settings.h ├── TaskTable.cpp ├── TaskTable.h ├── icons.qrc ├── icons │ ├── about.svg │ ├── akkarin.png │ ├── download.svg │ ├── folder.svg │ ├── icon-96x96.png │ ├── logout.svg │ ├── manga.svg │ ├── refresh.png │ ├── remove.svg │ └── video.svg ├── main.cpp ├── utils.cpp └── utils.h ├── LICENSE ├── README.assets ├── FlvParse-LiveSample.png ├── FlvParse-Normal.png ├── download-example-bangumi.png ├── download-example-live.png ├── download-example-manga.png └── mainwindow.png └── README.md /B23Downloader/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pro.user* -------------------------------------------------------------------------------- /B23Downloader/AboutWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/AboutWidget.cpp -------------------------------------------------------------------------------- /B23Downloader/AboutWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/AboutWidget.h -------------------------------------------------------------------------------- /B23Downloader/B23Downloader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/B23Downloader.ico -------------------------------------------------------------------------------- /B23Downloader/B23Downloader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/B23Downloader.pro -------------------------------------------------------------------------------- /B23Downloader/DownloadDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/DownloadDialog.cpp -------------------------------------------------------------------------------- /B23Downloader/DownloadDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/DownloadDialog.h -------------------------------------------------------------------------------- /B23Downloader/DownloadTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/DownloadTask.cpp -------------------------------------------------------------------------------- /B23Downloader/DownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/DownloadTask.h -------------------------------------------------------------------------------- /B23Downloader/Extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Extractor.cpp -------------------------------------------------------------------------------- /B23Downloader/Extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Extractor.h -------------------------------------------------------------------------------- /B23Downloader/Flv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Flv.cpp -------------------------------------------------------------------------------- /B23Downloader/Flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Flv.h -------------------------------------------------------------------------------- /B23Downloader/LoginDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/LoginDialog.cpp -------------------------------------------------------------------------------- /B23Downloader/LoginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/LoginDialog.h -------------------------------------------------------------------------------- /B23Downloader/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/MainWindow.cpp -------------------------------------------------------------------------------- /B23Downloader/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/MainWindow.h -------------------------------------------------------------------------------- /B23Downloader/MyTabWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/MyTabWidget.cpp -------------------------------------------------------------------------------- /B23Downloader/MyTabWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/MyTabWidget.h -------------------------------------------------------------------------------- /B23Downloader/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Network.cpp -------------------------------------------------------------------------------- /B23Downloader/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Network.h -------------------------------------------------------------------------------- /B23Downloader/QrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/QrCode.cpp -------------------------------------------------------------------------------- /B23Downloader/QrCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/QrCode.h -------------------------------------------------------------------------------- /B23Downloader/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Settings.cpp -------------------------------------------------------------------------------- /B23Downloader/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/Settings.h -------------------------------------------------------------------------------- /B23Downloader/TaskTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/TaskTable.cpp -------------------------------------------------------------------------------- /B23Downloader/TaskTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/TaskTable.h -------------------------------------------------------------------------------- /B23Downloader/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons.qrc -------------------------------------------------------------------------------- /B23Downloader/icons/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/about.svg -------------------------------------------------------------------------------- /B23Downloader/icons/akkarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/akkarin.png -------------------------------------------------------------------------------- /B23Downloader/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/download.svg -------------------------------------------------------------------------------- /B23Downloader/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/folder.svg -------------------------------------------------------------------------------- /B23Downloader/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/icon-96x96.png -------------------------------------------------------------------------------- /B23Downloader/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/logout.svg -------------------------------------------------------------------------------- /B23Downloader/icons/manga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/manga.svg -------------------------------------------------------------------------------- /B23Downloader/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/refresh.png -------------------------------------------------------------------------------- /B23Downloader/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/remove.svg -------------------------------------------------------------------------------- /B23Downloader/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/icons/video.svg -------------------------------------------------------------------------------- /B23Downloader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/main.cpp -------------------------------------------------------------------------------- /B23Downloader/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/utils.cpp -------------------------------------------------------------------------------- /B23Downloader/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/B23Downloader/utils.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.assets/FlvParse-LiveSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.assets/FlvParse-LiveSample.png -------------------------------------------------------------------------------- /README.assets/FlvParse-Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.assets/FlvParse-Normal.png -------------------------------------------------------------------------------- /README.assets/download-example-bangumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.assets/download-example-bangumi.png -------------------------------------------------------------------------------- /README.assets/download-example-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.assets/download-example-live.png -------------------------------------------------------------------------------- /README.assets/download-example-manga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.assets/download-example-manga.png -------------------------------------------------------------------------------- /README.assets/mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.assets/mainwindow.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vooidzero/B23Downloader/HEAD/README.md --------------------------------------------------------------------------------