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

Commit

Permalink
Added tag filter
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Jun 30, 2022
1 parent 8cc2654 commit 020a491
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 46 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 0 additions & 5 deletions DESIGN.md

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ See [where](https://github.com/lightningrodlabs/where) for a complete working se

1. Open the `DevHub-0.0.x` app in the Holochain Launcher.
- In case there are multiple DevHub apps, open the one for the latest version.
2. Create a new App, with the appropriate "Name" and "Description". These are the details that the participants will see when downloading your application.
- Make the description short, maybe one or two lines.
2. Create a new App, **with the tag "app-store-ready"**. Without this tag, the app won't appear in the app library.
- Also input the appropriate "Name" and "Description". These are the details that the participants will see when downloading your application. Make the description short, maybe one or two lines.
3. Once you have created a new App, click "Upload new bundle".
4. Set the appropriate "Name" for your release (e.g. v0.0.1). This is the version name that the participants will see when downloading your application.
5. Select the `.webhapp` for your app and upload it.
Expand Down
26 changes: 0 additions & 26 deletions adding-holochain-version.md

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "launcher",
"version": "0.4.8",
"version": "0.4.9",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:ui\" \"sleep 7 && npm tauri dev\"",
Expand All @@ -10,7 +10,7 @@
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"tauri": "tauri",
"prepare": "curl -L --output DevHub.webhapp https://github.com/holochain/devhub-gui/releases/download/v0.7.0/DevHub.webhapp"
"prepare": "curl -L --output DevHub.webhapp https://github.com/holochain/devhub-gui/releases/download/v0.7.1/DevHub.webhapp"
},
"dependencies": {
"@holochain-open-dev/utils": "^0.0.9",
Expand Down
4 changes: 2 additions & 2 deletions 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.4.8"
version = "0.4.9"

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

Expand All @@ -30,7 +30,7 @@ mr_bundle = "0.0.8"
open = "2.0.1"
opener = "0.5.0"
portpicker = "0.1.1"
remoteprocess = "0.4.8"
remoteprocess = "0.4.9"
serde = {version = "1", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
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.4.8"
"version": "0.4.9"
},
"build": {
"distDir": "target/webpack_dist",
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
<div class="column" style="width: 512px" v-else-if="holochainVersions">
<div class="column">
<span> Holochain Launcher v0.4.8 </span>
<span> Holochain Launcher v0.4.9 </span>
<span
style="margin-top: 8px"
v-for="version in holochainVersions"
Expand Down
7 changes: 3 additions & 4 deletions src/devhub/get-happs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ export async function getAllPublishedApps(
const allAppsOutput = await appWebsocket.callZome({
cap_secret: null,
cell_id: cells.happs.cell_id,
fn_name: "get_all_happs",
fn_name: "get_happs_by_tags",
zome_name: "happ_library",
payload: null,
payload: ["app-store-ready"],
provenance: cells.happs.cell_id[1],
});

const allApps: Array<ContentAddress<Happ>> = allAppsOutput.payload.items;
const allApps: Array<ContentAddress<Happ>> = allAppsOutput.payload;

const promises = allApps.map((app) =>
getAppsReleases(appWebsocket, devhubHapp, app)
Expand Down

0 comments on commit 020a491

Please sign in to comment.