diff --git a/assets/index.html b/assets/index.html index 4f330cc..65ca565 100644 --- a/assets/index.html +++ b/assets/index.html @@ -15,7 +15,7 @@ Fork me on GitHub - en/ja/ru + en/ja/ru/pt
Single-Image Super-Resolution for Anime-Style Art using Deep Convolutional Neural Networks. And it supports photo. about.
diff --git a/assets/index.ja.html b/assets/index.ja.html index f2100e0..d4fba39 100644 --- a/assets/index.ja.html +++ b/assets/index.ja.html @@ -15,7 +15,7 @@ Fork me on GitHub
- en/ja/ru + en/ja/ru/pt
深層畳み込みニューラルネットワークによる二次元画像のための超解像システム. 写真にも対応. about.
diff --git a/assets/index.ru.html b/assets/index.ru.html index 749ab06..10377f1 100644 --- a/assets/index.ru.html +++ b/assets/index.ru.html @@ -16,7 +16,7 @@ Fork me on GitHub
- en/ja/ru + en/ja/ru/pt
Увеличение в 4 раза рисованных изображений, например, аниме или фан-арт, а также устранение шума (преимущественно артефактов сжатия JPEG), см. демонстрацию и сравнения
diff --git a/web.lua b/web.lua index a59a325..43b1fd4 100644 --- a/web.lua +++ b/web.lua @@ -286,6 +286,7 @@ local app = turbo.web.Application:new( {"^/index.html", turbo.web.StaticFileHandler, path.join(ROOT, "assets", "index.html")}, {"^/index.ja.html", turbo.web.StaticFileHandler, path.join(ROOT, "assets", "index.ja.html")}, {"^/index.ru.html", turbo.web.StaticFileHandler, path.join(ROOT, "assets", "index.ru.html")}, + {"^/index.pt.html", turbo.web.StaticFileHandler, path.join(ROOT, "assets", "index.pt.html")}, {"^/api$", APIHandler}, } )