From c1d2db640bf030f366f0f065b2c3a1ace20f0b30 Mon Sep 17 00:00:00 2001
From: Adam Procter <adamprocter@researchnot.es>
Date: Wed, 26 Aug 2020 17:52:33 +0100
Subject: [PATCH] new connections & updated onboarding

connections v1 working and updated onboarding
---
 CHANGELOG.md                   | 12 ++++++++++++
 app/package.json               |  2 +-
 app/src/components/OnBoard.vue | 14 +++++++-------
 3 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2ca3674..478d248 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+# 0.1.21
+
+_26th August 2020_
+
+### Changed
+
+- Minor tweaks to order for of onboarding
+
+### Added
+
+- version 1 of connections you can now connect nodes, drawn using PixiJS
+
 # 0.1.20
 
 _14th July 2020_
diff --git a/app/package.json b/app/package.json
index 9cb069b..7f19014 100644
--- a/app/package.json
+++ b/app/package.json
@@ -1,6 +1,6 @@
 {
   "name": "nodenogg.in",
-  "version": "0.1.20",
+  "version": "0.1.21",
   "private": true,
   "scripts": {
     "serve": "vue-cli-service serve",
diff --git a/app/src/components/OnBoard.vue b/app/src/components/OnBoard.vue
index d860dfc..fbc40b8 100644
--- a/app/src/components/OnBoard.vue
+++ b/app/src/components/OnBoard.vue
@@ -4,8 +4,8 @@
       class="innernode"
       :w="300"
       :h="335"
-      :x="560"
-      :y="50"
+      :x="5"
+      :y="15"
       :z="1"
       :draggable="true"
       style="background-color: #6fcf97;"
@@ -41,10 +41,10 @@
 
     <vue-draggable-resizable
       class="innernode"
-      :w="300"
+      :w="310"
       :h="375"
-      :x="1100"
-      :y="50"
+      :x="1050"
+      :y="15"
       :z="1"
       :draggable="true"
       style="background-color: #6fcf97;"
@@ -92,9 +92,9 @@ export default {
       localmicrocosm: Router.currentRoute.params.microcosm,
       clientid: '',
       nodetext:
-        '## 3. What shall we call you ? 💥 \n First we need to connect this device to your ideas. This name is what allows you to create and edit your nodes and can be anything you like and this name is always anonymous.',
+        '## What shall we call you ? 👩‍🚀 \n First we need to connect this device to your ideas. This name is what allows you to create and edit your nodes and can be anything you like and this name is always anonymous.',
       nodetext2:
-        '## 5. Start those engines ! 🏎 \n Now you can create your own microcosm to store your ideas and ask people to join you, either just tell them the name of the microcosm or share the alpha.nodenogg.in URL and add the ending; </br><em><b>/microcosm/nameofyourmicrocosm</b></em>',
+        '## Join/Start a microcosm ! 🚀 \n Now you can create your own microcosm to store your ideas and ask people to join you, either just tell them the name of the microcosm or share the alpha.nodenogg.in URL and add the ending; </br><em><b>/microcosm/nameofyourmicrocosm</b></em>',
       name: false,
       microcosm: false,
       // partc: false,
-- 
GitLab