diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index bc646e211..4331abb49 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -28,7 +28,7 @@ body:
label: Kavita Version Number - If you don not see your version number listed, please update Kavita and see if your issue still persists.
multiple: false
options:
- - 0.8.2 - Stable
+ - 0.8.3 - Stable
- Nightly Testing Branch
validations:
required: true
diff --git a/API/Controllers/AccountController.cs b/API/Controllers/AccountController.cs
index 2276a5a83..888be5eff 100644
--- a/API/Controllers/AccountController.cs
+++ b/API/Controllers/AccountController.cs
@@ -773,6 +773,7 @@ public class AccountController : BaseApiController
{
validationErrors.AddRange(await _accountService.ValidateUsername(dto.Username));
}
+
validationErrors.AddRange(await _accountService.ValidatePassword(user, dto.Password));
if (validationErrors.Any())
diff --git a/README.md b/README.md
index e665a7e4e..0c083b900 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,9 @@
# []() Kavita
{{t('import-description')}}
+{{t('cbl-repo') | safeHtml}}
diff --git a/UI/Web/src/assets/langs/en.json b/UI/Web/src/assets/langs/en.json index 0c499eac7..efff0d901 100644 --- a/UI/Web/src/assets/langs/en.json +++ b/UI/Web/src/assets/langs/en.json @@ -740,7 +740,8 @@ "required-field": "{{common.required-field}}", "valid-email": "{{common.valid-email}}", "password-validation": "{{validation.password-validation}}", - "register": "Register" + "register": "Register", + "error-label": "Error:" }, "confirm-email-change": { @@ -1461,6 +1462,7 @@ "theme": "Theme", "customize": "Customize", "cbl-import": "CBL Reading List", + "cbl-repo": "You can find many reading lists in the community repo.", "mal-stack-import": "MAL Stack" }, diff --git a/openapi.json b/openapi.json index d78f16318..4e95289cf 100644 --- a/openapi.json +++ b/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.1", "info": { "title": "Kavita", - "description": "Kavita provides a set of APIs that are authenticated by JWT. JWT token can be copied from local storage. Assume all fields of a payload are required. Built against v0.8.2.9", + "description": "Kavita provides a set of APIs that are authenticated by JWT. JWT token can be copied from local storage. Assume all fields of a payload are required. Built against v0.8.2.10", "license": { "name": "GPL-3.0", "url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"