Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.

Commit

Permalink
Higher maximum history size
Browse files Browse the repository at this point in the history
Higher maximum chapters saved size
  • Loading branch information
Glagan committed Sep 20, 2019
1 parent 26b3c16 commit 110481c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const [,, ...args] = process.argv;
let manifest = {
manifest_version: 2,
name: "MyMangaDex",
version: "2.3.4",
version: "2.3.5",
author: "Glagan",

description: "Automatically update your MyAnimeList manga list when reading on MangaDex.",
Expand Down
4 changes: 2 additions & 2 deletions options.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h1 class="text-container py-2 px-2"><i class="fas fa-globe"></i> Global</h1>
<label class="font-weight-bold">MangaDex history size <a data-default="historySize" class="btn btn-sm btn-secondary"><i class="fas fa-trash"></i><span class="d-none d-xl-inline"> Restore default</span></a></label>
<p class="d-none d-xl-block">The size of your MangaDex <a href="https://mangadex.org/history" rel="noreferrer noopener">History</a>. (If <b>Bigger MangaDex history</b> is activated)</p>
<div class="px-0">
<input data-option="historySize" data-type="number" type="number" min="1" max="200" class="form-control" />
<input data-option="historySize" data-type="number" type="number" min="1" max="500" class="form-control" />
</div>
</div>
</div>
Expand Down Expand Up @@ -291,7 +291,7 @@ <h1 class="text-container py-2 px-2"><i class="fas fa-file"></i> Chapter page</h
<label class="font-weight-bold">Number of saved chapters <a data-default="maxChapterSaved" class="btn btn-sm btn-secondary"><i class="fas fa-trash"></i><span class="d-none d-xl-inline"> Restore default</span></a></label>
<p class="d-none d-xl-block">Limit to the list of saved chapters to avoid using a lot of storage (100 is already a good enough value).</p>
<div class="px-0">
<input data-option="maxChapterSaved" data-type="number" type="number" min="1" max="200" class="form-control" />
<input data-option="maxChapterSaved" data-type="number" type="number" min="1" max="400" class="form-control" />
</div>
</div>
<div class="form-group text-container p-2">
Expand Down
2 changes: 1 addition & 1 deletion scripts/defaultOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ let defaultOptions = {
isLoggedIn: false,
token: "",
version: 2.3,
subVersion: 4
subVersion: 5
};

0 comments on commit 110481c

Please sign in to comment.