js-draw 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.1.5
2
+ * Add a text-only renderer (only renders text objects at present) that can be activated with a screen reader.
3
+ * Make new text objects parallel to screen's horizontal axis.
4
+
1
5
  # 0.1.4
2
6
  * Option to enable pan gestures only if the editor has focus
3
7
  * Text tool bug fixes and improvements.
package/README.md CHANGED
@@ -36,8 +36,8 @@ const editor = new Editor(document.body);
36
36
  ### Without a bundler
37
37
  If you're not using a bundler, consider using the pre-bundled editor:
38
38
  ```html
39
- <!-- Replace 0.1.2 with the latest version of js-draw -->
40
- <script src="https://cdn.jsdelivr.net/npm/js-draw@0.1.2/dist/bundle.js"></script>
39
+ <!-- Replace 0.1.5 with the latest version of js-draw -->
40
+ <script src="https://cdn.jsdelivr.net/npm/js-draw@0.1.5/dist/bundle.js"></script>
41
41
  <script>
42
42
  const editor = new jsdraw.Editor(document.body);
43
43
  editor.addToolbar();