Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
db9ad5c
bump version to 1.3.1
nick1udwig Jun 10, 2025
87aa1a5
bump wasmtime to 0.33.0 (and associated other changes)
nick1udwig Jun 11, 2025
aaab15e
use latest process_lib
nick1udwig Jun 11, 2025
71aeffa
add mobile-first homepage
nick1udwig Jun 17, 2025
e991417
homepage: remove old and split out new
nick1udwig Jun 17, 2025
008ffde
homepage: open new tab if on localhost
nick1udwig Jun 17, 2025
aa818c4
homepage: properly handle all localhost cases: secure subdomain & not
nick1udwig Jun 17, 2025
97a92e3
homepage: add background
nick1udwig Jun 17, 2025
8c75f1e
homepage: improve draggable ux
nick1udwig Jun 17, 2025
a0a8a3a
homepage: add pwa
nick1udwig Jun 17, 2025
e52e1c2
homepage: remove unnecessary (and buggy) code
nick1udwig Jun 17, 2025
6545442
homepage: more work
nick1udwig Jun 18, 2025
e3e3f72
homepage: improve dragging
nick1udwig Jun 18, 2025
4aed36a
Format Rust code using rustfmt
github-actions[bot] Jun 18, 2025
342b9d3
homepage: get dragging working right
nick1udwig Jun 18, 2025
31d1eb7
homepage: get pwa icon working
nick1udwig Jun 18, 2025
2efb294
Merge pull request #749 from hyperware-ai/hf/mobile-first-homepage-2
nick1udwig Jun 18, 2025
cd29b41
secure subdomains: increase security
nick1udwig Jun 19, 2025
20a394a
Format Rust code using rustfmt
github-actions[bot] Jun 19, 2025
fbe0ab3
secure subdomains: on non-localhost, dont require re-login to ssd
nick1udwig Jun 19, 2025
e0e767a
Format Rust code using rustfmt
github-actions[bot] Jun 19, 2025
2483921
Merge pull request #755 from hyperware-ai/hf/improve-secure-subdomains
nick1udwig Jun 19, 2025
3ba0e1f
Merge pull request #756 from hyperware-ai/hf/improve-secure-subdomains-2
nick1udwig Jun 19, 2025
25e01dc
terminal: update splash to hyperware logo
nick1udwig Jun 20, 2025
f8d9882
http: improve local_only detection of rev proxy
nick1udwig Jun 23, 2025
c7b56a1
contacts and fonts
0x70b1a5 Jun 23, 2025
0d10269
Format Rust code using rustfmt
github-actions[bot] Jun 23, 2025
4cfcfef
add `expose-local` flag: default off
nick1udwig Jun 23, 2025
41af6d8
Format Rust code using rustfmt
github-actions[bot] Jun 23, 2025
cc0a1f6
Merge pull request #757 from hyperware-ai/contacts-and-fonts
nick1udwig Jun 23, 2025
b03ffff
Merge pull request #758 from hyperware-ai/hf/lock-rpc-down
nick1udwig Jun 23, 2025
133b490
hypermap-cacher: work properly for simulation mode (fixes fakenodes n…
nick1udwig Jun 23, 2025
8cc37f3
Merge pull request #747 from hyperware-ai/develop
nick1udwig Jun 23, 2025
da914c6
bump to 1.4.0
nick1udwig Jun 23, 2025
69fca74
bump versions
nick1udwig Jun 23, 2025
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,295 changes: 1,299 additions & 996 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hyperdrive_lib"
authors = ["Sybil Technologies AG"]
version = "1.3.0"
version = "1.4.0"
edition = "2021"
description = "A general-purpose sovereign cloud computing platform"
homepage = "https://hyperware.ai"
Expand Down
38 changes: 35 additions & 3 deletions css/hyperware.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,36 @@
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');
@font-face {
font-family: 'chaneyextended';
src: url('/chaneyextended.woff2') format('woff2');
}

@font-face {
font-family: 'Clash Display';
src: url('/ClashDisplay-Variable.woff2') format('woff2');
}

@font-face {
font-family: 'Neue Haas Grotesk';
src: url('/NHaasGroteskTXPro-55Rg.woff') format('woff');
font-weight: 500;
}

@font-face {
font-family: 'Neue Haas Grotesk';
src: url('/NHaasGroteskTXPro-75Bd.woff') format('woff');
font-weight: 700;
}

.display {
font-family: 'chaneyextended', sans-serif;
}

.prose {
font-family: 'Neue Haas Grotesk', sans-serif;
}

.clash {
font-family: 'Clash Display', sans-serif;
}

/* Variables */
:root {
Expand Down Expand Up @@ -34,7 +66,7 @@

--link-color: light-dark(var(--secondary-color), var(--primary-color));

--font-family-main: 'Space Grotesk', monospace;
--font-family-main: 'Neue Haas Grotesk', monospace;

/* Add modern CSS variables */
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
Expand Down Expand Up @@ -89,7 +121,7 @@ html {
}

body {
font-family: 'Space Grotesk', sans-serif;
font-family: 'Neue Haas Grotesk', sans-serif;
margin: 0;
overflow-x: hidden;
padding: 0;
Expand Down
1 change: 1 addition & 0 deletions css/uno.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const config = {
white: '#f6f6f6',
neon: '#dcff71',
blue: '#004fff',
iris: '#004fff',
orange: '#dd6e42',
magenta: '#bf1363',
transparent: 'transparent',
Expand Down
7 changes: 3 additions & 4 deletions hyperdrive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hyperdrive"
authors = ["Sybil Technologies AG"]
version = "1.3.0"
version = "1.4.0"
edition = "2021"
description = "A general-purpose sovereign cloud computing platform"
homepage = "https://hyperware.ai"
Expand Down Expand Up @@ -42,7 +42,6 @@ alloy-sol-macro = "0.8.15"
alloy-sol-types = "0.8.15"
anyhow = "1.0.71"
argon2 = "0.5.3"
async-trait = "0.1.71"
base64 = "0.22.0"
bincode = "1.3.3"
chrono = "0.4.31"
Expand Down Expand Up @@ -84,6 +83,6 @@ unicode-segmentation = "1.11"
unicode-width = "0.1.13"
url = "2.4.1"
warp = "0.3.5"
wasmtime = "27.0.0"
wasmtime-wasi = "27.0.0"
wasmtime = "33.0.0"
wasmtime-wasi = "33.0.0"
zip = "1.1.1"
73 changes: 29 additions & 44 deletions hyperdrive/packages/app-store/Cargo.lock

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

4 changes: 2 additions & 2 deletions hyperdrive/packages/app-store/app-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ alloy-primitives = "0.8.15"
alloy-sol-types = "0.8.15"
anyhow = "1.0"
bincode = "1.3.3"
hyperware_process_lib = "1.2.0"
hyperware_process_lib = "2.0.0"
process_macros = "0.1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -20,7 +20,7 @@ sha2 = "0.10.8"
sha3 = "0.10.8"
url = "2.4.1"
urlencoding = "2.1.0"
wit-bindgen = "0.36.0"
wit-bindgen = "0.42.1"
zip = { version = "1.1.1", default-features = false }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion hyperdrive/packages/app-store/app-store/src/http_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn make_widget() -> String {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Space Grotesk', monospace;
font-family: 'Neue Haas Grotesk', monospace;
}

body {
Expand Down
4 changes: 2 additions & 2 deletions hyperdrive/packages/app-store/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ alloy-primitives = "0.8.15"
alloy-sol-types = "0.8.15"
anyhow = "1.0"
bincode = "1.3.3"
hyperware_process_lib = "1.2.0"
hyperware_process_lib = "2.0.0"
process_macros = "0.1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -20,7 +20,7 @@ sha2 = "0.10.8"
sha3 = "0.10.8"
url = "2.4.1"
urlencoding = "2.1.0"
wit-bindgen = "0.36.0"
wit-bindgen = "0.42.1"
zip = { version = "1.1.1", default-features = false }

[lib]
Expand Down
4 changes: 2 additions & 2 deletions hyperdrive/packages/app-store/download/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ simulation-mode = []

[dependencies]
anyhow = "1.0"
hyperware_process_lib = "1.2.0"
hyperware_process_lib = "2.0.0"
process_macros = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
wit-bindgen = "0.42.1"

[lib]
crate-type = ["cdylib"]
Expand Down
4 changes: 2 additions & 2 deletions hyperdrive/packages/app-store/downloads/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ simulation-mode = []

[dependencies]
anyhow = "1.0"
hyperware_process_lib = "1.2.0"
hyperware_process_lib = "2.0.0"
process_macros = "0.1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -17,7 +17,7 @@ sha2 = "0.10.8"
sha3 = "0.10.8"
url = "2.4.1"
urlencoding = "2.1.0"
wit-bindgen = "0.36.0"
wit-bindgen = "0.42.1"
zip = { version = "1.1.4", default-features = false, features = ["deflate"] }

[lib]
Expand Down
4 changes: 2 additions & 2 deletions hyperdrive/packages/app-store/ft-worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ simulation-mode = []
[dependencies]
anyhow = "1.0"
bincode = "1.3.3"
hyperware_process_lib = "1.2.0"
hyperware_process_lib = "2.0.0"
process_macros = "0.1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.8"
wit-bindgen = "0.36.0"
wit-bindgen = "0.42.1"
zip = { version = "1.1.4", default-features = false, features = ["deflate"] }

[lib]
Expand Down
4 changes: 2 additions & 2 deletions hyperdrive/packages/app-store/install/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ simulation-mode = []

[dependencies]
anyhow = "1.0"
hyperware_process_lib = "1.2.0"
hyperware_process_lib = "2.0.0"
process_macros = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
wit-bindgen = "0.36.0"
wit-bindgen = "0.42.1"

[lib]
crate-type = ["cdylib"]
Expand Down
Loading