Skip to content

Commit 4bff96b

Browse files
committed
chore(idk): tons of updates, see changelog
1 parent 1c7b770 commit 4bff96b

96 files changed

Lines changed: 9007 additions & 1197 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug] "
4+
labels: [bug]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
attributes:
12+
label: What is the bug?
13+
description: Describe the bug, what is happening?
14+
placeholder: Tell us what you see!
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: How to reproduce the bug?
20+
description: Tell use how to reproduce the bug.
21+
placeholder: How to reproduce the bug?
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Screenshots
27+
description: Join a screenshot if you can.
28+
placeholder: Drag or paste an image here.
29+
validations:
30+
required: false
31+
- type: dropdown
32+
attributes:
33+
label: Operating System
34+
description: What operating system are you using?
35+
options:
36+
- Windows
37+
- macOS
38+
- Linux
39+
- Other
40+
validations:
41+
required: true
42+
- type: dropdown
43+
attributes:
44+
label: Browser
45+
description: What browser are you using?
46+
options:
47+
- Chrome
48+
- Firefox
49+
- Microsoft Edge (Chromium)
50+
- Microsoft Internet Explorer
51+
- Opera
52+
- Safari
53+
- Other
54+
validations:
55+
required: true
56+
- type: input
57+
attributes:
58+
label: What is the version of the browser?
59+
description: Tell us the precise version of your web browser.
60+
placeholder: v112.0.1722.48
61+
validations:
62+
required: false
63+
- type: input
64+
attributes:
65+
label: What is the version of the web app?
66+
description: Tell us the precise version of the web app you are using.
67+
placeholder: v1.5.0.2108
68+
validations:
69+
required: true
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Documentation Report
2+
description: File a documentation issue report.
3+
title: "[Documentation] "
4+
labels: [documentation]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill this documentation issue report!
10+
- type: textarea
11+
attributes:
12+
label: What is the problem?
13+
description: Describe the problem.
14+
placeholder: There is an issue in...
15+
validations:
16+
required: true
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Feature Request
2+
description: Request/Suggest a feature.
3+
title: "[Enhancement] "
4+
labels: [enhancement]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to suggest a new feature for this project!
10+
- type: textarea
11+
attributes:
12+
label: Enhancement
13+
description: Describe your feature request/your idea here.
14+
placeholder: I would like to see...
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Other informations
20+
description: If you have other informations, like mockups, etc., put them here.
21+
placeholder: Add other informations here.
22+
validations:
23+
required: false

.github/ISSUE_TEMPLATE/misc.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Misc
2+
description: Your issue doesn't fit in any categories.
3+
title: "[Misc] "
4+
labels: [misc]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this issue!
10+
- type: textarea
11+
attributes:
12+
label: Description of your issue
13+
description: Describe the problem.
14+
placeholder: Descirbe here your issue.
15+
validations:
16+
required: true
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Translation issues
2+
description: Report a translation issue.
3+
title: "[Translation] "
4+
labels: [translation]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this translation issue report!
10+
- type: textarea
11+
attributes:
12+
label: Description of the problem
13+
description: Describe the translation problem.
14+
placeholder: Error in...
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Propose a translation
20+
description: Propose a new translation.
21+
placeholder: It should be...
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Screenshot
27+
description: If you have a screenshot, paste it here.
28+
placeholder: Drag or paste an image here.
29+
validations:
30+
required: false

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "bun" # See documentation for possible values
4+
directory: "/" # Location of package manifests
5+
schedule:
6+
interval: "daily"
7+
target-branch: deps
8+
assignees:
9+
- CodeMeAPixel
10+
open-pull-requests-limit: 25

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test Build
2+
on:
3+
push:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 20.x
19+
20+
- name: Install dependencies
21+
run: bun install
22+
23+
- name: Build
24+
run: bun run build

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,13 @@ yarn-error.log*
374374
.turbo
375375

376376
.contentlayer
377-
.env
377+
.env
378+
379+
.vscode
380+
.vscode/**
381+
382+
messages/soon
383+
messages/soon/**
384+
385+
i18n/soon
386+
i18n/soon/**

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/commit-msg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
npx --no-install commitlint --edit "$1"

0 commit comments

Comments
 (0)