From e15449f51dd26ddebd068f18056552ad5fe4873f Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 29 May 2023 12:22:03 -0700 Subject: [PATCH 1/4] chore: :technologist: pull request template --- pull_request_template.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pull_request_template.yml diff --git a/pull_request_template.yml b/pull_request_template.yml new file mode 100644 index 0000000000..f45c199aa3 --- /dev/null +++ b/pull_request_template.yml @@ -0,0 +1,28 @@ +name: Pull Request +about: Create a pull request +title: "[PR]: " +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: textarea + id: about + attributes: + label: What does this PR do? + description: Please give us a brief description of what this PR does. + placeholder: Makes Calckey so amazing by... + validations: + required: true + - type: checkboxes + id: terms + attributes: + label: Contribution Guidelines + description: By submitting this issue, you agree to follow our [Contribution Guidelines](https://codeberg.org/calckey/calckey/src/branch/develop/CONTRIBUTING.md) + options: + - label: I agree to follow this project's Contribution Guidelines + required: true + - label: I have made sure to test this pull request + required: true + - label: I have made sure to run `pnpm run format` before submitting this pull request + required: true From 0276b59ef6be1214581a16f8f966be05c0bd8fdd Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 29 May 2023 12:23:19 -0700 Subject: [PATCH 2/4] typo --- pull_request_template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pull_request_template.yml b/pull_request_template.yml index f45c199aa3..41d04f59fe 100644 --- a/pull_request_template.yml +++ b/pull_request_template.yml @@ -5,7 +5,7 @@ body: - type: markdown attributes: value: | - Thanks for taking the time to fill out this bug report! + Thanks for taking the time to make Calckey better! - type: textarea id: about attributes: From c075455bc27273817e70f00a4b1546677a632998 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 29 May 2023 12:28:58 -0700 Subject: [PATCH 3/4] dev33 --- package.json | 2 +- packages/client/src/scripts/search.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index de993cde08..47b379b8a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "calckey", - "version": "14.0.0-dev32", + "version": "14.0.0-dev33", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/scripts/search.ts b/packages/client/src/scripts/search.ts index 2b52dc6683..40f09e4bc2 100644 --- a/packages/client/src/scripts/search.ts +++ b/packages/client/src/scripts/search.ts @@ -17,7 +17,7 @@ export async function search() { const { canceled, result: query } = await os.inputText({ title: i18n.ts.search, placeholder: i18n.ts.searchPlaceholder, - text: searchOptions, + // text: searchOptions, }); if (canceled || query == null || query === "") return; From 908e7e20cbdaaf0ec8e298d687fa622fbe386fea Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 29 May 2023 12:52:43 -0700 Subject: [PATCH 4/4] remove repetitive errors in groups --- packages/client/src/pages/my-groups/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/client/src/pages/my-groups/index.vue b/packages/client/src/pages/my-groups/index.vue index 4c411e71a5..ce04f9f602 100644 --- a/packages/client/src/pages/my-groups/index.vue +++ b/packages/client/src/pages/my-groups/index.vue @@ -111,6 +111,10 @@ async function leave(group) {