Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop' into ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 29, 2021
2 parents dfbccfe + bb98bab commit 6b71bab
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-18.04, windows-latest]
platform: [macos-latest, windows-latest]
env:
MACOSX_DEPLOYMENT_TARGET: 10.9

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you already have a `.webhapp`

Requirements:

- On the zome side, target `hdk v0.0.107`.
- On the zome side, target `hdk v0.0.108`.
- On the UI side, target `@holochain/conductor-api v0.2.1` (v0.2.0 is not going to work).

When your UI is served from the launcher and `AppWebsocket.connect()` or `AdminWebsocket.connect()` are called, the call will be redirected to the actual port in which Holochain is running its interfaces. Also, when the `appWebsocket.appInfo({ installed_app_info: <APP_ID> })` is called, the `APP_ID` parameter is going to be replaced with the actual application ID that is installed in the Launcher.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "launcher",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"scripts": {
"dev": "npm run build:ui && npm run tauri dev",
Expand Down
2 changes: 1 addition & 1 deletion 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 src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
license = ""
name = "holochain-launcher"
repository = ""
version = "0.3.1"
version = "0.3.2"

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

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/launch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub async fn launch_children_processes(admin_port: u16) -> Result<(), String> {

log::info!("Launched lair-keystore");

thread::sleep(Duration::from_millis(300));
thread::sleep(Duration::from_millis(1000));

let (mut holochain_rx, _) = Command::new_sidecar("holochain")
.or(Err(String::from("Can't find holochain binary")))?
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "Holochain Launcher",
"version": "0.3.1"
"version": "0.3.2"
},
"build": {
"distDir": "target/webpack_dist",
Expand Down
2 changes: 1 addition & 1 deletion src/components/About.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<mwc-dialog heading="About" ref="dialog">
<div class="column">
<span> Holochain Launcher v0.3.1 </span>
<span> Holochain Launcher v0.3.2 </span>
<span style="margin-top: 8px"> Holochain v0.0.108 </span>
<span style="margin-top: 8px"> Lair Keystore v0.0.4 </span>
</div>
Expand Down

0 comments on commit 6b71bab

Please sign in to comment.