Skip to content

Commit bd9b5b1

Browse files
authored
Merge pull request #207 from RSSNext/dev
chore: release v0.0.1-alpha.4
2 parents f5e842d + 63139f2 commit bd9b5b1

102 files changed

Lines changed: 2267 additions & 782 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: 🐞 Bug report
2+
description: Report an issue
3+
labels: [pending triage]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: Describe the bug
13+
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
14+
placeholder: Bug description
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: feed-info
19+
attributes:
20+
label: Feed Info
21+
description: Please provide your feed id, feed url, and any other information that can help us reproduce the issue.
22+
placeholder: Feed ID, Feed URL, etc.
23+
validations:
24+
required: true
25+
26+
- type: checkboxes
27+
id: checkboxes
28+
attributes:
29+
label: Validations
30+
description: Before submitting the issue, please make sure you do the following
31+
options:
32+
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
33+
required: true
34+
- label: Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead.
35+
required: true
36+
- type: checkboxes
37+
id: contributions
38+
attributes:
39+
label: Contributions
40+
description: Please note that Open Source projects are maintained by volunteers, where your cases might not be always relevant to the others. It would make things move faster if you could help investigate and propose solutions.
41+
options:
42+
- label: I am willing to submit a PR to fix this issue
43+
- label: I am willing to submit a PR with failing tests (actually just go ahead and do it, thanks!)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 💬 Follow's Discord Server
4+
url: https://discord.gg/tUDVZjEr
5+
about: Want to discuss / chat with the community? Here you go!
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: 🚀 New feature proposal
2+
description: Propose a new feature
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for your interest in the project and taking the time to fill out this feature report!
9+
- type: textarea
10+
id: feature-description
11+
attributes:
12+
label: Clear and concise description of the problem
13+
description: "As a developer using this project I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!"
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: suggested-solution
18+
attributes:
19+
label: Suggested solution
20+
description: "In module [xy] we could provide following implementation..."
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: alternative
25+
attributes:
26+
label: Alternative
27+
description: Clear and concise description of any alternative solutions or features you've considered.
28+
- type: textarea
29+
id: additional-context
30+
attributes:
31+
label: Additional context
32+
description: Any other context or screenshots about the feature request here.
33+
- type: checkboxes
34+
id: checkboxes
35+
attributes:
36+
label: Validations
37+
description: Before submitting the issue, please make sure you do the following
38+
options:
39+
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
40+
required: true

.github/ISSUE_TEMPLATE/typo.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 👀 Typo / Grammar fix
2+
description: You can just go ahead and send a PR! Thank you!
3+
labels: []
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## PR Welcome!
9+
10+
If the typo / grammar issue is trivial and straightforward, you can help by **directly sending a quick pull request**!
11+
If you spot multiple of them, we suggest combining them into a single PR. Thanks!
12+
- type: textarea
13+
id: context
14+
attributes:
15+
label: Additional context

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!-- DO NOT IGNORE THE TEMPLATE!
2+
3+
Thank you for contributing!
4+
5+
Before submitting the PR, please make sure you do the following:
6+
7+
- Read the [Contributing Guide](https://github.com/antfu/contribute).
8+
- Check that there isn't already a PR that solves the problem the same way to avoid creating a duplicate.
9+
- Provide a description in this PR that addresses **what** the PR is solving, or reference the issue that it solves (e.g. `fixes #123`).
10+
- Ideally, include relevant tests that fail without this PR but pass with it.
11+
12+
-->
13+
14+
### Description
15+
16+
<!-- Please insert your description here and provide especially info about the "what" this PR is solving -->
17+
18+
### Linked Issues
19+
20+
21+
### Additional context
22+
23+
<!-- e.g. is there anything you'd like reviewers to focus on? -->

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ jobs:
8282
- name: Build
8383
if: matrix.os != 'macos-latest'
8484
run: pnpm build
85+
env:
86+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
8587

8688
- name: Build (macOS)
8789
if: matrix.os == 'macos-latest'
@@ -96,6 +98,7 @@ jobs:
9698
uses: actions/upload-artifact@v4
9799
env:
98100
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
99102
with:
100103
name: ${{ matrix.os }}
101104
path: |

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@
3838
"cSpell.words": [
3939
"rsshub"
4040
],
41-
"editor.foldingImportsByDefault": true
41+
"editor.foldingImportsByDefault": true,
42+
"commentTranslate.hover.enabled": false
4243
}

electron.vite.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,14 @@ export default defineConfig({
5555
appVersion:
5656
process.env.NODE_ENV === "development" ? "dev" : pkg.version,
5757
},
58+
sourcemaps: {
59+
filesToDeleteAfterUpload: ["dist/renderer/assets/*.js.map"],
60+
},
5861
}),
5962
],
63+
build: {
64+
sourcemap: true,
65+
},
6066
define: {
6167
APP_VERSION: JSON.stringify(pkg.version),
6268
APP_NAME: JSON.stringify(pkg.name),
Lines changed: 1 addition & 0 deletions
Loading

icons/mgc/volume_mute_cute_re.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)