From 614c3c18f360dccc9e09bfaf658e81038ecc34b9 Mon Sep 17 00:00:00 2001
From: Adam Procter <adamprocter@researchnot.es>
Date: Mon, 24 Feb 2020 19:16:52 +0000
Subject: [PATCH] updated for Build

---
 canvas-10-feb/src/components/NodesLayer.vue |  2 +-
 canvas-10-feb/src/store/index.js            |  2 +-
 canvas-10-feb/src/views/About.vue           | 85 ++++++++++++++++++++-
 3 files changed, 86 insertions(+), 3 deletions(-)

diff --git a/canvas-10-feb/src/components/NodesLayer.vue b/canvas-10-feb/src/components/NodesLayer.vue
index f5725d1..6028482 100644
--- a/canvas-10-feb/src/components/NodesLayer.vue
+++ b/canvas-10-feb/src/components/NodesLayer.vue
@@ -2,7 +2,7 @@
   <div ref="nodes" class="node">
     <vue-draggable-resizable
       :w="200"
-      :h="200"
+      :h="250"
       @dragging="onDrag"
       @resizing="onResize"
       @dragstop="onDragstop"
diff --git a/canvas-10-feb/src/store/index.js b/canvas-10-feb/src/store/index.js
index a707475..6fb2ba6 100644
--- a/canvas-10-feb/src/store/index.js
+++ b/canvas-10-feb/src/store/index.js
@@ -195,7 +195,7 @@ const store = new Vuex.Store({
     },
 
     MOVE_POS(state, e) {
-      console.log(e.localnodeid)
+      //console.log(e.localnodeid)
       var i
       for (i = 0; i < Object.keys(state.configPositions).length; i++) {
         if (e.localnodeid == state.configPositions[i].nodeid) {
diff --git a/canvas-10-feb/src/views/About.vue b/canvas-10-feb/src/views/About.vue
index 90017eb..6770049 100644
--- a/canvas-10-feb/src/views/About.vue
+++ b/canvas-10-feb/src/views/About.vue
@@ -1,6 +1,89 @@
 <template>
   <div class="about">
     <h1>About</h1>
-    <p>Mucking about for nodenogg.in</p>
+    <p>
+      Currently digital tools do a really poor job of extending the design
+      studio design thinking processes.
+    </p>
+    <p>
+      This tool is designed to support a new type of co-creation, a spatial and
+      messy area to work together connecting ideas and concepts.
+    </p>
+    <p>
+      Made by Adam Procter
+      <em>(+ helpers &amp; supporters)</em>
+    </p>
+
+    <h3>version 0.1.0</h3>
+    <ul>
+      <li>
+        Co-create and contribute ideas, with text, links and attachments with
+        other people in realtime.
+      </li>
+      <li>
+        Contributions displayed as a list and shared spatial view across all
+        devices.
+      </li>
+    </ul>
+    <h3>known issues</h3>
+    <ul>
+      <li>&nbsp;Data is not yet encrypted.</li>
+      <li>&nbsp;Export is not turned on yet.</li>
+      <li>&nbsp;Attachment viewing is broken.</li>
+      <li>
+        Some devices seem to have a bug when you first try to create or join an
+        microcosm, on second attempt it will work allowing device name.
+      </li>
+      <li>
+        When moving nodes on touch devices to confirm new location you must tap
+        with a second finger.
+      </li>
+      <li>
+        Please consider all data as not backed up, data structures and data will
+        ocasssionaly be deleted or changed remotely which may effect and break
+        your local data.
+      </li>
+    </ul>
+    <h2>Design-led ethical Edutech</h2>
+    <ul>
+      <li>
+        &nbsp;
+        <a href="https://discourse.adamprocter.co.uk">discuss</a>(and feedback)
+      </li>
+      <li>
+        &nbsp;
+        <a href="https://discursive.adamprocter.co.uk/categories/phd/"
+          >discursive (phd catergory link)</a
+        >
+        (blog)
+      </li>
+      <li>
+        &nbsp;
+        <a href="https://researchnot.es">researchnot.es</a> (blog)
+      </li>
+      <li>
+        &nbsp;
+        <a href="https://manifold.soton.ac.uk">manifold</a> (writing)
+      </li>
+      <li>
+        &nbsp;
+        <a href="https://fragmentum.adamprocter.co.uk">fragmentum</a>
+        (microcast)
+      </li>
+      <li>
+        &nbsp;
+        <a href="https://gitlab.adamprocter.co.uk/adamprocter/couchdocs"
+          >gitlab</a
+        >
+        (code)
+      </li>
+      <li>
+        &nbsp;
+        <a href="https://github.com/adamprocter/couchdoc-mirror/issues"
+          >issues</a
+        >
+        (raise and review)
+      </li>
+    </ul>
   </div>
 </template>
-- 
GitLab