Merge branch 'develop' of https://codeberg.org/calckey/calckey into upstream/develop

This commit is contained in:
Freeplay 2023-05-29 15:59:08 -04:00
commit b8498c09c9
4 changed files with 34 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "14.0.0-dev32",
"version": "14.0.0-dev33",
"codename": "aqua",
"repository": {
"type": "git",

View File

@ -111,6 +111,10 @@ async function leave(group) {
</script>
<style lang="scss" scoped>
._fullinfo {
display: none !important;
}
._card {
margin-bottom: 1rem;
._title {

View File

@ -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;

28
pull_request_template.yml Normal file
View File

@ -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 make Calckey better!
- 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