├── .gitattributes ├── .gitignore ├── KindleHelper.sln ├── KindleHelper ├── App.config ├── FormBookDetail.Designer.cs ├── FormBookDetail.cs ├── FormBookDetail.resx ├── FormSearch.Designer.cs ├── FormSearch.cs ├── FormSearch.resx ├── FormSearchResult.Designer.cs ├── FormSearchResult.cs ├── FormSearchResult.resx ├── FormTocList.Designer.cs ├── FormTocList.cs ├── FormTocList.resx ├── KindleHelper.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.ico ├── lib │ ├── Book.cs │ ├── BookDownloader.cs │ └── Kindlegen.cs ├── resource │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.jpg │ ├── 5.jpg │ └── 6.jpg └── workspace │ ├── tools │ └── kindlegen.exe │ └── tpls │ ├── tpl_book_toc.html │ ├── tpl_chapter.html │ ├── tpl_content.opf │ ├── tpl_cover.html │ ├── tpl_style.css │ └── tpl_toc.ncx ├── KindleHelperCommand ├── App.config ├── KindleHelperCommand.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── _config.yml ├── gui-test ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── gui-test.csproj └── libZhuishu ├── LibZhuiShu.cs ├── Properties └── AssemblyInfo.cs ├── api ├── ChapterInfo.cs ├── HttpHelper.cs ├── MixTocInfo.cs ├── QueryBookInfo.cs ├── TocChaperListInfo.cs ├── TocSummmaryInfo.cs ├── doc │ └── apidoc.txt └── tocChaperInfo.cs ├── libZhuishu.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /KindleHelper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper.sln -------------------------------------------------------------------------------- /KindleHelper/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/App.config -------------------------------------------------------------------------------- /KindleHelper/FormBookDetail.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormBookDetail.Designer.cs -------------------------------------------------------------------------------- /KindleHelper/FormBookDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormBookDetail.cs -------------------------------------------------------------------------------- /KindleHelper/FormBookDetail.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormBookDetail.resx -------------------------------------------------------------------------------- /KindleHelper/FormSearch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormSearch.Designer.cs -------------------------------------------------------------------------------- /KindleHelper/FormSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormSearch.cs -------------------------------------------------------------------------------- /KindleHelper/FormSearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormSearch.resx -------------------------------------------------------------------------------- /KindleHelper/FormSearchResult.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormSearchResult.Designer.cs -------------------------------------------------------------------------------- /KindleHelper/FormSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormSearchResult.cs -------------------------------------------------------------------------------- /KindleHelper/FormSearchResult.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormSearchResult.resx -------------------------------------------------------------------------------- /KindleHelper/FormTocList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormTocList.Designer.cs -------------------------------------------------------------------------------- /KindleHelper/FormTocList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormTocList.cs -------------------------------------------------------------------------------- /KindleHelper/FormTocList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/FormTocList.resx -------------------------------------------------------------------------------- /KindleHelper/KindleHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/KindleHelper.csproj -------------------------------------------------------------------------------- /KindleHelper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/Program.cs -------------------------------------------------------------------------------- /KindleHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KindleHelper/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /KindleHelper/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/Properties/Resources.resx -------------------------------------------------------------------------------- /KindleHelper/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /KindleHelper/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/Properties/Settings.settings -------------------------------------------------------------------------------- /KindleHelper/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/app.ico -------------------------------------------------------------------------------- /KindleHelper/lib/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/lib/Book.cs -------------------------------------------------------------------------------- /KindleHelper/lib/BookDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/lib/BookDownloader.cs -------------------------------------------------------------------------------- /KindleHelper/lib/Kindlegen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/lib/Kindlegen.cs -------------------------------------------------------------------------------- /KindleHelper/resource/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/resource/1.png -------------------------------------------------------------------------------- /KindleHelper/resource/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/resource/2.png -------------------------------------------------------------------------------- /KindleHelper/resource/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/resource/3.png -------------------------------------------------------------------------------- /KindleHelper/resource/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/resource/4.jpg -------------------------------------------------------------------------------- /KindleHelper/resource/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/resource/5.jpg -------------------------------------------------------------------------------- /KindleHelper/resource/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/resource/6.jpg -------------------------------------------------------------------------------- /KindleHelper/workspace/tools/kindlegen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tools/kindlegen.exe -------------------------------------------------------------------------------- /KindleHelper/workspace/tpls/tpl_book_toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tpls/tpl_book_toc.html -------------------------------------------------------------------------------- /KindleHelper/workspace/tpls/tpl_chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tpls/tpl_chapter.html -------------------------------------------------------------------------------- /KindleHelper/workspace/tpls/tpl_content.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tpls/tpl_content.opf -------------------------------------------------------------------------------- /KindleHelper/workspace/tpls/tpl_cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tpls/tpl_cover.html -------------------------------------------------------------------------------- /KindleHelper/workspace/tpls/tpl_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tpls/tpl_style.css -------------------------------------------------------------------------------- /KindleHelper/workspace/tpls/tpl_toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelper/workspace/tpls/tpl_toc.ncx -------------------------------------------------------------------------------- /KindleHelperCommand/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelperCommand/App.config -------------------------------------------------------------------------------- /KindleHelperCommand/KindleHelperCommand.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelperCommand/KindleHelperCommand.csproj -------------------------------------------------------------------------------- /KindleHelperCommand/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelperCommand/Program.cs -------------------------------------------------------------------------------- /KindleHelperCommand/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/KindleHelperCommand/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/_config.yml -------------------------------------------------------------------------------- /gui-test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/App.config -------------------------------------------------------------------------------- /gui-test/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Form1.Designer.cs -------------------------------------------------------------------------------- /gui-test/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Form1.cs -------------------------------------------------------------------------------- /gui-test/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Form1.resx -------------------------------------------------------------------------------- /gui-test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Program.cs -------------------------------------------------------------------------------- /gui-test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /gui-test/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /gui-test/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Properties/Resources.resx -------------------------------------------------------------------------------- /gui-test/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /gui-test/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/Properties/Settings.settings -------------------------------------------------------------------------------- /gui-test/gui-test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/gui-test/gui-test.csproj -------------------------------------------------------------------------------- /libZhuishu/LibZhuiShu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/LibZhuiShu.cs -------------------------------------------------------------------------------- /libZhuishu/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /libZhuishu/api/ChapterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/ChapterInfo.cs -------------------------------------------------------------------------------- /libZhuishu/api/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/HttpHelper.cs -------------------------------------------------------------------------------- /libZhuishu/api/MixTocInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/MixTocInfo.cs -------------------------------------------------------------------------------- /libZhuishu/api/QueryBookInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/QueryBookInfo.cs -------------------------------------------------------------------------------- /libZhuishu/api/TocChaperListInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/TocChaperListInfo.cs -------------------------------------------------------------------------------- /libZhuishu/api/TocSummmaryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/TocSummmaryInfo.cs -------------------------------------------------------------------------------- /libZhuishu/api/doc/apidoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/doc/apidoc.txt -------------------------------------------------------------------------------- /libZhuishu/api/tocChaperInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/api/tocChaperInfo.cs -------------------------------------------------------------------------------- /libZhuishu/libZhuishu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/libZhuishu.csproj -------------------------------------------------------------------------------- /libZhuishu/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quanwei1992/KindleHelper/HEAD/libZhuishu/packages.config --------------------------------------------------------------------------------