diff --git a/app/client.imba b/app/client.imba index ef3c15e..22c5695 100644 --- a/app/client.imba +++ b/app/client.imba @@ -20,6 +20,11 @@ tag app def mount $input.focus! + unless global.localStorage.fuzzyhome_visited + await put_link { name: "fuzzy home help", link: "github.com/familyfriendlymikey/fuzzyhome" } + await put_link { name: "google", link: "google.com" } + await put_link { name: "youtube", link: "youtube.com" } + global.localStorage.fuzzyhome_visited = yes state.links = await db.reload! sort_links! diff --git a/package.json b/package.json index e335b98..5beff5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fuzzyhome", - "version": "0.0.16", + "version": "0.0.17", "scripts": { "start": "imba run -SMH --baseurl . -w server.imba", "build-app": "imba build -SMH --baseurl . server.imba", diff --git a/sw.imba b/sw.imba index ba5e741..eb2a4d3 100644 --- a/sw.imba +++ b/sw.imba @@ -1,7 +1,7 @@ let p = console.log const app_prefix = "fuzzyhome_cache" -const version = "0.0.16" +const version = "0.0.17" const cache_name = "{app_prefix}-{version}"