├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── binding.gyp ├── electron-nan.md ├── karma.conf.js ├── native ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── build.bat ├── common │ ├── common.c │ ├── common.h │ ├── err_msg.h │ ├── platform.c │ ├── progress.c │ ├── progress.h │ ├── types_def.h │ ├── url.c │ └── url.h ├── dloader.sh ├── serial │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── changes.txt │ ├── examples │ │ └── serial_example.cc │ ├── include │ │ └── serial │ │ │ ├── impl │ │ │ ├── unix.h │ │ │ └── win.h │ │ │ ├── serial.h │ │ │ └── v8stdint.h │ ├── package.xml │ ├── serial.sublime-project │ ├── src │ │ ├── impl │ │ │ ├── list_ports │ │ │ │ ├── list_ports_linux.cc │ │ │ │ ├── list_ports_osx.cc │ │ │ │ └── list_ports_win.cc │ │ │ ├── unix.cc │ │ │ └── win.cc │ │ └── serial.cc │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── proof_of_concepts │ │ │ ├── mdc2250.cc │ │ │ ├── python_serial_test.py │ │ │ └── tokenizer.cc │ │ ├── unit │ │ │ └── unix_timer_tests.cc │ │ └── unix_serial_tests.cc │ └── visual_studio │ │ ├── serial │ │ ├── serial.vcxproj │ │ └── serial.vcxproj.filters │ │ ├── test_serial │ │ ├── test_serial.vcxproj │ │ └── test_serial.vcxproj.filters │ │ └── visual_studio.sln ├── streams │ ├── stream.h │ ├── stream_serial.cpp │ ├── stream_serial.h │ ├── stream_tcp.c │ └── stream_tcp.h ├── tftp │ ├── README.md │ ├── client.c │ ├── client.h │ ├── server.c │ ├── server_lib.c │ ├── server_lib.h │ ├── tftpx.h │ ├── work_thread.c │ └── work_thread.h ├── tools │ ├── client.c │ ├── dloader.c │ ├── list_serial.cpp │ ├── read_serial.cpp │ ├── send_file.h │ └── server.c ├── transferers │ ├── transferer.h │ ├── transferer_factory.c │ ├── transferer_factory.h │ ├── transferer_serial.cpp │ ├── transferer_serial.h │ ├── transferer_tcp.c │ ├── transferer_tcp.h │ ├── transferer_tftp_server.c │ └── transferer_tftp_server.h ├── v8ext │ └── addon.cc └── ymodem │ ├── README.md │ ├── fymodem.c │ └── fymodem.h ├── package.json ├── release.bat ├── release.sh ├── src ├── README.md ├── app.ts ├── index.ts ├── locales.ts ├── models │ └── main-model.ts ├── view-models │ ├── command-choose-file.ts │ ├── command-show-settings.ts │ ├── command-start-download.ts │ └── main-view-model.ts └── views │ └── main-window.ts ├── tests └── assert.js ├── tsconfig.json ├── typings.json ├── typings ├── globals │ ├── es6-promise │ │ ├── index.d.ts │ │ └── typings.json │ ├── node │ │ ├── index.d.ts │ │ └── typings.json │ └── whatwg-fetch │ │ ├── index.d.ts │ │ └── typings.json └── index.d.ts ├── webpack.config.js ├── winPackager-fixed.js └── www ├── app-all.js ├── assets ├── icons │ ├── x1 │ │ ├── apple.png │ │ ├── close.normal.png │ │ ├── close.over.png │ │ ├── favor.current.png │ │ ├── favor.normal.png │ │ ├── home.current.png │ │ ├── home.normal.png │ │ ├── logo.png │ │ ├── new.png │ │ ├── open.png │ │ └── save.png │ └── x2 │ │ ├── apple.png │ │ ├── close.normal.png │ │ ├── close.over.png │ │ ├── favor.current.png │ │ ├── favor.normal.png │ │ ├── home.current.png │ │ ├── home.normal.png │ │ ├── logo.png │ │ ├── new.png │ │ ├── open.png │ │ └── save.png └── theme │ └── default │ ├── demo.js │ ├── images │ ├── x1 │ │ ├── alert.png │ │ ├── arrow-down.png │ │ ├── arrow-up.png │ │ ├── check-button-checked.png │ │ ├── check-button-unchecked.png │ │ ├── close.normal.png │ │ ├── close.over.png │ │ ├── collapse.png │ │ ├── combo-box-item-current.png │ │ ├── combo-box.png │ │ ├── expand.png │ │ ├── info.png │ │ ├── leaf.png │ │ ├── menu-item-checked.png │ │ ├── menu-item-more.png │ │ ├── question.png │ │ ├── radio-button-checked.png │ │ └── radio-button-unchecked.png │ └── x2 │ │ ├── alert.png │ │ ├── arrow-down.png │ │ ├── arrow-up.png │ │ ├── check-button-checked.png │ │ ├── check-button-unchecked.png │ │ ├── close.normal.png │ │ ├── close.over.png │ │ ├── collapse.png │ │ ├── combo-box-item-current.png │ │ ├── combo-box.png │ │ ├── expand.png │ │ ├── info.png │ │ ├── leaf.png │ │ ├── menu-item-checked.png │ │ ├── menu-item-more.png │ │ ├── question.png │ │ ├── radio-button-checked.png │ │ └── radio-button-unchecked.png │ └── theme.js ├── icon.png ├── index.html ├── main.js └── native.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/binding.gyp -------------------------------------------------------------------------------- /electron-nan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/electron-nan.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/karma.conf.js -------------------------------------------------------------------------------- /native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/.gitignore -------------------------------------------------------------------------------- /native/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/CMakeLists.txt -------------------------------------------------------------------------------- /native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/Makefile -------------------------------------------------------------------------------- /native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/README.md -------------------------------------------------------------------------------- /native/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/build.bat -------------------------------------------------------------------------------- /native/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/common.c -------------------------------------------------------------------------------- /native/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/common.h -------------------------------------------------------------------------------- /native/common/err_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/err_msg.h -------------------------------------------------------------------------------- /native/common/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/platform.c -------------------------------------------------------------------------------- /native/common/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/progress.c -------------------------------------------------------------------------------- /native/common/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/progress.h -------------------------------------------------------------------------------- /native/common/types_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/types_def.h -------------------------------------------------------------------------------- /native/common/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/url.c -------------------------------------------------------------------------------- /native/common/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/common/url.h -------------------------------------------------------------------------------- /native/dloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/dloader.sh -------------------------------------------------------------------------------- /native/serial/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/CHANGELOG.rst -------------------------------------------------------------------------------- /native/serial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/CMakeLists.txt -------------------------------------------------------------------------------- /native/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/Makefile -------------------------------------------------------------------------------- /native/serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/README.md -------------------------------------------------------------------------------- /native/serial/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/changes.txt -------------------------------------------------------------------------------- /native/serial/examples/serial_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/examples/serial_example.cc -------------------------------------------------------------------------------- /native/serial/include/serial/impl/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/include/serial/impl/unix.h -------------------------------------------------------------------------------- /native/serial/include/serial/impl/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/include/serial/impl/win.h -------------------------------------------------------------------------------- /native/serial/include/serial/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/include/serial/serial.h -------------------------------------------------------------------------------- /native/serial/include/serial/v8stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/include/serial/v8stdint.h -------------------------------------------------------------------------------- /native/serial/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/package.xml -------------------------------------------------------------------------------- /native/serial/serial.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/serial.sublime-project -------------------------------------------------------------------------------- /native/serial/src/impl/list_ports/list_ports_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/src/impl/list_ports/list_ports_linux.cc -------------------------------------------------------------------------------- /native/serial/src/impl/list_ports/list_ports_osx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/src/impl/list_ports/list_ports_osx.cc -------------------------------------------------------------------------------- /native/serial/src/impl/list_ports/list_ports_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/src/impl/list_ports/list_ports_win.cc -------------------------------------------------------------------------------- /native/serial/src/impl/unix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/src/impl/unix.cc -------------------------------------------------------------------------------- /native/serial/src/impl/win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/src/impl/win.cc -------------------------------------------------------------------------------- /native/serial/src/serial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/src/serial.cc -------------------------------------------------------------------------------- /native/serial/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/tests/CMakeLists.txt -------------------------------------------------------------------------------- /native/serial/tests/proof_of_concepts/mdc2250.cc: -------------------------------------------------------------------------------- 1 | #include "" -------------------------------------------------------------------------------- /native/serial/tests/proof_of_concepts/python_serial_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/tests/proof_of_concepts/python_serial_test.py -------------------------------------------------------------------------------- /native/serial/tests/proof_of_concepts/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/tests/proof_of_concepts/tokenizer.cc -------------------------------------------------------------------------------- /native/serial/tests/unit/unix_timer_tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/tests/unit/unix_timer_tests.cc -------------------------------------------------------------------------------- /native/serial/tests/unix_serial_tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/tests/unix_serial_tests.cc -------------------------------------------------------------------------------- /native/serial/visual_studio/serial/serial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/visual_studio/serial/serial.vcxproj -------------------------------------------------------------------------------- /native/serial/visual_studio/serial/serial.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/visual_studio/serial/serial.vcxproj.filters -------------------------------------------------------------------------------- /native/serial/visual_studio/test_serial/test_serial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/visual_studio/test_serial/test_serial.vcxproj -------------------------------------------------------------------------------- /native/serial/visual_studio/test_serial/test_serial.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/visual_studio/test_serial/test_serial.vcxproj.filters -------------------------------------------------------------------------------- /native/serial/visual_studio/visual_studio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/serial/visual_studio/visual_studio.sln -------------------------------------------------------------------------------- /native/streams/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/streams/stream.h -------------------------------------------------------------------------------- /native/streams/stream_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/streams/stream_serial.cpp -------------------------------------------------------------------------------- /native/streams/stream_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/streams/stream_serial.h -------------------------------------------------------------------------------- /native/streams/stream_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/streams/stream_tcp.c -------------------------------------------------------------------------------- /native/streams/stream_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/streams/stream_tcp.h -------------------------------------------------------------------------------- /native/tftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/README.md -------------------------------------------------------------------------------- /native/tftp/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/client.c -------------------------------------------------------------------------------- /native/tftp/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/client.h -------------------------------------------------------------------------------- /native/tftp/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/server.c -------------------------------------------------------------------------------- /native/tftp/server_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/server_lib.c -------------------------------------------------------------------------------- /native/tftp/server_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/server_lib.h -------------------------------------------------------------------------------- /native/tftp/tftpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/tftpx.h -------------------------------------------------------------------------------- /native/tftp/work_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/work_thread.c -------------------------------------------------------------------------------- /native/tftp/work_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tftp/work_thread.h -------------------------------------------------------------------------------- /native/tools/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tools/client.c -------------------------------------------------------------------------------- /native/tools/dloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tools/dloader.c -------------------------------------------------------------------------------- /native/tools/list_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tools/list_serial.cpp -------------------------------------------------------------------------------- /native/tools/read_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tools/read_serial.cpp -------------------------------------------------------------------------------- /native/tools/send_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tools/send_file.h -------------------------------------------------------------------------------- /native/tools/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/tools/server.c -------------------------------------------------------------------------------- /native/transferers/transferer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer.h -------------------------------------------------------------------------------- /native/transferers/transferer_factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_factory.c -------------------------------------------------------------------------------- /native/transferers/transferer_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_factory.h -------------------------------------------------------------------------------- /native/transferers/transferer_serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_serial.cpp -------------------------------------------------------------------------------- /native/transferers/transferer_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_serial.h -------------------------------------------------------------------------------- /native/transferers/transferer_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_tcp.c -------------------------------------------------------------------------------- /native/transferers/transferer_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_tcp.h -------------------------------------------------------------------------------- /native/transferers/transferer_tftp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_tftp_server.c -------------------------------------------------------------------------------- /native/transferers/transferer_tftp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/transferers/transferer_tftp_server.h -------------------------------------------------------------------------------- /native/v8ext/addon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/v8ext/addon.cc -------------------------------------------------------------------------------- /native/ymodem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/ymodem/README.md -------------------------------------------------------------------------------- /native/ymodem/fymodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/ymodem/fymodem.c -------------------------------------------------------------------------------- /native/ymodem/fymodem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/native/ymodem/fymodem.h -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/package.json -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/release.bat -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/release.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/README.md -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/locales.ts -------------------------------------------------------------------------------- /src/models/main-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/models/main-model.ts -------------------------------------------------------------------------------- /src/view-models/command-choose-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/view-models/command-choose-file.ts -------------------------------------------------------------------------------- /src/view-models/command-show-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/view-models/command-show-settings.ts -------------------------------------------------------------------------------- /src/view-models/command-start-download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/view-models/command-start-download.ts -------------------------------------------------------------------------------- /src/view-models/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/view-models/main-view-model.ts -------------------------------------------------------------------------------- /src/views/main-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/src/views/main-window.ts -------------------------------------------------------------------------------- /tests/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/tests/assert.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings.json -------------------------------------------------------------------------------- /typings/globals/es6-promise/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/globals/es6-promise/index.d.ts -------------------------------------------------------------------------------- /typings/globals/es6-promise/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/globals/es6-promise/typings.json -------------------------------------------------------------------------------- /typings/globals/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/globals/node/index.d.ts -------------------------------------------------------------------------------- /typings/globals/node/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/globals/node/typings.json -------------------------------------------------------------------------------- /typings/globals/whatwg-fetch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/globals/whatwg-fetch/index.d.ts -------------------------------------------------------------------------------- /typings/globals/whatwg-fetch/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/globals/whatwg-fetch/typings.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/webpack.config.js -------------------------------------------------------------------------------- /winPackager-fixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/winPackager-fixed.js -------------------------------------------------------------------------------- /www/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/app-all.js -------------------------------------------------------------------------------- /www/assets/icons/x1/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/apple.png -------------------------------------------------------------------------------- /www/assets/icons/x1/close.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/close.normal.png -------------------------------------------------------------------------------- /www/assets/icons/x1/close.over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/close.over.png -------------------------------------------------------------------------------- /www/assets/icons/x1/favor.current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/favor.current.png -------------------------------------------------------------------------------- /www/assets/icons/x1/favor.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/favor.normal.png -------------------------------------------------------------------------------- /www/assets/icons/x1/home.current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/home.current.png -------------------------------------------------------------------------------- /www/assets/icons/x1/home.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/home.normal.png -------------------------------------------------------------------------------- /www/assets/icons/x1/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/logo.png -------------------------------------------------------------------------------- /www/assets/icons/x1/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/new.png -------------------------------------------------------------------------------- /www/assets/icons/x1/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/open.png -------------------------------------------------------------------------------- /www/assets/icons/x1/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x1/save.png -------------------------------------------------------------------------------- /www/assets/icons/x2/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/apple.png -------------------------------------------------------------------------------- /www/assets/icons/x2/close.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/close.normal.png -------------------------------------------------------------------------------- /www/assets/icons/x2/close.over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/close.over.png -------------------------------------------------------------------------------- /www/assets/icons/x2/favor.current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/favor.current.png -------------------------------------------------------------------------------- /www/assets/icons/x2/favor.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/favor.normal.png -------------------------------------------------------------------------------- /www/assets/icons/x2/home.current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/home.current.png -------------------------------------------------------------------------------- /www/assets/icons/x2/home.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/home.normal.png -------------------------------------------------------------------------------- /www/assets/icons/x2/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/logo.png -------------------------------------------------------------------------------- /www/assets/icons/x2/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/new.png -------------------------------------------------------------------------------- /www/assets/icons/x2/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/open.png -------------------------------------------------------------------------------- /www/assets/icons/x2/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/icons/x2/save.png -------------------------------------------------------------------------------- /www/assets/theme/default/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/demo.js -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/alert.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/arrow-down.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/arrow-up.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/check-button-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/check-button-checked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/check-button-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/check-button-unchecked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/close.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/close.normal.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/close.over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/close.over.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/collapse.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/combo-box-item-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/combo-box-item-current.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/combo-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/combo-box.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/expand.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/info.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/leaf.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/menu-item-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/menu-item-checked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/menu-item-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/menu-item-more.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/question.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/radio-button-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/radio-button-checked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x1/radio-button-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x1/radio-button-unchecked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/alert.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/arrow-down.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/arrow-up.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/check-button-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/check-button-checked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/check-button-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/check-button-unchecked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/close.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/close.normal.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/close.over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/close.over.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/collapse.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/combo-box-item-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/combo-box-item-current.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/combo-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/combo-box.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/expand.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/info.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/leaf.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/menu-item-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/menu-item-checked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/menu-item-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/menu-item-more.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/question.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/radio-button-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/radio-button-checked.png -------------------------------------------------------------------------------- /www/assets/theme/default/images/x2/radio-button-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/images/x2/radio-button-unchecked.png -------------------------------------------------------------------------------- /www/assets/theme/default/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/assets/theme/default/theme.js -------------------------------------------------------------------------------- /www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/icon.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/index.html -------------------------------------------------------------------------------- /www/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/main.js -------------------------------------------------------------------------------- /www/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlgopen/zyDownloader/HEAD/www/native.js --------------------------------------------------------------------------------