mirror of
https://github.com/dergigi/boris.git
synced 2026-02-23 16:04:29 +01:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
19d88c5fba | ||
|
|
461b0936e2 | ||
|
|
e9ee5e87be | ||
|
|
5e66c5ef76 | ||
|
|
307dc3d726 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -7,3 +7,7 @@ dist
|
|||||||
# Misc
|
# Misc
|
||||||
*.log
|
*.log
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# Applesauce Reference
|
||||||
|
applesauce
|
||||||
|
|
||||||
|
|||||||
25
CHANGELOG.md
25
CHANGELOG.md
@@ -5,6 +5,30 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.3.6] - 2025-10-10
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Compact date format for highlights (now, 5m, 3h, 2d, 1mo, 1y)
|
||||||
|
- Ultra-compact date format for bookmarks sidebar
|
||||||
|
- Encode event links as nevent/naddr per NIP-19 for better client compatibility
|
||||||
|
- Render /explore within ThreePaneLayout to keep side panels visible
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Remove incorrect padding-right from highlights container
|
||||||
|
- Reduce font size of highlight metadata for cleaner look
|
||||||
|
- Position highlight FAB button relative to article pane instead of viewport
|
||||||
|
- Adjust relay indicator position for better visual alignment
|
||||||
|
- Ensure highlight metadata elements align on single visual line with consistent line-height
|
||||||
|
- Prevent bookmark icons from being cut off in compact view
|
||||||
|
- Clean up nested borders in bookmark items and sidebar view mode controls
|
||||||
|
- Align highlight metadata elements on single line in sidebar
|
||||||
|
- Change explore header icon from compass to newspaper
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Make connecting notification more subtle with muted blue background
|
||||||
|
- Update Boris pubkey for zap splits to npub19802see0gnk3vjlus0dnmfdagusqrtmsxpl5yfmkwn9uvnfnqylqduhr0x
|
||||||
|
- Update domain references to read.withboris.com (URLs, SEO metadata, and documentation)
|
||||||
|
|
||||||
## [0.3.5] - 2025-10-09
|
## [0.3.5] - 2025-10-09
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
@@ -509,6 +533,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Optimize relay usage following applesauce-relay best practices
|
- Optimize relay usage following applesauce-relay best practices
|
||||||
- Use applesauce-react event models for better profile handling
|
- Use applesauce-react event models for better profile handling
|
||||||
|
|
||||||
|
[0.3.6]: https://github.com/dergigi/boris/compare/v0.3.5...v0.3.6
|
||||||
[0.3.5]: https://github.com/dergigi/boris/compare/v0.3.4...v0.3.5
|
[0.3.5]: https://github.com/dergigi/boris/compare/v0.3.4...v0.3.5
|
||||||
[0.3.4]: https://github.com/dergigi/boris/compare/v0.3.3...v0.3.4
|
[0.3.4]: https://github.com/dergigi/boris/compare/v0.3.3...v0.3.4
|
||||||
[0.3.3]: https://github.com/dergigi/boris/compare/v0.3.2...v0.3.3
|
[0.3.3]: https://github.com/dergigi/boris/compare/v0.3.2...v0.3.3
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "boris",
|
"name": "boris",
|
||||||
"version": "0.3.6",
|
"version": "0.3.7",
|
||||||
"description": "A minimal nostr client for bookmark management",
|
"description": "A minimal nostr client for bookmark management",
|
||||||
"homepage": "https://read.withboris.com/",
|
"homepage": "https://read.withboris.com/",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@@ -27,8 +27,7 @@ function AppRoutes({
|
|||||||
const accountManager = Hooks.useAccountManager()
|
const accountManager = Hooks.useAccountManager()
|
||||||
|
|
||||||
const handleLogout = () => {
|
const handleLogout = () => {
|
||||||
accountManager.setActive(undefined as never)
|
accountManager.clearActive()
|
||||||
localStorage.removeItem('active')
|
|
||||||
showToast('Logged out successfully')
|
showToast('Logged out successfully')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user