├── .hgignore ├── BuildAndPack.bat ├── Readme.md ├── SetupWebLibrary.bat ├── WebLibrary.sln ├── WebLibraryApp ├── ArticleInfo.cs ├── ArticleList.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── checkmark.png │ ├── chromium-256.png │ ├── down-button.png │ ├── nav_left_green.png │ ├── nav_plain_green.png │ ├── nav_plain_red.png │ ├── nav_right_green.png │ ├── star.png │ └── up_button.png ├── WebLibraryApp.csproj ├── app.config ├── app.manifest ├── appicon.ico └── packages.config ├── WebLibraryDownloader ├── App.config ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── cancel.png │ └── save.png ├── SingleFile-master.zip ├── WebLibraryDownloader.csproj └── appicon.ico ├── WebLibraryExt ├── background.js ├── icons │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-32.png │ ├── icon-48.png │ └── icon-64.png └── manifest.json └── weblibrary_screenshot.png /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/.hgignore -------------------------------------------------------------------------------- /BuildAndPack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/BuildAndPack.bat -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/Readme.md -------------------------------------------------------------------------------- /SetupWebLibrary.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/SetupWebLibrary.bat -------------------------------------------------------------------------------- /WebLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibrary.sln -------------------------------------------------------------------------------- /WebLibraryApp/ArticleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/ArticleInfo.cs -------------------------------------------------------------------------------- /WebLibraryApp/ArticleList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/ArticleList.cs -------------------------------------------------------------------------------- /WebLibraryApp/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/MainForm.Designer.cs -------------------------------------------------------------------------------- /WebLibraryApp/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/MainForm.cs -------------------------------------------------------------------------------- /WebLibraryApp/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/MainForm.resx -------------------------------------------------------------------------------- /WebLibraryApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Program.cs -------------------------------------------------------------------------------- /WebLibraryApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebLibraryApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WebLibraryApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Properties/Resources.resx -------------------------------------------------------------------------------- /WebLibraryApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WebLibraryApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Properties/Settings.settings -------------------------------------------------------------------------------- /WebLibraryApp/Resources/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/checkmark.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/chromium-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/chromium-256.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/down-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/down-button.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/nav_left_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/nav_left_green.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/nav_plain_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/nav_plain_green.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/nav_plain_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/nav_plain_red.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/nav_right_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/nav_right_green.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/star.png -------------------------------------------------------------------------------- /WebLibraryApp/Resources/up_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/Resources/up_button.png -------------------------------------------------------------------------------- /WebLibraryApp/WebLibraryApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/WebLibraryApp.csproj -------------------------------------------------------------------------------- /WebLibraryApp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/app.config -------------------------------------------------------------------------------- /WebLibraryApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/app.manifest -------------------------------------------------------------------------------- /WebLibraryApp/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/appicon.ico -------------------------------------------------------------------------------- /WebLibraryApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryApp/packages.config -------------------------------------------------------------------------------- /WebLibraryDownloader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/App.config -------------------------------------------------------------------------------- /WebLibraryDownloader/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/MainForm.Designer.cs -------------------------------------------------------------------------------- /WebLibraryDownloader/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/MainForm.cs -------------------------------------------------------------------------------- /WebLibraryDownloader/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/MainForm.resx -------------------------------------------------------------------------------- /WebLibraryDownloader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Program.cs -------------------------------------------------------------------------------- /WebLibraryDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebLibraryDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WebLibraryDownloader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Properties/Resources.resx -------------------------------------------------------------------------------- /WebLibraryDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WebLibraryDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Properties/Settings.settings -------------------------------------------------------------------------------- /WebLibraryDownloader/Resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Resources/cancel.png -------------------------------------------------------------------------------- /WebLibraryDownloader/Resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/Resources/save.png -------------------------------------------------------------------------------- /WebLibraryDownloader/SingleFile-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/SingleFile-master.zip -------------------------------------------------------------------------------- /WebLibraryDownloader/WebLibraryDownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/WebLibraryDownloader.csproj -------------------------------------------------------------------------------- /WebLibraryDownloader/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryDownloader/appicon.ico -------------------------------------------------------------------------------- /WebLibraryExt/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/background.js -------------------------------------------------------------------------------- /WebLibraryExt/icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/icons/icon-128.png -------------------------------------------------------------------------------- /WebLibraryExt/icons/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/icons/icon-16.png -------------------------------------------------------------------------------- /WebLibraryExt/icons/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/icons/icon-32.png -------------------------------------------------------------------------------- /WebLibraryExt/icons/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/icons/icon-48.png -------------------------------------------------------------------------------- /WebLibraryExt/icons/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/icons/icon-64.png -------------------------------------------------------------------------------- /WebLibraryExt/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/WebLibraryExt/manifest.json -------------------------------------------------------------------------------- /weblibrary_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rg-software/weblibrary/HEAD/weblibrary_screenshot.png --------------------------------------------------------------------------------