Merge branch 'develop' of https://codeberg.org/calckey/calckey into upstream/develop
This commit is contained in:
commit
b8498c09c9
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "calckey",
|
"name": "calckey",
|
||||||
"version": "14.0.0-dev32",
|
"version": "14.0.0-dev33",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -111,6 +111,10 @@ async function leave(group) {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
._fullinfo {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
._card {
|
._card {
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
._title {
|
._title {
|
||||||
|
|
|
@ -17,7 +17,7 @@ export async function search() {
|
||||||
const { canceled, result: query } = await os.inputText({
|
const { canceled, result: query } = await os.inputText({
|
||||||
title: i18n.ts.search,
|
title: i18n.ts.search,
|
||||||
placeholder: i18n.ts.searchPlaceholder,
|
placeholder: i18n.ts.searchPlaceholder,
|
||||||
text: searchOptions,
|
// text: searchOptions,
|
||||||
});
|
});
|
||||||
if (canceled || query == null || query === "") return;
|
if (canceled || query == null || query === "") return;
|
||||||
|
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue