diff --git a/canvas-10-feb/src/components/NodesLayer.vue b/canvas-10-feb/src/components/NodesLayer.vue index f5725d1cdeaf920d6ed6207096b7a9d1901cc20b..6028482f5bc21ea0094ce072b50bce1eb5ed996f 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 a707475ca72df626ad43685fcda275a5f62519ba..6fb2ba680b61689e34290c3f1cb2b7b52c41e048 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 90017ebffefd753e3edb16272bacf7059c1913e9..67700496e10030e58513fd5bc67aba697eaf266a 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 & 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> Data is not yet encrypted.</li> + <li> Export is not turned on yet.</li> + <li> 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> + + <a href="https://discourse.adamprocter.co.uk">discuss</a>(and feedback) + </li> + <li> + + <a href="https://discursive.adamprocter.co.uk/categories/phd/" + >discursive (phd catergory link)</a + > + (blog) + </li> + <li> + + <a href="https://researchnot.es">researchnot.es</a> (blog) + </li> + <li> + + <a href="https://manifold.soton.ac.uk">manifold</a> (writing) + </li> + <li> + + <a href="https://fragmentum.adamprocter.co.uk">fragmentum</a> + (microcast) + </li> + <li> + + <a href="https://gitlab.adamprocter.co.uk/adamprocter/couchdocs" + >gitlab</a + > + (code) + </li> + <li> + + <a href="https://github.com/adamprocter/couchdoc-mirror/issues" + >issues</a + > + (raise and review) + </li> + </ul> </div> </template>