Skip to content

Commit 11b713c

Browse files
committed
chore: release v0.6.4
1 parent 702816f commit 11b713c

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## [0.6.4](https://github.com/plebbit/plebchan/compare/v0.6.3...v0.6.4) (2026-02-10)
2+
3+
4+
### Bug Fixes
5+
6+
* **components:** remove redundant instant scroll from quote links ([1bd1d34](https://github.com/plebbit/plebchan/commit/1bd1d34feebe39cdb319cefc4c67cf681e886032))
7+
* include manual post-number quotes in reply backlinks ([702816f](https://github.com/plebbit/plebchan/commit/702816f99b0e31d4d9b59e11831a519caf1c9e97))
8+
* **post:** improve user ID display with domain detection and length limits ([9d17213](https://github.com/plebbit/plebchan/commit/9d17213e6606fe42908131cf26cb64e1ed4061b1))
9+
* **post:** prevent quote hover highlight on op cards ([b8546a8](https://github.com/plebbit/plebchan/commit/b8546a86c55d25746b0a119e0519d77e36ae25e7))
10+
* **release:** remove duplicate architecture suffixes from artifact names ([b30eb15](https://github.com/plebbit/plebchan/commit/b30eb150d05707daee48b0599053c9fee15c1aac))
11+
* **release:** restore 5chan html zip artifact in tag releases ([cdd6be9](https://github.com/plebbit/plebchan/commit/cdd6be915ed98ef696b8efe04c2472654c457253))
12+
* **reply modal:** restore multiline quote insertion ([db70a91](https://github.com/plebbit/plebchan/commit/db70a9148b6a9d34d93ef8246cd7c062a285e29f))
13+
* shorten rendered user ID display from 12 to 8 characters ([24d329a](https://github.com/plebbit/plebchan/commit/24d329a3294cd49045410257472421d79359e990))
14+
* show OP badge for number-based quote links ([223ec4c](https://github.com/plebbit/plebchan/commit/223ec4c4943fba789a9e65b38fcbea08764ebfde))
15+
* update subscriptions subtitle to present tense ([8636005](https://github.com/plebbit/plebchan/commit/8636005f12eca2273aa8194e1293c80e9eff1888))
16+
17+
18+
### Features
19+
20+
* add copy user ID menu item and rename copy link to copy direct link ([4a96f88](https://github.com/plebbit/plebchan/commit/4a96f88efd2b21578cfc823b822a7286956bd9a1))
21+
* **post:** add backlinks for quotedCids ([c7c8c46](https://github.com/plebbit/plebchan/commit/c7c8c46557f09decee5aadaf0e65a087bd7c725b))
22+
* **posts:** support pseudonymityMode per-reply hiding ([c1b0d13](https://github.com/plebbit/plebchan/commit/c1b0d13bb7f26d94513e74b67e79c50cca997783))
23+
* **release:** extract one-liner release description ([3be7839](https://github.com/plebbit/plebchan/commit/3be78393d1af103ae6323d8e1615f742d4211a27))
24+
* render >>{number} as interactive quote links with hover preview ([c4b6c77](https://github.com/plebbit/plebchan/commit/c4b6c77d4cb49357065fa21b51fbf3209895c58a))
25+
* **reply-modal:** insert quoted post numbers at textarea caret ([8a192b4](https://github.com/plebbit/plebchan/commit/8a192b41b465995ce3421503f6811281c1aca3cc))
26+
27+
28+
129
## [0.6.3](https://github.com/plebbit/plebchan/compare/v0.6.2...v0.6.3) (2026-01-30)
230

331

@@ -8,6 +36,8 @@
836
* **find-forge-executable:** make appName preference effective ([16012b4](https://github.com/plebbit/plebchan/commit/16012b42395523b8770411c65d82767da41fdb81))
937
* **forge.config.js:** remove malformed iconUrl from Squirrel config ([c4e2f75](https://github.com/plebbit/plebchan/commit/c4e2f753e38a0d69198e7aba83c0b4968671e180))
1038
* **package.json:** remove unneeded var ([0c6e03d](https://github.com/plebbit/plebchan/commit/0c6e03d039d0303b3d7e896ff5e9ad169527db80))
39+
* **release:** resolve build failures for v0.6.3 ([01bda3b](https://github.com/plebbit/plebchan/commit/01bda3bffb3ba423a4fda447668dc3682263e945))
40+
* resolve PR 877 issues - route params, artifact paths, and build configs ([50ee10c](https://github.com/plebbit/plebchan/commit/50ee10cbc9055d9e2aa0e67df66b325b8f355b96))
1141

1242

1343

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "5chan",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"description": "A bitsocial client with a 4chan UI",
55
"type": "module",
66
"author": "Bitsocial Labs",

scripts/release-body.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ const htmlSection = section('Static HTML build', [htmlZip && `- 5chan-html (zip)
102102
const downloads = [macSection, winSection, linuxSection, androidSection, htmlSection].filter(Boolean).join('\n\n');
103103

104104
// One-liner summary of what changed in this release. Update before each release.
105-
const oneLinerDescription = 'This version rebrands the app to 5chan, introducing a set of new features and several performance improvements.';
105+
const oneLinerDescription =
106+
'This version adds multiple-replying support, 4chan-like user anonymity with or without user IDs depending on the board, and several bug fixes.';
106107

107108
const releaseBody = `${oneLinerDescription}
108109

0 commit comments

Comments
 (0)