Packages are makepad-<name> with the short name as the binary. Env vars follow (MAKEPAD_WM_*, MAKEPAD_FILES_*, MAKEPAD_TERMINAL_*), config moves under ~/.makepad/<app>/, the theme namespaces are mod.wm_theme and mod.browser_theme, the hosted AI envelope key is wm_ai. platform/video becomes makepad-platform-video so the video app can be makepad-video. Carries the Score entries that were pending in the WM's curated table. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
26 lines
770 B
TOML
26 lines
770 B
TOML
# image — a dumb picture viewer, part of the Makepad app family (terminal,
|
|
# wm, files, task, sheets, route, mixer...).
|
|
#
|
|
# Opens one image fit-to-window, centered on a dark makepad_wm_theme background.
|
|
# Left/Right walks the sorted sibling images in the same folder, +/-/wheel
|
|
# zoom around the cursor, 0 fits, 1 shows 100%, drag pans when zoomed,
|
|
# Escape/Q/Space quits. `--preview <path>` sizes the window as a popup.
|
|
|
|
[package]
|
|
name = "makepad-image"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "image"
|
|
|
|
[lib]
|
|
name = "makepad_image"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "image"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
makepad-widgets = { path = "../../widgets" }
|
|
makepad-wm-theme = { path = "../../libs/wm_theme" }
|
|
makepad-wm-api = { path = "../../libs/wm_api" }
|