Skip to content

Commit 7bb75ef

Browse files
authored
Merge branch 'main' into main
2 parents 2adad90 + 5dfaed7 commit 7bb75ef

File tree

10 files changed

+406
-256
lines changed

10 files changed

+406
-256
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
assignees:
6+
- L4Ph
7+
- saicaca
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this bug report!
13+
- type: textarea
14+
id: bug-description
15+
attributes:
16+
label: Describe the bug
17+
description: A clear and concise description of what the bug is.
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: to-reproduce
22+
attributes:
23+
label: To Reproduce
24+
description: Steps to reproduce the behavior.
25+
placeholder: |
26+
1. Go to '...'
27+
2. Click on '....'
28+
3. Scroll down to '....'
29+
4. See error
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: expected-behavior
34+
attributes:
35+
label: Expected behavior
36+
description: A clear and concise description of what you expected to happen.
37+
validations:
38+
required: true
39+
- type: dropdown
40+
id: os
41+
attributes:
42+
label: OS
43+
multiple: true
44+
options:
45+
- Windows
46+
- macOS
47+
- Linux
48+
- Android
49+
- iOS
50+
- type: input
51+
id: browser
52+
attributes:
53+
label: Browser
54+
placeholder: e.g. chrome, safari
55+
- type: textarea
56+
id: additional-context
57+
attributes:
58+
label: Additional context
59+
description: Add any other context about the problem here.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
assignees:
6+
- saicaca
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this feature request!
12+
- type: textarea
13+
id: related-problem
14+
attributes:
15+
label: Is your feature request related to a problem?
16+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: solution
21+
attributes:
22+
label: Describe the solution you'd like
23+
description: A clear and concise description of what you want to happen.
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: alternatives
28+
attributes:
29+
label: Describe alternatives you've considered
30+
description: A clear and concise description of any alternative solutions or features you've considered.
31+
- type: textarea
32+
id: additional-context
33+
attributes:
34+
label: Additional context
35+
description: Add any other context or screenshots about the feature request here.
36+
- type: markdown
37+
attributes:
38+
value: |
39+
**Disclaimer**
40+
41+
Please note that this feature request is at the discretion of the repository owner, @saicaca, and its implementation is not guaranteed.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Custom Issue
2+
description: Describe your issue here.
3+
title: "[Other]: "
4+
body:
5+
- type: textarea
6+
id: issue-description
7+
attributes:
8+
label: Issue Description
9+
description: Please describe your issue.
10+
validations:
11+
required: true

.github/pull_request_template.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## Type of change
2+
3+
- [ ] Bug fix (a non-breaking change that fixes an issue)
4+
- [ ] New feature (a non-breaking change that adds functionality)
5+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
6+
- [ ] Other (please describe):
7+
8+
## Checklist
9+
10+
- [ ] I have read the [**CONTRIBUTING**](https://github.com/saicaca/fuwari/blob/main/CONTRIBUTING.md) document.
11+
- [ ] I have checked to ensure that this Pull Request is not for personal changes.
12+
- [ ] I have performed a self-review of my own code.
13+
- [ ] My changes generate no new warnings.
14+
15+
## Related Issue
16+
17+
<!-- Please link to the issue that this pull request addresses. e.g. #123 -->
18+
19+
20+
## Changes
21+
22+
<!-- Please describe the changes you made in this pull request. -->
23+
24+
25+
## How To Test
26+
27+
<!-- Please describe how you tested your changes. -->
28+
29+
30+
## Screenshots (if applicable)
31+
32+
<!-- If you made any UI changes, please include screenshots. -->
33+
34+
35+
## Additional Notes
36+
37+
<!-- Any additional information that you want to share with the reviewer. -->

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@astrojs/check": "^0.9.4",
2020
"@astrojs/rss": "^4.0.12",
21-
"@astrojs/sitemap": "^3.4.1",
21+
"@astrojs/sitemap": "^3.4.2",
2222
"@astrojs/svelte": "7.1.0",
2323
"@astrojs/tailwind": "^6.0.2",
2424
"@expressive-code/core": "^0.41.3",
@@ -33,7 +33,7 @@
3333
"@iconify/svelte": "^4.2.0",
3434
"@swup/astro": "^1.7.0",
3535
"@tailwindcss/typography": "^0.5.16",
36-
"astro": "5.12.3",
36+
"astro": "5.12.5",
3737
"astro-expressive-code": "^0.41.3",
3838
"astro-icon": "^1.1.5",
3939
"hastscript": "^9.0.1",
@@ -56,14 +56,14 @@
5656
"sanitize-html": "^2.17.0",
5757
"sharp": "^0.34.3",
5858
"stylus": "^0.64.0",
59-
"svelte": "^5.36.16",
59+
"svelte": "^5.37.2",
6060
"tailwindcss": "^3.4.17",
61-
"typescript": "^5.8.3",
61+
"typescript": "^5.9.2",
6262
"unist-util-visit": "^5.0.0"
6363
},
6464
"devDependencies": {
6565
"@astrojs/ts-plugin": "^1.10.4",
66-
"@biomejs/biome": "2.1.2",
66+
"@biomejs/biome": "2.1.3",
6767
"@rollup/plugin-yaml": "^4.1.2",
6868
"@types/hast": "^3.0.4",
6969
"@types/markdown-it": "^14.1.2",

0 commit comments

Comments
 (0)