-
Notifications
You must be signed in to change notification settings - Fork 53
/
example.xml
executable file
·40 lines (37 loc) · 1.34 KB
/
example.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" ?>
<root>
<MangaSeries>
<name>Exact Name of Manga Series</name>
<HostSite>One of the following casesensitive (MangaFox, OtakuWorks, MangaReader)</HostSite>
<LastChapterDownloaded>
Chapter Name
The format is site Dependent. If the last chapter does not match any on the site
the script will try to download all available chapters. If the node is not present, the
script will download all of the available chapters. This field is updated by
the script so that the next time the script runs only the newest chapters are
retrieved.
</LastChapterDownloaded>
<downloadPath>
Path to save the downloaded chapters. If this node is not present, the script will
create a download Directory name "./" + MANGA_NAME
</downloadPath>
</MangaSeries>
<!--
Downloads all naruto chapters newer than Vol.52 Ch.514 and saves that downloaded
chapters to C:\Manga\naruto
-->
<MangaSeries>
<name>naruto</name>
<HostSite>MangaFox</HostSite>
<LastChapterDownloaded>Vol.52 Ch.514</LastChapterDownloaded>
<downloadPath>C:\Manga\naruto/</downloadPath>
</MangaSeries>
<!--
Downloads all bleach chapters that are available on MangaReader. Saves the downloaded
Chapters to CURRENT_WORKING_DIRECTORY/bleach
-->
<MangaSeries>
<name>bleach</name>
<HostSite>MangaReader</HostSite>
</MangaSeries>
</root>