No description
Find a file
William Casarin 499bac5ca4
Some checks failed
CI / Rustfmt + Clippy (push) Has been cancelled
CI / Test (Linux) (push) Has been cancelled
CI / Test (macOS) (push) Has been cancelled
CI / Test (Windows) (push) Has been cancelled
CI / rpm/deb (push) Has been cancelled
CI / macOS dmg (push) Has been cancelled
CI / Windows Installer (push) Has been cancelled
CI / Upload Artifacts to Server (push) Has been cancelled
fix again
2025-03-23 18:49:04 -07:00
.cargo build: cross compile binary packages (rpm/deb/dmg) 2024-11-30 09:42:50 -08:00
.github/workflows ci: upload artifacts step 2025-02-04 11:18:21 -08:00
assets algo: fix algo feed icon 2025-02-26 19:32:19 -08:00
crates perf: reduce timeline overscan 2025-03-23 11:30:18 -07:00
scripts osx: update bundle name 2024-12-13 10:13:57 -08:00
.envrc switch to profiling crates 2025-03-23 11:30:18 -07:00
.gitignore switch to profiling crates 2025-03-23 11:30:18 -07:00
.rustfmt.toml add .rustfmt.toml to specify edition 2024-10-29 13:42:27 -07:00
Cargo.lock fix again 2025-03-23 18:49:04 -07:00
Cargo.toml fix again 2025-03-23 18:49:04 -07:00
CHANGELOG.md changelog: add unreleased section 2025-02-10 16:52:05 -08:00
check check: remove duplicate and disable wasm checks 2024-04-19 17:37:41 -07:00
damus.keystore add temporary release keystore 2023-07-09 12:29:39 -07:00
entitlements.plist macos packaging 2024-11-25 16:42:20 -05:00
example-android-config.json android: add push configs to readme 2025-03-11 10:52:29 -07:00
index.html codename is domus for now 2023-07-01 11:25:55 -07:00
LICENSE switch to GPLv3, not sure why it was MIT 2024-07-22 11:20:31 -07:00
Makefile android: improve make commands 2025-03-11 10:52:29 -07:00
preview switch to profiling crates 2025-03-23 11:30:18 -07:00
README.md android: add push configs to readme 2025-03-11 10:52:29 -07:00
SECURITY.md Create SECURITY.md 2024-04-09 23:05:31 -05:00
shell.nix remove extra crap from manifest 2025-03-11 10:47:32 -07:00
TODO switch to profiling crates 2025-03-23 11:30:18 -07:00
Trunk.toml trunk: notedeck 2023-07-06 08:40:50 -07:00

Damus Notedeck

CI

A multiplatform nostr client. Works on android and desktop

The desktop client is called notedeck:

notedeck

Android

Look it actually runs on android!

Usage

$ ./target/release/notedeck

Developer Setup

Desktop (Linux/MacOS, Windows?)

If you're running debian-based machine like Ubuntu or ElementaryOS, all you need is to install rustup and run sudo apt install build-essential.

$ cargo run --release 

Android

The dev shell should also have all of the android-sdk dependencies needed for development, but you still need the aarch64-linux-android rustup target installed:

$ rustup target add aarch64-linux-android

To run on a real device, just type:

$ cargo apk run --release -p notedeck_chrome

Android Emulator

  • Install Android Studio
  • Open 'Device Manager' in Android Studio
  • Add a new device with API level 34 and ABI arm64-v8a (even though the app uses 30, the 30 emulator can't find the vulkan adapter, but 34 works fine)
  • Start up the emulator

while the emulator is running, run:

cargo apk run --release -p notedeck_chrome

The app should appear on the emulator

Android Config

You can load custom views onto an android device for testing:

  1. Copy example-android-config.json to android-config.json

  2. Run make push-android-config to copy it to your device

Previews

You can preview individual widgets and views by running the preview script:

./preview RelayView
./preview ProfilePreview
# ... etc

When adding new previews you need to implement the Preview trait for your view/widget and then add it to the src/ui_preview/main.rs bin:

previews!(runner, name,
    RelayView,
    AccountLoginView,
    ProfilePreview,
);

Contributing

Configure the developer environment:

./scripts/dev_setup.sh

This will add the pre-commit hook to your local repository to suggest proper formatting before commits.