diff --git a/changelog/0.1.2-beta.0.md b/changelog/0.1.2-beta.0.md new file mode 100644 index 0000000000..b7bf4f7b52 --- /dev/null +++ b/changelog/0.1.2-beta.0.md @@ -0,0 +1,13 @@ +# 0.1.2-beta.0 Changelog + +## Features + +- Custom CSS is now supported, so you can add any CSS style and apply it to the Entry content view. +- New Zen mode has been added, so you can now read the full text in full screen without interruption, and we've optimized the user experience of the ToC component in full screen mode as well as added a new brief timeline on the left side. +- Support for hiding extra badges around the feed, such as Claim or Boost, which you may not want to see. + +## Improvements + +- Fixed the issue that Entry list cannot be loaded offline. +- Optimized the performance experience of some scenarios. +- The UI of some components has been fine-tuned to look more natural. diff --git a/package.json b/package.json index c426407d00..d8cbe0033c 100644 --- a/package.json +++ b/package.json @@ -132,7 +132,8 @@ "bump": { "before": [ "git pull --rebase", - "tsx scripts/apply-changelog.ts ${NEW_VERSION}" + "tsx scripts/apply-changelog.ts ${NEW_VERSION}", + "git add changelog/${NEW_VERSION}.md" ], "after": [ "gh pr create --title 'chore: Release v${NEW_VERSION}' --body 'v${NEW_VERSION}' --base main --head dev"