Skip to content

Commit

Permalink
v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kanasimi committed May 1, 2020
1 parent 82965b0 commit f05a8aa
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ Welcome to join [the translating project](https://github.com/kanasimi/work_crawl
| API 應用程式介面 | ✔️ |

## Features 特點
* 最愛清單功能
* 最愛作品清單功能
* 一鍵搜尋各網站與下載作品。
* 將簡體小說轉換為繁體小說之選項
* 可將簡體小說轉換為繁體小說
* 自動下載小說封面以及章節中的插圖。
* 小說漫畫自動分部(part)。
* 盡量取得原有的圖片檔案中最高品質的,並自動檢核下載的圖片是否是否完整。若有破損將重新下載。
Expand Down
8 changes: 4 additions & 4 deletions arrangement/classify_and_compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,7 @@ function check_fso(fso_name) {
biggest_file_size = sub_fso_status.size;
non_zero_size_count++;
}
// TODO: .bmp
if (/\.(?:jpg|jpeg|webp|png|gif|ico|icon)$/i.test(sub_fso_name)) {
if (/\.(?:jpg|jpeg|webp|png|gif|bmp|ico|icon)$/i.test(sub_fso_name)) {
image_count++;
} else if (PATTERN_executable_file.test(sub_fso_name)) {
exe_count++;
Expand Down Expand Up @@ -510,8 +509,9 @@ function classify(fso_name, fso_path, fso_status, sub_fso_list) {
if (/^\((?:C\d{2,3}|CC福岡\d{2,3}|CC大阪\d{2,3}|Futaket ?\d{2}|コミティア\d{3}|Cレヴォ\d{2})|COMIC1(?:[☆_]\d{2})?\)/
.test(fso_name)
|| fso_name.includes('同人誌')
// "(サンクリ2015 Winter) "
|| /^\((?:同人誌|COMIC1☆|こみトレ|例大祭|紅楼夢|ふたけっと|サンクリ)/.test(fso_name)) {
// "(サンクリ2015 Winter) ", "秋季例大祭6"
|| /^\((?:同人誌|COMIC1☆|こみトレ|[^()]*例大祭[^()]*|紅楼夢|ふたけっと|サンクリ)/
.test(fso_name)) {
move_to(/\(オリジナル\)/.test(fso_name) ? 'doujin' : 'doujinshi');
return;
}
Expand Down
2 changes: 1 addition & 1 deletion arrangement/renamer.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var torrent_directory// = 'torrent' + CeL.env.path_separator
target_directory = process.argv[3]
|| CeL.first_exist_fso(global.completed_directory) || '.',
//
default_menu_page_length = 200,
default_menu_page_length = 100,
// start from menu NO. 1
default_menu_page_starts = 1,
// reget === true: reget till no more new menu files.
Expand Down
3 changes: 1 addition & 2 deletions comic.cmn-Hans-CN/930mh.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ CeL.run('application.net.work_crawler.sites.SinMH');
var crawler = CeL.SinMH({
// one_by_one : true,

// 2020/4/24
// 單一作品 1s: NG, 1200ms: OK
// 2020/4/24 單一作品 1s: NG, 1200ms: OK
chapter_time_interval : 6000,

// 圖像檔案下載失敗處理方式:忽略/跳過圖像錯誤。當404圖像不存在、檔案過小,或是被偵測出非圖像(如不具有EOI)時,依舊強制儲存檔案。default:false
Expand Down
1 change: 1 addition & 0 deletions gui_electron/gui_electron.css
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ dt {
}

#attention_panel a {
/* for .dark a {} */
color: #22f;
}

Expand Down

0 comments on commit f05a8aa

Please sign in to comment.