Skip to content

Commit

Permalink
Merge pull request #207 from RSSNext/dev
Browse files Browse the repository at this point in the history
chore: release v0.0.1-alpha.4
  • Loading branch information
DIYgod authored Aug 5, 2024
2 parents f5e842d + 63139f2 commit bd9b5b1
Show file tree
Hide file tree
Showing 102 changed files with 2,267 additions and 782 deletions.
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: 🐞 Bug report
description: Report an issue
labels: [pending triage]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: bug-description
attributes:
label: Describe the bug
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!
placeholder: Bug description
validations:
required: true
- type: textarea
id: feed-info
attributes:
label: Feed Info
description: Please provide your feed id, feed url, and any other information that can help us reproduce the issue.
placeholder: Feed ID, Feed URL, etc.
validations:
required: true

- type: checkboxes
id: checkboxes
attributes:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
required: true
- label: Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead.
required: true
- type: checkboxes
id: contributions
attributes:
label: Contributions
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.
options:
- label: I am willing to submit a PR to fix this issue
- label: I am willing to submit a PR with failing tests (actually just go ahead and do it, thanks!)
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: 💬 Follow's Discord Server
url: https://discord.gg/tUDVZjEr
about: Want to discuss / chat with the community? Here you go!
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: 🚀 New feature proposal
description: Propose a new feature
labels: [enhancement]
body:
- type: markdown
attributes:
value: |
Thanks for your interest in the project and taking the time to fill out this feature report!
- type: textarea
id: feature-description
attributes:
label: Clear and concise description of the problem
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!"
validations:
required: true
- type: textarea
id: suggested-solution
attributes:
label: Suggested solution
description: "In module [xy] we could provide following implementation..."
validations:
required: true
- type: textarea
id: alternative
attributes:
label: Alternative
description: Clear and concise description of any alternative solutions or features you've considered.
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Any other context or screenshots about the feature request here.
- type: checkboxes
id: checkboxes
attributes:
label: Validations
description: Before submitting the issue, please make sure you do the following
options:
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
required: true
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/typo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 👀 Typo / Grammar fix
description: You can just go ahead and send a PR! Thank you!
labels: []
body:
- type: markdown
attributes:
value: |
## PR Welcome!
If the typo / grammar issue is trivial and straightforward, you can help by **directly sending a quick pull request**!
If you spot multiple of them, we suggest combining them into a single PR. Thanks!
- type: textarea
id: context
attributes:
label: Additional context
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- DO NOT IGNORE THE TEMPLATE!
Thank you for contributing!
Before submitting the PR, please make sure you do the following:
- Read the [Contributing Guide](https://github.com/antfu/contribute).
- Check that there isn't already a PR that solves the problem the same way to avoid creating a duplicate.
- Provide a description in this PR that addresses **what** the PR is solving, or reference the issue that it solves (e.g. `fixes #123`).
- Ideally, include relevant tests that fail without this PR but pass with it.
-->

### Description

<!-- Please insert your description here and provide especially info about the "what" this PR is solving -->

### Linked Issues


### Additional context

<!-- e.g. is there anything you'd like reviewers to focus on? -->
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ jobs:
- name: Build
if: matrix.os != 'macos-latest'
run: pnpm build
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

- name: Build (macOS)
if: matrix.os == 'macos-latest'
Expand All @@ -96,6 +98,7 @@ jobs:
uses: actions/upload-artifact@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
with:
name: ${{ matrix.os }}
path: |
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@
"cSpell.words": [
"rsshub"
],
"editor.foldingImportsByDefault": true
"editor.foldingImportsByDefault": true,
"commentTranslate.hover.enabled": false
}
6 changes: 6 additions & 0 deletions electron.vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,14 @@ export default defineConfig({
appVersion:
process.env.NODE_ENV === "development" ? "dev" : pkg.version,
},
sourcemaps: {
filesToDeleteAfterUpload: ["dist/renderer/assets/*.js.map"],
},
}),
],
build: {
sourcemap: true,
},
define: {
APP_VERSION: JSON.stringify(pkg.version),
APP_NAME: JSON.stringify(pkg.name),
Expand Down
1 change: 1 addition & 0 deletions icons/mgc/arrow_right_circle_cute_fi.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/mgc/volume_mute_cute_re.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Follow",
"type": "module",
"version": "0.0.1-alpha.3",
"version": "0.0.1-alpha.4",
"private": true,
"packageManager": "pnpm@9.6.0",
"description": "Next generation information browser",
Expand All @@ -16,7 +16,7 @@
"scripts": {
"build": "npm run typecheck && electron-vite build --outDir=dist && electron-forge make",
"build:macos": "npm run typecheck && electron-vite build --outDir=dist && electron-forge make --arch=universal --platform=darwin",
"build:web": "vite build",
"build:web": "rm -rf out/web && vite build",
"dev": "electron-vite dev --outDir=dist",
"dev:debug": "export DEBUG=true && vite --debug",
"dev:web": "vite",
Expand Down Expand Up @@ -90,7 +90,6 @@
"idb-keyval": "6.2.1",
"immer": "10.1.1",
"jotai": "2.9.1",

"lethargy": "1.0.9",
"linkedom": "^0.18.4",
"lodash-es": "4.17.21",
Expand Down Expand Up @@ -136,6 +135,7 @@
"@electron-forge/plugin-fuses": "7.4.0",
"@electron-forge/publisher-github": "7.4.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@hono/node-server": "1.12.0",
"@iconify-json/mingcute": "1.1.18",
"@pengx17/electron-forge-maker-appimage": "1.2.1",
"@tailwindcss/container-queries": "0.1.1",
Expand Down Expand Up @@ -167,6 +167,7 @@
"tailwindcss": "3.4.7",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-mkcert": "1.17.5",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.4"
},
Expand Down
Loading

0 comments on commit bd9b5b1

Please sign in to comment.