├── .vs ├── ProjectSettings.json ├── slnx.sqlite ├── VSWorkspaceState.json └── Syosetu-Downloader │ └── v16 │ └── .suo ├── src ├── syosetuDownloaderCLI │ ├── obj │ │ ├── Debug │ │ │ ├── syosetuDownloaderCLI.csproj.CopyComplete │ │ │ ├── syosetuDownloaderCLI.exe │ │ │ ├── syosetuDownloaderCLI.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── syosetuDownloaderCLI.csprojAssemblyReference.cache │ │ │ └── syosetuDownloaderCLI.csproj.FileListAbsolute.txt │ │ └── Release │ │ │ └── syosetuDownloaderCLI.csprojAssemblyReference.cache │ ├── bin │ │ └── Debug │ │ │ ├── CommandLine.dll │ │ │ ├── HtmlAgilityPack.dll │ │ │ ├── syosetuDownloaderCLI.exe │ │ │ ├── syosetuDownloaderCLI.pdb │ │ │ ├── syosetuDownloaderCore.dll │ │ │ ├── syosetuDownloaderCore.pdb │ │ │ └── format.ini │ ├── syosetuDownloaderCLI.csproj.user │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── syosetuDownloaderCLI.csproj │ └── Program.cs ├── syosetuDownloaderCore │ ├── obj │ │ ├── Debug │ │ │ ├── syosetuDownloaderCore.csproj.CopyComplete │ │ │ ├── syosetuDownloaderCore.dll │ │ │ ├── syosetuDownloaderCore.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── syosetuDownloaderCore.csprojAssemblyReference.cache │ │ │ └── syosetuDownloaderCore.csproj.FileListAbsolute.txt │ │ └── Release │ │ │ └── syosetuDownloaderCore.csprojAssemblyReference.cache │ ├── bin │ │ └── Debug │ │ │ ├── CommandLine.dll │ │ │ ├── HtmlAgilityPack.dll │ │ │ ├── syosetuDownloaderCore.dll │ │ │ └── syosetuDownloaderCore.pdb │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── syosetuDownloaderCore.csproj │ ├── Constants.cs │ └── Syousetsu.cs ├── DLL │ ├── Credits.txt │ ├── CommandLine.dll │ ├── HtmlAgilityPack.dll │ └── CommandLine.XML ├── syosetuDownloader │ ├── Properties │ │ ├── Settings.settings │ │ ├── Settings.Designer.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── format.ini │ ├── App.xaml │ ├── App.xaml.cs │ ├── syosetuDownloader.csproj.user │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── syosetuDownloader.csproj └── syosetuDownloader.sln ├── .gitignore └── README.md /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DLL/Credits.txt: -------------------------------------------------------------------------------- 1 | CommandLine.dll 2 | CommandLine.xml: https://commandline.codeplex.com/ -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /src/DLL/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/DLL/CommandLine.dll -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "" 4 | ], 5 | "PreviewInSolutionExplorer": false 6 | } -------------------------------------------------------------------------------- /src/DLL/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/DLL/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /.vs/Syosetu-Downloader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/.vs/Syosetu-Downloader/v16/.suo -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/bin/Debug/CommandLine.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/bin/Debug/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/bin/Debug/CommandLine.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/bin/Debug/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/bin/Debug/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/bin/Debug/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCLI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCLI.exe -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCLI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCLI.pdb -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.exe -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.pdb -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCore.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/bin/Debug/syosetuDownloaderCore.pdb -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/bin/Debug/syosetuDownloaderCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/bin/Debug/syosetuDownloaderCore.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/bin/Debug/syosetuDownloaderCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/bin/Debug/syosetuDownloaderCore.pdb -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.dll -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.pdb -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Release/syosetuDownloaderCLI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCLI/obj/Release/syosetuDownloaderCLI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Release/syosetuDownloaderCore.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordZero25/Syosetu-Downloader/HEAD/src/syosetuDownloaderCore/obj/Release/syosetuDownloaderCore.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /src/syosetuDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/syosetuDownloader/format.ini: -------------------------------------------------------------------------------- 1 | ;{0} = incrementing numbers 2 | ;{1} = chapter title 3 | ;{2} = series code (n******) 4 | ;Chapter {0} - {1} => Chapter 1 - Prolouge 5 | ;{0:D4} => 0001 6 | ;Reffer to https://msdn.microsoft.com/en-us/library/dwhawy9k(v=vs.100).aspx 7 | ;Chapter {0} - {1} 8 | {2}/{0:0000}-{1} -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/bin/Debug/format.ini: -------------------------------------------------------------------------------- 1 | ;{0} = incrementing numbers 2 | ;{1} = chapter title 3 | ;{2} = series code (n******) 4 | ;Chapter {0} - {1} => Chapter 1 - Prolouge 5 | ;{0:D4} => 0001 6 | ;Reffer to https://msdn.microsoft.com/en-us/library/dwhawy9k(v=vs.100).aspx 7 | ;Chapter {0} - {1} 8 | {2}/{0:0000}-{1} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /src/syosetuDownloader/bin 6 | /src/syosetuDownloader/obj/x86 7 | /src/.vs 8 | -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/syosetuDownloaderCLI.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/syosetuDownloader/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/syosetuDownloader/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | using CommandLine; 8 | using HtmlAgilityPack; 9 | 10 | namespace syosetuDownloader 11 | { 12 | /// 13 | /// Interaction logic for App.xaml 14 | /// 15 | public partial class App : Application 16 | { 17 | 18 | protected override void OnStartup(StartupEventArgs e) 19 | { 20 | base.OnStartup(e); 21 | } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/syosetuDownloader/syosetuDownloader.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | publish\ 13 | 14 | 15 | 16 | 17 | 18 | en-US 19 | false 20 | 21 | -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/obj/Debug/syosetuDownloaderCore.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\obj\Debug\syosetuDownloaderCore.csprojAssemblyReference.cache 2 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\bin\Debug\syosetuDownloaderCore.dll 3 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\bin\Debug\syosetuDownloaderCore.pdb 4 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\obj\Debug\syosetuDownloaderCore.csproj.CopyComplete 5 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\obj\Debug\syosetuDownloaderCore.dll 6 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\obj\Debug\syosetuDownloaderCore.pdb 7 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\bin\Debug\CommandLine.dll 8 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCore\bin\Debug\CommandLine.xml 9 | -------------------------------------------------------------------------------- /src/syosetuDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.34209 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace syosetuDownloader.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/obj/Debug/syosetuDownloaderCLI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\bin\Debug\syosetuDownloaderCLI.exe 2 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\bin\Debug\syosetuDownloaderCLI.pdb 3 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\bin\Debug\CommandLine.dll 4 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\bin\Debug\syosetuDownloaderCore.dll 5 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\bin\Debug\syosetuDownloaderCore.pdb 6 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\bin\Debug\CommandLine.xml 7 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\obj\Debug\syosetuDownloaderCLI.csprojAssemblyReference.cache 8 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\obj\Debug\syosetuDownloaderCLI.csproj.CopyComplete 9 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\obj\Debug\syosetuDownloaderCLI.exe 10 | C:\Users\ACER\Source\Repos\LordZero25\Syosetu-Downloader\src\syosetuDownloaderCLI\obj\Debug\syosetuDownloaderCLI.pdb 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Syosetu-Downloader 2 | Download chapters from Syosetsu ni Narou 3 | 4 | **Requirements** 5 | - .Net Framework 4.0 6 | 7 | **Features:** 8 | - Support links with the pattern "http://*.syosetu.com/xxxxxxx" 9 | - Downloaded chapters are on .exe folder/[novel name] 10 | - Option to specify a chapter range (i.e. if you want to only download say chapters 3-10) 11 | - Download mutiple series 12 | - Clicking the progress bar will cancel the download job 13 | - Clicking the novel title will open its download folder 14 | - Custom filename (see format.ini for details) 15 | - Chapter list generation (nxxxxxx.htm) 16 | 17 | **CMD Commands** 18 | - -l, --link URL to be processed 19 | - -s, --start (Default: 1) Stating chapter 20 | - -e, --end Ending chapter 21 | - -f, --format (Default: TXT) File format (HTML | TXT) 22 | - -t, --toc (Default: False) Generates Table of contents 23 | - -h, --help 24 | 25 | **Notes:** 26 | - If no chapter range is specified it will download everything 27 | - If "from" is blank it will start from chapter 1 28 | - If "to" is blank it will end on the latest/last chapter 29 | - No volume support 30 | - "chapter 1" is "http://*.syosetu.com/xxxxxxx/1" 31 | - Replaces illegal characters on filename with "□" 32 | - No chapter list generation for wayback machine 33 | 34 | **[Releases Here](https://github.com/LordZero25/Syosetu-Downloader/releases/)** 35 | -------------------------------------------------------------------------------- /src/syosetuDownloaderCLI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("syosetuDownloaderCLI")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("syosetuDownloaderCLI")] 13 | [assembly: AssemblyCopyright("Copyright © 2019")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("10c85ddc-3b6f-45ce-bcc5-10137f1d4d5d")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/syosetuDownloaderCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("syosetuDownloaderCore")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("syosetuDownloaderCore")] 13 | [assembly: AssemblyCopyright("Copyright © 2019")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("ef69f9d8-07b1-4f10-966f-cf469e0d9bf8")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/syosetuDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: AssemblyTitle("syosetuDownloader")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("syosetuDownloader")] 15 | [assembly: AssemblyCopyright("Copyright © 2017")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // Setting ComVisible to false makes the types in this assembly not visible 20 | // to COM components. If you need to access a type in this assembly from 21 | // COM, set the ComVisible attribute to true on that type. 22 | [assembly: ComVisible(false)] 23 | 24 | //In order to begin building localizable applications, set 25 | //CultureYouAreCodingWith in your .csproj file 26 | //inside a . For example, if you are using US english 27 | //in your source files, set the to en-US. Then uncomment 28 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 29 | //the line below to match the UICulture setting in the project file. 30 | 31 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] 32 | 33 | 34 | [assembly: ThemeInfo( 35 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 36 | //(used if a resource is not found in the page, 37 | // or application resource dictionaries) 38 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 39 | //(used if a resource is not found in the page, 40 | // app, or any theme specific resource dictionaries) 41 | )] 42 | 43 | 44 | // Version information for an assembly consists of the following four values: 45 | // 46 | // Major Version 47 | // Minor Version 48 | // Build Number 49 | // Revision 50 | // 51 | // You can specify all the values or you can default the Build and Revision Numbers 52 | // by using the '*' as shown below: 53 | // [assembly: AssemblyVersion("1.0.*")] 54 | [assembly: AssemblyVersion("2.4.0")] 55 | [assembly: AssemblyFileVersion("2.4.0")] 56 | -------------------------------------------------------------------------------- /src/syosetuDownloader/MainWindow.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 |