Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .myownmesh-rev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.1
v0.3.2
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ members = [
exclude = ["gui", "node"]

[workspace.package]
version = "0.2.47"
version = "0.2.48"
edition = "2021"
rust-version = "1.88.0"
license = "MIT"
Expand All @@ -39,16 +39,16 @@ repository = "https://github.com/mrjeeves/AllMyStuff"
description = "Map all your stuff, then wire it together across a mesh you own."

[workspace.dependencies]
allmystuff-inventory = { path = "crates/allmystuff-inventory", version = "0.2.47" }
allmystuff-graph = { path = "crates/allmystuff-graph", version = "0.2.47" }
allmystuff-protocol = { path = "crates/allmystuff-protocol", version = "0.2.47" }
allmystuff-bridge = { path = "crates/allmystuff-bridge", version = "0.2.47" }
allmystuff-session = { path = "crates/allmystuff-session", version = "0.2.47" }
allmystuff-updater = { path = "crates/allmystuff-updater", version = "0.2.47" }
allmystuff-service = { path = "crates/allmystuff-service", version = "0.2.47" }
allmystuff-mobile-core = { path = "crates/allmystuff-mobile-core", version = "0.2.47" }
allmystuff-cec-protocol = { path = "crates/allmystuff-cec-protocol", version = "0.2.47" }
allmystuff-cec-consent = { path = "crates/allmystuff-cec-consent", version = "0.2.47" }
allmystuff-inventory = { path = "crates/allmystuff-inventory", version = "0.2.48" }
allmystuff-graph = { path = "crates/allmystuff-graph", version = "0.2.48" }
allmystuff-protocol = { path = "crates/allmystuff-protocol", version = "0.2.48" }
allmystuff-bridge = { path = "crates/allmystuff-bridge", version = "0.2.48" }
allmystuff-session = { path = "crates/allmystuff-session", version = "0.2.48" }
allmystuff-updater = { path = "crates/allmystuff-updater", version = "0.2.48" }
allmystuff-service = { path = "crates/allmystuff-service", version = "0.2.48" }
allmystuff-mobile-core = { path = "crates/allmystuff-mobile-core", version = "0.2.48" }
allmystuff-cec-protocol = { path = "crates/allmystuff-cec-protocol", version = "0.2.48" }
allmystuff-cec-consent = { path = "crates/allmystuff-cec-consent", version = "0.2.48" }

serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion gui/mobile/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions gui/mobile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "allmystuff-mobile"
version = "0.2.47"
version = "0.2.48"
description = "AllMyStuff mobile (iOS/Android) — a Tauri 2 shell around the shared Svelte UI, backed by the phone's embedded viewer/controller core."
authors = ["Chris Paul"]
license = "MIT"
Expand Down Expand Up @@ -88,8 +88,8 @@ allmystuff-protocol = { path = "../../crates/allmystuff-protocol", optional = tr
# socket, same wire protocol, inside the app sandbox. Pinned to the merge
# that exposed the daemon as a library (which sits atop the system-DNS-SD
# discovery backend the phone rides).
myownmesh = { git = "https://github.com/mrjeeves/MyOwnMesh", tag = "v0.3.1", optional = true }
myownmesh-core = { git = "https://github.com/mrjeeves/MyOwnMesh", tag = "v0.3.1", optional = true }
myownmesh = { git = "https://github.com/mrjeeves/MyOwnMesh", tag = "v0.3.2", optional = true }
myownmesh-core = { git = "https://github.com/mrjeeves/MyOwnMesh", tag = "v0.3.2", optional = true }
# One-time identity migration: derive the public key from the adapter-era
# `device-seed.bin` and write it as the daemon's anchor file, so the phone
# keeps its device id across the engine swap.
Expand Down
2 changes: 1 addition & 1 deletion gui/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "allmystuff-mobile",
"private": true,
"version": "0.2.47",
"version": "0.2.48",
"type": "module",
"description": "AllMyStuff mobile (iOS/Android) Tauri shell. Reuses the desktop GUI's Svelte frontend (../) verbatim; this package only carries the Tauri CLI and the mobile Rust backend.",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion gui/mobile/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "AllMyStuff",
"version": "0.2.47",
"version": "0.2.48",
"identifier": "works.allmystuff.mobile",
"build": {
"frontendDist": "../dist",
Expand Down
2 changes: 1 addition & 1 deletion gui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "allmystuff-gui",
"private": true,
"version": "0.2.47",
"version": "0.2.48",
"type": "module",
"packageManager": "pnpm@10.33.0",
"description": "AllMyStuff — the friendly graph for all your stuff. Tauri + Svelte 5.",
Expand Down
2 changes: 1 addition & 1 deletion gui/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gui/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[package]
name = "allmystuff-gui"
version = "0.2.47"
version = "0.2.48"
description = "AllMyStuff GUI — Tauri shell: scans this machine and talks to the myownmesh daemon over its control socket."
authors = ["Chris Paul"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

[package]
name = "allmystuff-node"
version = "0.2.47"
version = "0.2.48"
description = "AllMyStuff headless mesh node — runs this machine on the mesh (presence + screen/camera/audio/input/terminal/files routes) with no GUI."
authors = ["Chris Paul"]
license = "MIT"
Expand Down
Loading