From 391d9742e7a59eb598b5b8d7eacd2bc27b85ca86 Mon Sep 17 00:00:00 2001 From: fen Date: Thu, 2 Nov 2023 10:28:38 +0800 Subject: [PATCH 1/3] fix: typo --- ui/public/manifest.json | 2 +- ui/src/plugins/builtin/HostingConnector/i18n/zh_CN.yaml | 2 +- ui/src/plugins/builtin/HostingConnector/info.yaml | 2 +- ui/src/plugins/builtin/SearchInfo/info.yaml | 2 +- ui/src/plugins/builtin/ThirdPartyConnector/info.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/public/manifest.json b/ui/public/manifest.json index 48b5bdfc5..a92240fba 100644 --- a/ui/public/manifest.json +++ b/ui/public/manifest.json @@ -1,6 +1,6 @@ { "short_name": "Answer", - "name": "Answer.dev", + "name": "Apache Answer", "icons": [ { "src": "favicon.ico", diff --git a/ui/src/plugins/builtin/HostingConnector/i18n/zh_CN.yaml b/ui/src/plugins/builtin/HostingConnector/i18n/zh_CN.yaml index af1aadbd0..5a45682b7 100644 --- a/ui/src/plugins/builtin/HostingConnector/i18n/zh_CN.yaml +++ b/ui/src/plugins/builtin/HostingConnector/i18n/zh_CN.yaml @@ -21,4 +21,4 @@ plugin: connect: 连接到 {{ auth_name }} login: 登录 qrcode_login_tip: 请使用 {{ agentName }} 扫描二维码登录 - login_failed_email_tip: 登录失败, 请允许该应用程序访问您的电子邮件信息,然后再试一次。 + login_failed_email_tip: 登录失败,请允许该应用程序访问您的电子邮件信息,然后再试一次。 diff --git a/ui/src/plugins/builtin/HostingConnector/info.yaml b/ui/src/plugins/builtin/HostingConnector/info.yaml index afd0f0fc8..f6699088b 100644 --- a/ui/src/plugins/builtin/HostingConnector/info.yaml +++ b/ui/src/plugins/builtin/HostingConnector/info.yaml @@ -18,5 +18,5 @@ slug_name: hosting_connector type: connector version: 0.0.1 -author: Answer.dev +author: Answer diff --git a/ui/src/plugins/builtin/SearchInfo/info.yaml b/ui/src/plugins/builtin/SearchInfo/info.yaml index 2dcd2154a..7fdf149fa 100644 --- a/ui/src/plugins/builtin/SearchInfo/info.yaml +++ b/ui/src/plugins/builtin/SearchInfo/info.yaml @@ -18,4 +18,4 @@ slug_name: serarch_info type: search version: 0.0.1 -author: Answer.dev +author: Answer diff --git a/ui/src/plugins/builtin/ThirdPartyConnector/info.yaml b/ui/src/plugins/builtin/ThirdPartyConnector/info.yaml index 9b5f11052..1e9b6fa95 100644 --- a/ui/src/plugins/builtin/ThirdPartyConnector/info.yaml +++ b/ui/src/plugins/builtin/ThirdPartyConnector/info.yaml @@ -19,5 +19,5 @@ slug_name: third_party_connector type: connector version: 0.0.1 link: https://github.com/apache/incubator-answer-plugins/tree/main/connector-basic -author: Answer.dev +author: Answer From ced150e5375f16d526fb91c67be39a7082513c7d Mon Sep 17 00:00:00 2001 From: fen Date: Thu, 2 Nov 2023 13:11:18 +0800 Subject: [PATCH 2/3] disable discussion feature --- .asf.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.asf.yaml b/.asf.yaml index 39fcb2e12..c7179baa2 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -29,6 +29,11 @@ github: - typescript - q-and-a - hacktoberfest + features: + wiki: false + issues: true + projects: true + discussions: false enabled_merge_buttons: squash: true rebase: true From 0db20c60c22a599d356de6b8e359890bc8e42bc4 Mon Sep 17 00:00:00 2001 From: fen Date: Tue, 9 Jan 2024 13:37:26 +0800 Subject: [PATCH 3/3] update: github issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 28 +++++++++++-------- .github/ISSUE_TEMPLATE/config.yaml | 5 ++++ .github/ISSUE_TEMPLATE/enhancement_request.md | 20 +++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 13 +++++---- 4 files changed, 50 insertions(+), 16 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yaml create mode 100644 .github/ISSUE_TEMPLATE/enhancement_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 64c08c436..40b932bb1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,30 +1,36 @@ --- name: Bug report -about: Create a report to help us improve +about: Report an issue to help the project improve. title: '' labels: bug assignees: '' --- -**Describe the bug** +## Describe the bug + A clear and concise description of what the bug is. -**To Reproduce** +### To Reproduce + Steps to reproduce the behavior: + 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error -**Expected behavior** +### Expected behavior + A clear and concise description of what you expected to happen. -**Screenshots** -If applicable, add screenshots to help explain your problem. +### Screenshots + +If applicable, add screenshots or video to help explain your problem. + +### Platform -**Platform (please complete the following information):** - - Device: [e.g. Desktop, Mobile] - - OS: [e.g. macOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] +- Device: [e.g. Desktop, Mobile] +- OS: [e.g. macOS] +- Browser and version: [e.g. Chrome, Safari] +- Version: [e.g. v1.2.0] diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml new file mode 100644 index 000000000..bfb8cd99c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Support + url: https://answer.apache.org/community + about: Contact us if you have any questions while using. diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.md b/.github/ISSUE_TEMPLATE/enhancement_request.md new file mode 100644 index 000000000..c7ef68162 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement_request.md @@ -0,0 +1,20 @@ +--- +name: Enhancement request +about: Suggest an enhancement for this project. Improve an existing feature. +title: '' +labels: enhancement +assignees: '' + +--- + +## Is your enhancement request related to a problem? Please describe + +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +## Describe the solution you'd like + +A clear and concise description of what you want to happen. + +## Describe alternatives you've considered + +A clear and concise description of any alternative solutions or features you've considered. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 234ef2546..176b3c556 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,17 +1,20 @@ --- name: Feature request -about: Suggest an idea for this project +about: Suggest an idea or possible new feature for this project. title: '' -labels: enhancement +labels: feature assignees: '' --- -**Is your feature request related to a problem? Please describe.** +## Is your feature request related to a problem? Please describe + A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -**Describe the solution you'd like** +## Describe the solution you'd like + A clear and concise description of what you want to happen. -**Describe alternatives you've considered** +## Describe alternatives you've considered + A clear and concise description of any alternative solutions or features you've considered.