Skip to content
Snippets Groups Projects
Commit 3f963a32 authored by Adam Procter's avatar Adam Procter
Browse files

updated version / change log

parent 0c4d680c
No related branches found
No related tags found
No related merge requests found
# 0.1.17
_25th June 2020_
### Added
- Local _scribble_ mode, selecting the pencil mode on touch devices allows drawing, this is not saved and it local to you only (for now).
# 0.1.16 # 0.1.16
_22nd June 2020_ _22nd June 2020_
......
{ {
"name": "nodenogg.in", "name": "nodenogg.in",
"version": "0.1.16", "version": "0.1.17",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",
......
...@@ -69,7 +69,7 @@ export default { ...@@ -69,7 +69,7 @@ export default {
ctx.arc(touches[i].pageX, touches[i].pageY, 4, 0, 2 * Math.PI, false) // a circle at the start ctx.arc(touches[i].pageX, touches[i].pageY, 4, 0, 2 * Math.PI, false) // a circle at the start
ctx.fillStyle = color ctx.fillStyle = color
ctx.fill() ctx.fill()
// console.log('touchstart:' + i + '.') // console.log(touches[i].pageY)
} }
} }
}, },
......
...@@ -198,6 +198,8 @@ export default { ...@@ -198,6 +198,8 @@ export default {
constrainTranslation(newTranslation, this.translationBounds) constrainTranslation(newTranslation, this.translationBounds)
) )
}, },
// FIXME: I dont think this is working
handleMultiTouch(e) { handleMultiTouch(e) {
const [newTranslation, newScale] = changeViewFromMultiTouchEvent( const [newTranslation, newScale] = changeViewFromMultiTouchEvent(
this.interaction.origin.points, this.interaction.origin.points,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment