Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] dev from BewlyBewly:dev #59

Merged
merged 9 commits into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/workflows/release-it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,3 @@ jobs:
FIREFOX_EXTENSION_ID: ${{ secrets.FIREFOX_EXTENSION_ID }}
FIREFOX_JWT_ISSUER: ${{ secrets.FIREFOX_JWT_ISSUER }}
FIREFOX_JWT_SECRET: ${{ secrets.FIREFOX_JWT_SECRET }}

- name: Upload assets to a Release
uses: meeDamian/[email protected]
with:
files: |
extension.zip
extension-firefox.zip
token: ${{ secrets.RELEASE_TOKEN }}
allow_override: true
gzip: false
4 changes: 3 additions & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
"pnpm run build-firefox",
"pnpm run pack:zip",
"pnpm run pack:zip-firefox",
"pnpm run pack:zip-firefox-sources",
"pnpm run lint",
"pnpm run typecheck",
"pnpm run test --run"
]
],
"after:release": "gh release upload v${version} extension.zip extension-firefox.zip"
}
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.18.5

###    Bug Fixes

- Sync theme when loading page, close #736 &nbsp;-&nbsp; by **Stephen Zhou** in https://github.com/BewlyBewly/BewlyBewly/issues/736 [<samp>(6f19b)</samp>](https://github.com/BewlyBewly/BewlyBewly/commit/6f19b29)
- Detect mouse in app bar, close #718 &nbsp;-&nbsp; by **Stephen Zhou** in https://github.com/BewlyBewly/BewlyBewly/issues/718 [<samp>(40b68)</samp>](https://github.com/BewlyBewly/BewlyBewly/commit/40b6817)
- Attempt to fix edge extension corrupted &nbsp;-&nbsp; by **hakadao** in https://github.com/BewlyBewly/BewlyBewly/issues/705 [<samp>(70932)</samp>](https://github.com/BewlyBewly/BewlyBewly/commit/709329c)

### &nbsp;&nbsp;&nbsp;Performance

- Debounce `handleOsScroll` &nbsp;-&nbsp; by **hakadao** and **pengyunfei** in https://github.com/BewlyBewly/BewlyBewly/issues/735 [<samp>(a7488)</samp>](https://github.com/BewlyBewly/BewlyBewly/commit/a7488c1)
- **Home**: Improve home page performance &nbsp;-&nbsp; by **hakadao** in https://github.com/BewlyBewly/BewlyBewly/issues/733 [<samp>(26d4c)</samp>](https://github.com/BewlyBewly/BewlyBewly/commit/26d4cb1)

##### &nbsp;&nbsp;&nbsp;&nbsp;[View changes on GitHub](https://github.com/BewlyBewly/BewlyBewly/compare/v0.18.4...dev)

## [0.18.4](https://github.com/BewlyBewly/BewlyBewly/compare/v0.18.2...v0.18.4) (2024-05-06)


Expand Down
4 changes: 1 addition & 3 deletions knip.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"ignoreDependencies": [
"@iconify/json", "uno.css", "lint-staged"
],
"ignoreBinaries": [
"release-it"
],
"ignoreBinaries": ["gh"],
"rules": {
"types": "off",
"enumMembers": "off",
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bewly-bewly",
"displayName": "BewlyBewly",
"type": "module",
"version": "0.18.4",
"version": "0.18.5",
"private": true,
"packageManager": "[email protected]",
"description": "Just make a few small changes to your Bilibili homepage.",
Expand All @@ -23,6 +23,7 @@
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf extension.zip && jszip-cli add extension/* -o ./extension.zip",
"pack:zip-firefox": "rimraf extension-firefox.zip && jszip-cli add extension-firefox/* -o ./extension-firefox.zip",
"pack:zip-firefox-sources": "rimraf extension-firefox-sources.zip && git archive HEAD -o extension-firefox-sources.zip",
"pack:crx": "crx pack extension -o ./extension.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ FIREFOX=true web-ext build --source-dir ./extension-firefox --filename extension.xpi --overwrite-dest",
"start:chromium": "web-ext run --source-dir ./extension --target=chromium",
Expand Down Expand Up @@ -74,13 +75,16 @@
"kolorist": "^1.8.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"release-it": "^17.2.1",
"release-it-pnpm": "^4.5.1",
"rimraf": "^5.0.5",
"sass": "^1.77.0",
"simple-git-hooks": "^2.11.1",
"terser": "^5.31.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"unocss": "0.59.4",
"unplugin-auto-import": "^0.17.5",
"vite": "^5.2.11",
"vitest": "^1.6.0",
"vue": "^3.4.27",
Expand Down
Loading