Skip to content

Commit 69b7581

Browse files
committed
Notedeck Alpha 2 Release - v0.3
Thanks again to kernel and ken, as well as some new contributors: kieran, daniel saxton for our alpha 2 release! Added ===== - Clicking a mention now opens profile page (William Casarin) - Note previews when hovering reply descriptions (William Casarin) - Media uploads (kernelkind) - Profile editing (kernelkind) - Add hashtags to posts (Daniel Saxton) - Enhanced command-line interface for user interactions (Ken Sedgwick) - Various Android updates and compatibility improvements (Ken Sedgwick, William Casarin) - Debug features for user relay-list and mute list synchronization (Ken Sedgwick) Changed ======= - Add confirmation when deleting columns (kernelkind) - Enhance Android build and performance (Ken Sedgwick) - Image cache handling using sha256 hash (kieran) - Introduction of decks_cache and improvements (kernelkind) - Migrated to egui v0.29.1 (William Casarin) - Only show column delete button when not navigating (William Casarin) - Show profile pictures in column headers (William Casarin) - Show usernames in user columns (William Casarin) - Switch to only notes & replies on some tabs (William Casarin) - Tombstone muted notes (Ken) - Pointer interactions enhancements in UI (William Casarin) - Persistent theme setup across sessions (kernelkind) - Increased ping intervals for network performance (William Casarin) - Nostrdb update for async support (Ken Sedgwick) Fixed ===== - Fix GIT_COMMIT_HASH compilation issue (William Casarin) - Fix avatar alignment in profile previews (William Casarin) - Fix broken quote repost hitbox (William Casarin) - Fix crash when navigating in debug mode (William Casarin) - Fix long delays when reconnecting (William Casarin) - Fix repost button size (William Casarin) - Fixed since kind filters (kernelkind) - Clippy warnings resolved (Dimitris Apostolou) Refactoring & Improvements ========================== - Numerous internal structural improvements and modularization (William Casarin, Ken Sedgwick) Signed-off-by: William Casarin <[email protected]>
1 parent 5d4548d commit 69b7581

File tree

6 files changed

+48
-8
lines changed

6 files changed

+48
-8
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Notedeck Alpha 2 - v0.3 - 2025-01-31
2+
3+
## Added
4+
- Clicking a mention now opens profile page (William Casarin)
5+
- Note previews when hovering reply descriptions (William Casarin)
6+
- Media uploads (kernelkind)
7+
- Profile editing (kernelkind)
8+
- Add hashtags to posts (Daniel Saxton)
9+
- Enhanced command-line interface for user interactions (Ken Sedgwick)
10+
- Various Android updates and compatibility improvements (Ken Sedgwick, William Casarin)
11+
- Debug features for user relay-list and mute list synchronization (Ken Sedgwick)
12+
13+
## Changed
14+
- Add confirmation when deleting columns (kernelkind)
15+
- Enhance Android build and performance (Ken Sedgwick)
16+
- Image cache handling using sha256 hash (kieran)
17+
- Introduction of decks_cache and improvements (kernelkind)
18+
- Migrated to egui v0.29.1 (William Casarin)
19+
- Only show column delete button when not navigating (William Casarin)
20+
- Show profile pictures in column headers (William Casarin)
21+
- Show usernames in user columns (William Casarin)
22+
- Switch to only notes & replies on some tabs (William Casarin)
23+
- Tombstone muted notes (Ken)
24+
- Pointer interactions enhancements in UI (William Casarin)
25+
- Persistent theme setup across sessions (kernelkind)
26+
- Increased ping intervals for network performance (William Casarin)
27+
- Nostrdb update for async support (Ken Sedgwick)
28+
29+
## Fixed
30+
- Fix GIT_COMMIT_HASH compilation issue (William Casarin)
31+
- Fix avatar alignment in profile previews (William Casarin)
32+
- Fix broken quote repost hitbox (William Casarin)
33+
- Fix crash when navigating in debug mode (William Casarin)
34+
- Fix long delays when reconnecting (William Casarin)
35+
- Fix repost button size (William Casarin)
36+
- Fixed since kind filters (kernelkind)
37+
- Clippy warnings resolved (Dimitris Apostolou)
38+
39+
## Refactoring & Improvements
40+
- Numerous internal structural improvements and modularization (William Casarin, Ken Sedgwick)

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/enostr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "enostr"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

crates/notedeck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notedeck"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
edition = "2021"
55
description = "The APIs and data structures used by notedeck apps"
66

crates/notedeck_chrome/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notedeck_chrome"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["William Casarin <[email protected]>", "kernelkind <[email protected]>"]
55
edition = "2021"
66
default-run = "notedeck"

crates/notedeck_columns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notedeck_columns"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["William Casarin <[email protected]>"]
55
edition = "2021"
66
#rust-version = "1.60"

0 commit comments

Comments
 (0)