diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index a33d94ac..d0584e26 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -19,6 +19,6 @@ jobs: token: ${{ secrets.RELEASE_TOKEN }} release-type: node package-name: release-please-action - release-as: 0.16.0 + release-as: 0.16.1 signoff: 'github-actions <41898282+github-actions[bot]@users.noreply.github.com>' changelog-types: '[{"type":"types","section":"Types","hidden":false},{"type":"revert","section":"Reverts","hidden":false},{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"improvement","section":"Feature Improvements","hidden":false},{"type":"docs","section":"Docs","hidden":false},{"type":"i18n","section":"I18n","hidden":true},{"type":"style","section":"Style Changes","hidden":false},{"type":"ci","section":"CI","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":true},{"type":"contributor","section":"New Contributors","hidden":false},{"type":"notice","section":"Notices","hidden":false}]' diff --git a/CHANGELOG.md b/CHANGELOG.md index b1541593..5d1fc753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.16.1](https://github.com/hakadao/BewlyBewly/compare/v0.16.0...v0.16.1) (2024-04-08) + + +### Features + +* adjust dialog styles && add tertiary type to button ([020889f](https://github.com/hakadao/BewlyBewly/commit/020889f8474c812392194210684a8603066b6a6d)) + + +### Bug Fixes + +* **ForYou:** Fix issue with dislike functionality in ForYou.vue component ([1074834](https://github.com/hakadao/BewlyBewly/commit/10748340672dc12cc18e646410fbac2cd27e031b)) +* **MorePop:** add missing watch later entry ([b657fed](https://github.com/hakadao/BewlyBewly/commit/b657fedc74f571c4bfc2a6b07eb0fdb3ae4bdc1f)) +* **VideoCard:** correct styling distortion when in horizontal mode ([f9be380](https://github.com/hakadao/BewlyBewly/commit/f9be38047194b91f7d2c1be8565cf6f987adef44)) + + +### Style Changes + +* **Dialog:** adjust dialog styles ([b39e876](https://github.com/hakadao/BewlyBewly/commit/b39e876148cfd8d8eba7e4bfaf64b9e5ae5d1af6)) + ## [0.16.0](https://github.com/hakadao/BewlyBewly/compare/v0.15.5...v0.16.0) (2024-04-07) diff --git a/package.json b/package.json index 706e51ad..be4cccb2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bewly-bewly", "displayName": "BewlyBewly", - "version": "0.16.0", + "version": "0.16.1", "private": true, "packageManager": "pnpm@8.15.3", "description": "Just make a few small changes to your Bilibili homepage.", diff --git a/src/components/Button.vue b/src/components/Button.vue index 9bb2cbdc..337254fc 100644 --- a/src/components/Button.vue +++ b/src/components/Button.vue @@ -3,6 +3,7 @@ interface Props { type?: | 'default' | 'primary' | 'secondary' + | 'tertiary' | 'info' | 'success' | 'warning' @@ -92,6 +93,12 @@ function handleClick(evt: MouseEvent) { --b-button-text-color: var(--bew-text-1); } + &--type-tertiary { + --b-button-color: transparent; + --b-button-color-hover: var(--bew-fill-2); + --b-button-text-color: var(--bew-text-1); + } + &--type-error { --b-button-color: var(--bew-error-color); --b-button-color-hover: var(--bew-error-color) diff --git a/src/components/Dialog.vue b/src/components/Dialog.vue index 95cc7b4e..88bd6a2f 100644 --- a/src/components/Dialog.vue +++ b/src/components/Dialog.vue @@ -90,12 +90,12 @@ function handleConfirm() { />