From 1a8e985789a7ae2d05595e8930f712c63a7909ab Mon Sep 17 00:00:00 2001 From: Misty Release Bot Date: Fri, 22 Mar 2024 09:18:44 +0000 Subject: [PATCH 1/4] Latest translations and fallbacks --- public/language/ru/unread.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/language/ru/unread.json b/public/language/ru/unread.json index 5acc50c569..bcd913759e 100644 --- a/public/language/ru/unread.json +++ b/public/language/ru/unread.json @@ -3,7 +3,7 @@ "no-unread-topics": "Нет непрочитанных тем.", "load-more": "Загрузить еще", "mark-as-read": "Пометить как прочитанное", - "mark-as-unread": "Mark as Unread", + "mark-as-unread": "Пометить как непрочитанное", "selected": "Выбрано", "all": "Все", "all-categories": "Все категории", From 15c7691ca386c8ac55d4402e1aa43ad998f13f6e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 02:19:58 +0000 Subject: [PATCH 2/4] fix(deps): update dependency nodebb-theme-lavender to v7.1.8 --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index 4b6cc44f70..bfb3ef4dad 100644 --- a/install/package.json +++ b/install/package.json @@ -104,7 +104,7 @@ "nodebb-plugin-spam-be-gone": "2.2.1", "nodebb-rewards-essentials": "1.0.0", "nodebb-theme-harmony": "1.2.40", - "nodebb-theme-lavender": "7.1.7", + "nodebb-theme-lavender": "7.1.8", "nodebb-theme-peace": "2.2.4", "nodebb-theme-persona": "13.3.11", "nodebb-widget-essentials": "7.0.15", From 4da1e9c46478789c898802139dfa5bdf22f43dbe Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 22 Mar 2024 12:37:52 -0400 Subject: [PATCH 3/4] fix: use CategoryObject in admins-mods schema def --- .../read/admin/manage/admins-mods.yaml | 91 ++----------------- 1 file changed, 10 insertions(+), 81 deletions(-) diff --git a/public/openapi/read/admin/manage/admins-mods.yaml b/public/openapi/read/admin/manage/admins-mods.yaml index c5db50d839..7bb63ec3aa 100644 --- a/public/openapi/read/admin/manage/admins-mods.yaml +++ b/public/openapi/read/admin/manage/admins-mods.yaml @@ -18,87 +18,16 @@ get: categoryMods: type: array items: - type: object - properties: - cid: - type: number - description: A category identifier assigned upon category creation (this value cannot be changed) - name: - type: string - description: The category's name/title - description: - type: string - description: A variable-length description of the category (usually displayed underneath the category name) - descriptionParsed: - type: string - description: A variable-length description of the category (usually displayed underneath the category name). Unlike `description`, this value here will have been run through any parsers installed on the forum (e.g. Markdown) - icon: - type: string - description: A FontAwesome icon string - example: fa-comments-o - bgColor: - type: string - description: Theme-related, a six-character hexadecimal string representing the background colour of the category - color: - type: string - description: Theme-related, a six-character hexadecimal string representing the foreground/text colour of the category - slug: - type: string - description: An URL-safe variant of the category title. This value is automatically generated. - readOnly: true - parentCid: - type: number - description: The category identifier for the category that is the immediate ancestor of the current category - topic_count: - type: number - description: The number of topics in the category - post_count: - type: number - description: The number of posts in the category - disabled: - type: number - description: Whether or not this category is disabled. - order: - type: number - description: A number representing the category's place in the hierarchy - link: - type: string - description: If set, attempting to access the forum will go to this external link instead (theme-specific) - numRecentReplies: - type: number - description: The number of posts to render in the API response (this is mostly used at the theme level) - class: - type: string - description: Values that are appended to the `class` attribute of the category's parent/root element - imageClass: - type: string - enum: [auto, cover, contain] - description: The `background-position` of the category background image, if one is set - isSection: - type: number - minTags: - type: number - description: Minimum tags per topic in this category - maxTags: - type: number - description: Maximum tags per topic in this category - postQueue: - type: number - totalPostCount: - type: number - description: The number of posts in the category - totalTopicCount: - type: number - description: The number of topics in the category - subCategoriesPerPage: - type: number - description: The number of subcategories to display on the categories and category page - moderators: - type: array - items: - $ref: ../../../components/schemas/UserObject.yaml#/UserObjectSlim - subCategoryCount: - type: number + allOf: + - $ref: ../../../components/schemas/CategoryObject.yaml#/CategoryObject + - type: object + properties: + moderators: + type: array + items: + $ref: ../../../components/schemas/UserObject.yaml#/UserObjectSlim + subCategoryCount: + type: number selectedCategory: nullable: true anyOf: From 1a000eae57d2e55534a8d2eb0bcdc5e3636df2a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Fri, 22 Mar 2024 19:45:29 -0400 Subject: [PATCH 4/4] chore: up harmony --- install/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/package.json b/install/package.json index bfb3ef4dad..ff48727521 100644 --- a/install/package.json +++ b/install/package.json @@ -103,7 +103,7 @@ "nodebb-plugin-ntfy": "1.7.4", "nodebb-plugin-spam-be-gone": "2.2.1", "nodebb-rewards-essentials": "1.0.0", - "nodebb-theme-harmony": "1.2.40", + "nodebb-theme-harmony": "1.2.42", "nodebb-theme-lavender": "7.1.8", "nodebb-theme-peace": "2.2.4", "nodebb-theme-persona": "13.3.11",