Skip to content

Commit

Permalink
fixed cbr cb7
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Nov 17, 2023
1 parent a8de941 commit 6753cf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/renderer/Components/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,6 @@ const Settings = (): ReactElement => {
</div>
<div className="toggleItem">
<InputCheckbox
// todo impl
checked={appSettings.readerSettings.focusChapterInList}
className="noBG"
onChange={(e) => {
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/MainImports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ const formats = {
},
},
files: {
list: [".zip", ".cbz", ".7z", ".rar", ".pdf", ".epub", ".xhtml", ".html", ".txt"],
list: [".zip", ".cbz", ".7z", ".cb7", ".rar", ".cbr", ".pdf", ".epub", ".xhtml", ".html", ".txt"],
test: function (str: string) {
return !!str && this.list.includes(path.extname(str).toLowerCase());
},
Expand All @@ -444,7 +444,7 @@ const formats = {
},
},
packedManga: {
list: [".zip", ".cbz", ".7z", ".rar"],
list: [".zip", ".cbz", ".7z", ".cb7", ".rar", ".cbr"],
test: function (str: string) {
return str && this.list.includes(path.extname(str).toLowerCase());
},
Expand Down

0 comments on commit 6753cf0

Please sign in to comment.