@standardnotes/community-cdn 0.9.3 → 0.10.0

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.
Files changed (266) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/entries/com.sncommunity.advanced-checklist.json +4 -2
  3. package/dist/entries/com.sncommunity.bold-editor.json +4 -2
  4. package/dist/entries/com.sncommunity.dracula-theme.json +3 -2
  5. package/dist/entries/com.sncommunity.markdown-basic.json +5 -3
  6. package/dist/entries/com.sncommunity.markdown-math.json +4 -2
  7. package/dist/entries/com.sncommunity.markdown-visual.json +5 -3
  8. package/dist/entries/com.sncommunity.minimal-markdown.json +5 -3
  9. package/dist/entries/org.standardnotes.advanced-markdown-editor.json +19 -0
  10. package/dist/entries/org.standardnotes.code-editor.json +19 -0
  11. package/dist/entries/org.standardnotes.legacy.file-safe.json +4 -3
  12. package/dist/entries/org.standardnotes.plus-editor.json +19 -0
  13. package/dist/entries/org.standardnotes.simple-task-editor.json +19 -0
  14. package/dist/packages.json +110 -20
  15. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.css +2341 -0
  16. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.css.map +1 -0
  17. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js +3 -0
  18. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js.LICENSE.txt +1 -0
  19. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js.map +1 -0
  20. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.eot +0 -0
  21. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.svg +2671 -0
  22. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.ttf +0 -0
  23. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.woff +0 -0
  24. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.woff2 +0 -0
  25. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/index.html +1 -0
  26. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/lib/component-relay.js +1 -0
  27. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/stylekit.css +3347 -0
  28. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymd.js +2 -0
  29. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymd.js.LICENSE.txt +6 -0
  30. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymde.css +7 -0
  31. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/highlightjs/highlightjs.js +2 -0
  32. package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/highlightjs/highlightjs.js.LICENSE.txt +1 -0
  33. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/comment/comment.js +1 -0
  34. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/comment/continuecomment.js +1 -0
  35. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/dialog/dialog.css +32 -0
  36. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/dialog/dialog.js +1 -0
  37. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/autorefresh.js +1 -0
  38. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/fullscreen.css +6 -0
  39. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/fullscreen.js +1 -0
  40. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/panel.js +1 -0
  41. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/placeholder.js +1 -0
  42. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/rulers.js +1 -0
  43. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/closebrackets.js +1 -0
  44. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/closetag.js +1 -0
  45. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/continuelist.js +1 -0
  46. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/matchbrackets.js +1 -0
  47. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/matchtags.js +1 -0
  48. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/trailingspace.js +1 -0
  49. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/brace-fold.js +1 -0
  50. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/comment-fold.js +1 -0
  51. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldcode.js +1 -0
  52. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldgutter.css +20 -0
  53. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldgutter.js +1 -0
  54. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/indent-fold.js +1 -0
  55. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/markdown-fold.js +1 -0
  56. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/xml-fold.js +1 -0
  57. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/anyword-hint.js +1 -0
  58. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/css-hint.js +1 -0
  59. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/html-hint.js +1 -0
  60. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/javascript-hint.js +1 -0
  61. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/show-hint.css +36 -0
  62. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/show-hint.js +1 -0
  63. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/sql-hint.js +1 -0
  64. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/xml-hint.js +1 -0
  65. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/coffeescript-lint.js +1 -0
  66. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/css-lint.js +1 -0
  67. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/html-lint.js +1 -0
  68. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/javascript-lint.js +1 -0
  69. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/json-lint.js +1 -0
  70. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/lint.css +79 -0
  71. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/lint.js +1 -0
  72. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/yaml-lint.js +1 -0
  73. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/merge/merge.css +119 -0
  74. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/merge/merge.js +1 -0
  75. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/loadmode.js +1 -0
  76. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/multiplex.js +1 -0
  77. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/multiplex_test.js +1 -0
  78. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/overlay.js +1 -0
  79. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/simple.js +1 -0
  80. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/colorize.js +1 -0
  81. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode-standalone.js +1 -0
  82. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode.js +1 -0
  83. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode.node.js +1 -0
  84. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/annotatescrollbar.js +1 -0
  85. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/scrollpastend.js +1 -0
  86. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/simplescrollbars.css +66 -0
  87. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/simplescrollbars.js +1 -0
  88. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/jump-to-line.js +1 -0
  89. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/match-highlighter.js +1 -0
  90. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/matchesonscrollbar.css +8 -0
  91. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/matchesonscrollbar.js +1 -0
  92. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/search.js +1 -0
  93. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/searchcursor.js +1 -0
  94. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/active-line.js +1 -0
  95. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/mark-selection.js +1 -0
  96. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/selection-pointer.js +1 -0
  97. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/tern.css +87 -0
  98. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/tern.js +1 -0
  99. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/worker.js +1 -0
  100. package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/wrap/hardwrap.js +1 -0
  101. package/dist/static/org.standardnotes.code-editor/dist/codemirror/keymap/vim.js +1 -0
  102. package/dist/static/org.standardnotes.code-editor/dist/codemirror/lib/codemirror.css +344 -0
  103. package/dist/static/org.standardnotes.code-editor/dist/codemirror/lib/codemirror.js +1 -0
  104. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/apl/apl.js +1 -0
  105. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asciiarmor/asciiarmor.js +1 -0
  106. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asn.1/asn.1.js +1 -0
  107. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asterisk/asterisk.js +1 -0
  108. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/brainfuck/brainfuck.js +1 -0
  109. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/clike/clike.js +1 -0
  110. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/clojure/clojure.js +1 -0
  111. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cmake/cmake.js +1 -0
  112. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cobol/cobol.js +1 -0
  113. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/coffeescript/coffeescript.js +1 -0
  114. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/commonlisp/commonlisp.js +1 -0
  115. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/crystal/crystal.js +1 -0
  116. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/css/css.js +1 -0
  117. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cypher/cypher.js +1 -0
  118. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/d/d.js +1 -0
  119. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dart/dart.js +1 -0
  120. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/diff/diff.js +1 -0
  121. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/django/django.js +1 -0
  122. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dockerfile/dockerfile.js +1 -0
  123. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dtd/dtd.js +1 -0
  124. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dylan/dylan.js +1 -0
  125. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ebnf/ebnf.js +1 -0
  126. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ecl/ecl.js +1 -0
  127. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/eiffel/eiffel.js +1 -0
  128. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/elm/elm.js +1 -0
  129. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/erlang/erlang.js +1 -0
  130. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/factor/factor.js +1 -0
  131. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/fcl/fcl.js +1 -0
  132. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/forth/forth.js +1 -0
  133. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/fortran/fortran.js +1 -0
  134. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gas/gas.js +1 -0
  135. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gfm/gfm.js +1 -0
  136. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gherkin/gherkin.js +1 -0
  137. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/go/go.js +1 -0
  138. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/groovy/groovy.js +1 -0
  139. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haml/haml.js +1 -0
  140. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/handlebars/handlebars.js +1 -0
  141. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haskell/haskell.js +1 -0
  142. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haskell-literate/haskell-literate.js +1 -0
  143. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haxe/haxe.js +1 -0
  144. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  145. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  146. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/http/http.js +1 -0
  147. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/idl/idl.js +1 -0
  148. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/javascript/javascript.js +1 -0
  149. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/jinja2/jinja2.js +1 -0
  150. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/jsx/jsx.js +1 -0
  151. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/julia/julia.js +1 -0
  152. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/livescript/livescript.js +1 -0
  153. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/lua/lua.js +1 -0
  154. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/markdown/markdown.js +1 -0
  155. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mathematica/mathematica.js +1 -0
  156. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mbox/mbox.js +1 -0
  157. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/meta.js +1 -0
  158. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mirc/mirc.js +1 -0
  159. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mllike/mllike.js +1 -0
  160. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/modelica/modelica.js +1 -0
  161. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mscgen/mscgen.js +1 -0
  162. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mumps/mumps.js +1 -0
  163. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/nginx/nginx.js +1 -0
  164. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/nsis/nsis.js +1 -0
  165. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ntriples/ntriples.js +1 -0
  166. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/octave/octave.js +1 -0
  167. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/oz/oz.js +1 -0
  168. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pascal/pascal.js +1 -0
  169. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pegjs/pegjs.js +1 -0
  170. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/perl/perl.js +1 -0
  171. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/php/php.js +1 -0
  172. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pig/pig.js +1 -0
  173. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/powershell/powershell.js +1 -0
  174. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/properties/properties.js +1 -0
  175. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/protobuf/protobuf.js +1 -0
  176. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pug/pug.js +1 -0
  177. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/puppet/puppet.js +1 -0
  178. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/python/python.js +1 -0
  179. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/q/q.js +1 -0
  180. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/r/r.js +1 -0
  181. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rpm/changes/index.html +66 -0
  182. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rpm/rpm.js +1 -0
  183. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rst/rst.js +1 -0
  184. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ruby/ruby.js +1 -0
  185. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rust/rust.js +1 -0
  186. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sas/sas.js +1 -0
  187. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sass/sass.js +1 -0
  188. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/scheme/scheme.js +1 -0
  189. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/shell/shell.js +1 -0
  190. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sieve/sieve.js +1 -0
  191. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/slim/slim.js +1 -0
  192. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/smalltalk/smalltalk.js +1 -0
  193. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/smarty/smarty.js +1 -0
  194. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/solr/solr.js +1 -0
  195. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/soy/soy.js +1 -0
  196. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sparql/sparql.js +1 -0
  197. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/spreadsheet/spreadsheet.js +1 -0
  198. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sql/sql.js +1 -0
  199. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/stex/stex.js +1 -0
  200. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/stylus/stylus.js +1 -0
  201. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/swift/swift.js +1 -0
  202. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tcl/tcl.js +1 -0
  203. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/textile/textile.js +1 -0
  204. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  205. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiddlywiki/tiddlywiki.js +1 -0
  206. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiki/tiki.css +26 -0
  207. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiki/tiki.js +1 -0
  208. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/toml/toml.js +1 -0
  209. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tornado/tornado.js +1 -0
  210. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/troff/troff.js +1 -0
  211. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ttcn/ttcn.js +1 -0
  212. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ttcn-cfg/ttcn-cfg.js +1 -0
  213. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/turtle/turtle.js +1 -0
  214. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/twig/twig.js +1 -0
  215. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vb/vb.js +1 -0
  216. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vbscript/vbscript.js +1 -0
  217. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/velocity/velocity.js +1 -0
  218. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/verilog/verilog.js +1 -0
  219. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vhdl/vhdl.js +1 -0
  220. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vue/vue.js +1 -0
  221. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/wast/wast.js +1 -0
  222. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/webidl/webidl.js +1 -0
  223. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/xml/xml.js +1 -0
  224. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/xquery/xquery.js +1 -0
  225. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yacas/yacas.js +1 -0
  226. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yaml/yaml.js +1 -0
  227. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +1 -0
  228. package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/z80/z80.js +1 -0
  229. package/dist/static/org.standardnotes.code-editor/dist/lib/component-relay.js +1 -0
  230. package/dist/static/org.standardnotes.code-editor/dist/main.css +3 -0
  231. package/dist/static/org.standardnotes.code-editor/dist/main.css.map +1 -0
  232. package/dist/static/org.standardnotes.code-editor/dist/main.js +2 -0
  233. package/dist/static/org.standardnotes.code-editor/dist/main.js.map +1 -0
  234. package/dist/static/org.standardnotes.code-editor/dist/stylekit.css +3242 -0
  235. package/dist/static/org.standardnotes.code-editor/index.html +62 -0
  236. package/dist/static/org.standardnotes.plus-editor/dist/dist.css +3246 -0
  237. package/dist/static/org.standardnotes.plus-editor/dist/dist.css.map +1 -0
  238. package/dist/static/org.standardnotes.plus-editor/dist/dist.js +2 -0
  239. package/dist/static/org.standardnotes.plus-editor/dist/dist.js.map +1 -0
  240. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.eot +0 -0
  241. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.ttf +0 -0
  242. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.woff +0 -0
  243. package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.woff2 +0 -0
  244. package/dist/static/org.standardnotes.plus-editor/dist/index.html +1 -0
  245. package/dist/static/org.standardnotes.plus-editor/dist/vendor.css +3249 -0
  246. package/dist/static/org.standardnotes.plus-editor/dist/vendor.js +2 -0
  247. package/dist/static/org.standardnotes.plus-editor/dist/vendor.js.LICENSE.txt +7 -0
  248. package/dist/static/org.standardnotes.simple-task-editor/dist/dist.css +1 -0
  249. package/dist/static/org.standardnotes.simple-task-editor/dist/dist.js +2 -0
  250. package/dist/static/org.standardnotes.simple-task-editor/dist/dist.js.LICENSE.txt +39 -0
  251. package/dist/static/org.standardnotes.simple-task-editor/dist/index.html +1 -0
  252. package/dist/zips/com.sncommunity.advanced-checklist.zip +0 -0
  253. package/dist/zips/com.sncommunity.bold-editor.zip +0 -0
  254. package/dist/zips/com.sncommunity.dracula-theme.zip +0 -0
  255. package/dist/zips/com.sncommunity.markdown-basic.zip +0 -0
  256. package/dist/zips/com.sncommunity.markdown-math.zip +0 -0
  257. package/dist/zips/com.sncommunity.markdown-visual.zip +0 -0
  258. package/dist/zips/com.sncommunity.minimal-markdown.zip +0 -0
  259. package/dist/zips/org.standardnotes.advanced-markdown-editor.zip +0 -0
  260. package/dist/zips/org.standardnotes.code-editor.zip +0 -0
  261. package/dist/zips/org.standardnotes.legacy.file-safe.zip +0 -0
  262. package/dist/zips/org.standardnotes.plus-editor.zip +0 -0
  263. package/dist/zips/org.standardnotes.simple-task-editor.zip +0 -0
  264. package/package.json +2 -2
  265. package/plugins.json +16 -0
  266. package/scripts/Package.mjs +1 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.10.0](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.9.3...@standardnotes/community-cdn@0.10.0) (2023-11-18)
7
+
8
+ ### Features
9
+
10
+ * add classic editors ([96a412a](https://github.com/standardnotes/plugins/commit/96a412a9725f689cbd5ca95f7feb5ba19938dd9a))
11
+
6
12
  ## [0.9.3](https://github.com/standardnotes/plugins/compare/@standardnotes/community-cdn@0.9.2...@standardnotes/community-cdn@0.9.3) (2023-09-20)
7
13
 
8
14
  **Note:** Version bump only for package @standardnotes/community-cdn
@@ -6,12 +6,14 @@
6
6
  "note_type": "task",
7
7
  "main": "build/index.html",
8
8
  "file_type": "json",
9
+ "showInGallery": true,
9
10
  "identifier": "com.sncommunity.advanced-checklist",
10
11
  "version": "0.4.2",
11
12
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.advanced-checklist/build/index.html",
12
13
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.advanced-checklist.zip",
13
14
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.advanced-checklist.json",
14
15
  "publisher": "Standard Notes Retired",
15
- "base64Hash": "23a6b99cba86dceb1538fbcab8ee94b8d44ffce0de37451ac4c5a5d527b9b290",
16
- "binaryHash": "7348954c009da3874250b371ce136ff00e501ee94a92735c5ad70c53e5596161"
16
+ "description": "A task editor with grouping functionality.",
17
+ "base64Hash": "44ff87a6b268609efb1419793d6f84b415cf2780ce7305e7555cd477e2318ebf",
18
+ "binaryHash": "e733dfe4d88988446b8edf4d7bb0dbe01681d4d04e69643d96e6f1786bbc3d76"
17
19
  }
@@ -6,12 +6,14 @@
6
6
  "note_type": "rich-text",
7
7
  "main": "dist/index.html",
8
8
  "file_type": "html",
9
+ "showInGallery": false,
9
10
  "identifier": "com.sncommunity.bold-editor",
10
11
  "version": "1.6.4",
11
12
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.bold-editor/dist/index.html",
12
13
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.bold-editor.zip",
13
14
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.bold-editor.json",
14
15
  "publisher": "Standard Notes Retired",
15
- "base64Hash": "efe2c23ae524a81c905c64cf6b73741a0c3697ff620560993479ea5b1796e4b7",
16
- "binaryHash": "445570b91d8a2be5209f320278ccc030cb6624454a46f42da18091f29e2d3ba8"
16
+ "description": "A simple and peaceful rich editor that helps you write and think clearly.",
17
+ "base64Hash": "a07f2d7eec19e3b99887c02c42c0dfd3e0b42494cafd6b19d79fd90310f043a5",
18
+ "binaryHash": "9372c64cdc2208e3df645d4dece382a37c4e4c5215a36d91bbf2d951b33879bd"
17
19
  }
@@ -3,12 +3,13 @@
3
3
  "content_type": "SN|Theme",
4
4
  "area": "themes",
5
5
  "main": "dist/dist.css",
6
+ "showInGallery": true,
6
7
  "identifier": "com.sncommunity.dracula-theme",
7
8
  "version": "1.1.2",
8
9
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.dracula-theme/dist/dist.css",
9
10
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.dracula-theme.zip",
10
11
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.dracula-theme.json",
11
12
  "publisher": "Standard Notes",
12
- "base64Hash": "f35b76491e3c805d8f906c6fe71d1d29998d3040899051e7985a0527e6ccb455",
13
- "binaryHash": "b54dd726dfb2847ba9ccb6fd0576f35be44fe00277c8e442e72e3d5d72e9b870"
13
+ "base64Hash": "0447a7e87e6c5af7e950f3edb3f266c9400ea0cc029a05d61af348dc41ec488a",
14
+ "binaryHash": "40ee435c61acab28e48d912948abff06c2bfa9844577aab22d7d2dec5aa385c7"
14
15
  }
@@ -5,13 +5,15 @@
5
5
  "spellcheckControl": true,
6
6
  "note_type": "markdown",
7
7
  "main": "dist/index.html",
8
- "file_type": "txt",
8
+ "file_type": "md",
9
+ "showInGallery": true,
9
10
  "identifier": "com.sncommunity.markdown-basic",
10
11
  "version": "1.6.2",
11
12
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-basic/dist/index.html",
12
13
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-basic.zip",
13
14
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-basic.json",
14
15
  "publisher": "Standard Notes Retired",
15
- "base64Hash": "02e267ddbe3df78b71f2e4dd84ac88f06dd9d9b9eefb02b62ffeb2863aca6d27",
16
- "binaryHash": "770a2d94da3e2f187f73e060e4889b1519423bc5469736fb0a2ec4dc6671b8a0"
16
+ "description": "A Markdown editor with dynamic split-pane preview.",
17
+ "base64Hash": "d26cfb8e005c5a27d907e565f77a4d763d7a59a84da1b61e1ebe8a48d9be829b",
18
+ "binaryHash": "02f43989961e6e21f7ca11154b2af14da659ebfb2860513071a90d051d2913de"
17
19
  }
@@ -6,12 +6,14 @@
6
6
  "note_type": "markdown",
7
7
  "main": "index.html",
8
8
  "file_type": "txt",
9
+ "showInGallery": true,
9
10
  "identifier": "com.sncommunity.markdown-math",
10
11
  "version": "1.4.2",
11
12
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-math/index.html",
12
13
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-math.zip",
13
14
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-math.json",
14
15
  "publisher": "Standard Notes Retired",
15
- "base64Hash": "4fbac0f7632264c6b5dffe1f2ce257e2fb40446f1e08ab198d544435953b38e2",
16
- "binaryHash": "e6e3dc95798f9e0d9236788c8fea54692df9e3c104015aa695dbd47f4988d7be"
16
+ "description": "A beautiful split-pane Markdown editor with synced-scroll, LaTeX support, and colorful syntax.",
17
+ "base64Hash": "aa1715695d4cacfedd08de292d0755479a1f0755f24de45072883564ed419ff3",
18
+ "binaryHash": "52e30a84110ba64f1f6e386a8ea6d741d9ac1967c5a5ebb2f87302dcd4d2fae3"
17
19
  }
@@ -5,13 +5,15 @@
5
5
  "area": "editor-editor",
6
6
  "spellcheckControl": true,
7
7
  "note_type": "markdown",
8
- "file_type": "txt",
8
+ "file_type": "md",
9
+ "showInGallery": true,
9
10
  "identifier": "com.sncommunity.markdown-visual",
10
11
  "version": "1.3.3",
11
12
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-visual/build/index.html",
12
13
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-visual.zip",
13
14
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-visual.json",
14
15
  "publisher": "Standard Notes Retired",
15
- "base64Hash": "277c3ef6546aa1035cacec9a143225a9f089c968bd0285fe7469c4773036d85d",
16
- "binaryHash": "25d55521cb8b0a9acfade7ae643b8ffd2a9666328b8066ccefe3c4d4406e229a"
16
+ "description": "A WYSIWYG-style Markdown editor that renders Markdown in preview-mode while you type without displaying any syntax.",
17
+ "base64Hash": "61c4379eb1164d187492bea88e4cf00e38f4f01b2399b4ebc7e1a28319b61ea9",
18
+ "binaryHash": "88be9ef4c2b6948fde8c2fcbe3bff7a06fc405cc693af325a5176a1f34445b9c"
17
19
  }
@@ -5,13 +5,15 @@
5
5
  "area": "editor-editor",
6
6
  "spellcheckControl": true,
7
7
  "note_type": "markdown",
8
- "file_type": "txt",
8
+ "file_type": "md",
9
+ "showInGallery": true,
9
10
  "identifier": "com.sncommunity.minimal-markdown",
10
11
  "version": "1.3.0",
11
12
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.minimal-markdown/index.html",
12
13
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.minimal-markdown.zip",
13
14
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.minimal-markdown.json",
14
15
  "publisher": "Standard Notes Retired",
15
- "base64Hash": "f75c4669ba7f41ab81e8cc0db86f1ce17a11111158c165f5f58ded69ab43c890",
16
- "binaryHash": "176ee708b110ed2b9198ab355399f178347d3d3c8dff450b11b9ade3b6005ab2"
16
+ "description": "A minimal Markdown editor with live rendering and in-text search via Ctrl/Cmd + F",
17
+ "base64Hash": "1ced422ee7873555d5bfb53521b75540fd555f2d67a63ce45ed916bf3e7b10d0",
18
+ "binaryHash": "3bb7d565ecf2a3c171b3ee5989ddc6ce831cb29c44e5d0df2671a55c99de4b91"
17
19
  }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Markdown",
3
+ "content_type": "SN|Component",
4
+ "main": "dist/index.html",
5
+ "area": "editor-editor",
6
+ "spellcheckControl": true,
7
+ "note_type": "markdown",
8
+ "file_type": "md",
9
+ "showInGallery": true,
10
+ "identifier": "org.standardnotes.advanced-markdown-editor",
11
+ "version": "1.7.7",
12
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.advanced-markdown-editor/dist/index.html",
13
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.advanced-markdown-editor.zip",
14
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.advanced-markdown-editor.json",
15
+ "publisher": "Standard Notes",
16
+ "description": "A fully featured Markdown editor that supports live preview, a styling toolbar, and split pane support.",
17
+ "base64Hash": "1583914e196bb903b0eed618b708d1c5f8d84c5b09d3cece9d9ec621726d12c8",
18
+ "binaryHash": "77107525a17a64565a0dba7ac8064f26a3f9b92fb949b68d269d4501d2f3f7c1"
19
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Code",
3
+ "content_type": "SN|Component",
4
+ "main": "index.html",
5
+ "area": "editor-editor",
6
+ "spellcheckControl": true,
7
+ "note_type": "code",
8
+ "file_type": "txt",
9
+ "showInGallery": true,
10
+ "identifier": "org.standardnotes.code-editor",
11
+ "version": "1.5.7",
12
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.code-editor/index.html",
13
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.code-editor.zip",
14
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.code-editor.json",
15
+ "publisher": "Standard Notes Classic",
16
+ "description": "Syntax highlighting and convenient keyboard shortcuts for over 120 programming languages. Ideal for code snippets and procedures.",
17
+ "base64Hash": "4eb8b272d76eb4345a80134485e5101cab3eecc3ed83843c0f21a827d3e229dc",
18
+ "binaryHash": "dda1a6860315807f4c770de01436d743d4b1d715f8eddba2de3e2103c32294e2"
19
+ }
@@ -3,12 +3,13 @@
3
3
  "content_type": "SN|Component",
4
4
  "area": "editor-stack",
5
5
  "main": "dist/index.html",
6
+ "showInGallery": false,
6
7
  "identifier": "org.standardnotes.legacy.file-safe",
7
- "version": "2.1.2",
8
+ "version": "2.1.3",
8
9
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.legacy.file-safe/dist/index.html",
9
10
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.legacy.file-safe.zip",
10
11
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.legacy.file-safe.json",
11
12
  "publisher": "Standard Notes Retired",
12
- "base64Hash": "980982f8226d1f45c4a33908a973dbddd36914eb2401f09c468d870e98edc6b4",
13
- "binaryHash": "04358112c9a33a45774cd721316b9486b08c27957ad10f906f7ebdbe50dde639"
13
+ "base64Hash": "2322a69ee7d2befd99e1f4c625a238d6c6818038eee2babeedaab8ac9669c8d3",
14
+ "binaryHash": "ab66702780614e6c6f5bf13564c178ef9f58e325c8e56af7e7754fbc25f8443a"
14
15
  }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Rich Text",
3
+ "content_type": "SN|Component",
4
+ "main": "dist/index.html",
5
+ "area": "editor-editor",
6
+ "spellcheckControl": true,
7
+ "note_type": "rich-text",
8
+ "file_type": "html",
9
+ "showInGallery": true,
10
+ "identifier": "org.standardnotes.plus-editor",
11
+ "version": "1.8.7",
12
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.plus-editor/dist/index.html",
13
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.plus-editor.zip",
14
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.plus-editor.json",
15
+ "publisher": "Standard Notes Classic",
16
+ "description": " 'From highlighting to custom font sizes and colors, to tables and lists, this editor is perfect for crafting any document.",
17
+ "base64Hash": "bfb289ca6c4c53350254d6b54876ba2a141f5536abe2e5a92c37b9ab2f88a786",
18
+ "binaryHash": "39167c3d85ec5f615dcc415c9126eaf933239a177f8deb048961b3f7c370ce00"
19
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "Checklist",
3
+ "content_type": "SN|Component",
4
+ "main": "dist/index.html",
5
+ "area": "editor-editor",
6
+ "spellcheckControl": true,
7
+ "note_type": "task",
8
+ "file_type": "md",
9
+ "showInGallery": true,
10
+ "identifier": "org.standardnotes.simple-task-editor",
11
+ "version": "1.5.8",
12
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.simple-task-editor/dist/index.html",
13
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.simple-task-editor.zip",
14
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.simple-task-editor.json",
15
+ "publisher": "Standard Notes Classic",
16
+ "description": "A great way to manage short-term and long-term to-do's. You can mark tasks as completed, change their order, and edit the text naturally in place.",
17
+ "base64Hash": "97c5391e11eeb6cf7826ccb1ea51db8a6328596c0c3eba39fe848893ed43e911",
18
+ "binaryHash": "f708faa1b6d2d58a99050819f42c739939aabb29e3f9a858b47254feddae249d"
19
+ }
@@ -6,15 +6,17 @@
6
6
  "area": "editor-editor",
7
7
  "spellcheckControl": true,
8
8
  "note_type": "markdown",
9
- "file_type": "txt",
9
+ "file_type": "md",
10
+ "showInGallery": true,
10
11
  "identifier": "com.sncommunity.minimal-markdown",
11
12
  "version": "1.3.0",
12
13
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.minimal-markdown/index.html",
13
14
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.minimal-markdown.zip",
14
15
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.minimal-markdown.json",
15
16
  "publisher": "Standard Notes Retired",
16
- "base64Hash": "f75c4669ba7f41ab81e8cc0db86f1ce17a11111158c165f5f58ded69ab43c890",
17
- "binaryHash": "176ee708b110ed2b9198ab355399f178347d3d3c8dff450b11b9ade3b6005ab2"
17
+ "description": "A minimal Markdown editor with live rendering and in-text search via Ctrl/Cmd + F",
18
+ "base64Hash": "1ced422ee7873555d5bfb53521b75540fd555f2d67a63ce45ed916bf3e7b10d0",
19
+ "binaryHash": "3bb7d565ecf2a3c171b3ee5989ddc6ce831cb29c44e5d0df2671a55c99de4b91"
18
20
  },
19
21
  "com.sncommunity.bold-editor": {
20
22
  "name": "Bold Editor",
@@ -24,14 +26,16 @@
24
26
  "note_type": "rich-text",
25
27
  "main": "dist/index.html",
26
28
  "file_type": "html",
29
+ "showInGallery": false,
27
30
  "identifier": "com.sncommunity.bold-editor",
28
31
  "version": "1.6.4",
29
32
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.bold-editor/dist/index.html",
30
33
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.bold-editor.zip",
31
34
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.bold-editor.json",
32
35
  "publisher": "Standard Notes Retired",
33
- "base64Hash": "efe2c23ae524a81c905c64cf6b73741a0c3697ff620560993479ea5b1796e4b7",
34
- "binaryHash": "445570b91d8a2be5209f320278ccc030cb6624454a46f42da18091f29e2d3ba8"
36
+ "description": "A simple and peaceful rich editor that helps you write and think clearly.",
37
+ "base64Hash": "a07f2d7eec19e3b99887c02c42c0dfd3e0b42494cafd6b19d79fd90310f043a5",
38
+ "binaryHash": "9372c64cdc2208e3df645d4dece382a37c4e4c5215a36d91bbf2d951b33879bd"
35
39
  },
36
40
  "com.sncommunity.advanced-checklist": {
37
41
  "name": "Advanced Checklist",
@@ -41,14 +45,16 @@
41
45
  "note_type": "task",
42
46
  "main": "build/index.html",
43
47
  "file_type": "json",
48
+ "showInGallery": true,
44
49
  "identifier": "com.sncommunity.advanced-checklist",
45
50
  "version": "0.4.2",
46
51
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.advanced-checklist/build/index.html",
47
52
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.advanced-checklist.zip",
48
53
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.advanced-checklist.json",
49
54
  "publisher": "Standard Notes Retired",
50
- "base64Hash": "23a6b99cba86dceb1538fbcab8ee94b8d44ffce0de37451ac4c5a5d527b9b290",
51
- "binaryHash": "7348954c009da3874250b371ce136ff00e501ee94a92735c5ad70c53e5596161"
55
+ "description": "A task editor with grouping functionality.",
56
+ "base64Hash": "44ff87a6b268609efb1419793d6f84b415cf2780ce7305e7555cd477e2318ebf",
57
+ "binaryHash": "e733dfe4d88988446b8edf4d7bb0dbe01681d4d04e69643d96e6f1786bbc3d76"
52
58
  },
53
59
  "com.sncommunity.markdown-basic": {
54
60
  "name": "Basic Markdown",
@@ -57,15 +63,17 @@
57
63
  "spellcheckControl": true,
58
64
  "note_type": "markdown",
59
65
  "main": "dist/index.html",
60
- "file_type": "txt",
66
+ "file_type": "md",
67
+ "showInGallery": true,
61
68
  "identifier": "com.sncommunity.markdown-basic",
62
69
  "version": "1.6.2",
63
70
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-basic/dist/index.html",
64
71
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-basic.zip",
65
72
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-basic.json",
66
73
  "publisher": "Standard Notes Retired",
67
- "base64Hash": "02e267ddbe3df78b71f2e4dd84ac88f06dd9d9b9eefb02b62ffeb2863aca6d27",
68
- "binaryHash": "770a2d94da3e2f187f73e060e4889b1519423bc5469736fb0a2ec4dc6671b8a0"
74
+ "description": "A Markdown editor with dynamic split-pane preview.",
75
+ "base64Hash": "d26cfb8e005c5a27d907e565f77a4d763d7a59a84da1b61e1ebe8a48d9be829b",
76
+ "binaryHash": "02f43989961e6e21f7ca11154b2af14da659ebfb2860513071a90d051d2913de"
69
77
  },
70
78
  "com.sncommunity.markdown-math": {
71
79
  "name": "Markdown Math",
@@ -75,28 +83,31 @@
75
83
  "note_type": "markdown",
76
84
  "main": "index.html",
77
85
  "file_type": "txt",
86
+ "showInGallery": true,
78
87
  "identifier": "com.sncommunity.markdown-math",
79
88
  "version": "1.4.2",
80
89
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-math/index.html",
81
90
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-math.zip",
82
91
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-math.json",
83
92
  "publisher": "Standard Notes Retired",
84
- "base64Hash": "4fbac0f7632264c6b5dffe1f2ce257e2fb40446f1e08ab198d544435953b38e2",
85
- "binaryHash": "e6e3dc95798f9e0d9236788c8fea54692df9e3c104015aa695dbd47f4988d7be"
93
+ "description": "A beautiful split-pane Markdown editor with synced-scroll, LaTeX support, and colorful syntax.",
94
+ "base64Hash": "aa1715695d4cacfedd08de292d0755479a1f0755f24de45072883564ed419ff3",
95
+ "binaryHash": "52e30a84110ba64f1f6e386a8ea6d741d9ac1967c5a5ebb2f87302dcd4d2fae3"
86
96
  },
87
97
  "com.sncommunity.dracula-theme": {
88
98
  "name": "Dracula",
89
99
  "content_type": "SN|Theme",
90
100
  "area": "themes",
91
101
  "main": "dist/dist.css",
102
+ "showInGallery": true,
92
103
  "identifier": "com.sncommunity.dracula-theme",
93
104
  "version": "1.1.2",
94
105
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.dracula-theme/dist/dist.css",
95
106
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.dracula-theme.zip",
96
107
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.dracula-theme.json",
97
108
  "publisher": "Standard Notes",
98
- "base64Hash": "f35b76491e3c805d8f906c6fe71d1d29998d3040899051e7985a0527e6ccb455",
99
- "binaryHash": "b54dd726dfb2847ba9ccb6fd0576f35be44fe00277c8e442e72e3d5d72e9b870"
109
+ "base64Hash": "0447a7e87e6c5af7e950f3edb3f266c9400ea0cc029a05d61af348dc41ec488a",
110
+ "binaryHash": "40ee435c61acab28e48d912948abff06c2bfa9844577aab22d7d2dec5aa385c7"
100
111
  },
101
112
  "com.sncommunity.markdown-visual": {
102
113
  "name": "Markdown Visual",
@@ -105,28 +116,107 @@
105
116
  "area": "editor-editor",
106
117
  "spellcheckControl": true,
107
118
  "note_type": "markdown",
108
- "file_type": "txt",
119
+ "file_type": "md",
120
+ "showInGallery": true,
109
121
  "identifier": "com.sncommunity.markdown-visual",
110
122
  "version": "1.3.3",
111
123
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/com.sncommunity.markdown-visual/build/index.html",
112
124
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/com.sncommunity.markdown-visual.zip",
113
125
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/com.sncommunity.markdown-visual.json",
114
126
  "publisher": "Standard Notes Retired",
115
- "base64Hash": "277c3ef6546aa1035cacec9a143225a9f089c968bd0285fe7469c4773036d85d",
116
- "binaryHash": "25d55521cb8b0a9acfade7ae643b8ffd2a9666328b8066ccefe3c4d4406e229a"
127
+ "description": "A WYSIWYG-style Markdown editor that renders Markdown in preview-mode while you type without displaying any syntax.",
128
+ "base64Hash": "61c4379eb1164d187492bea88e4cf00e38f4f01b2399b4ebc7e1a28319b61ea9",
129
+ "binaryHash": "88be9ef4c2b6948fde8c2fcbe3bff7a06fc405cc693af325a5176a1f34445b9c"
117
130
  },
118
131
  "org.standardnotes.legacy.file-safe": {
119
132
  "name": "FileSafe Legacy",
120
133
  "content_type": "SN|Component",
121
134
  "area": "editor-stack",
122
135
  "main": "dist/index.html",
136
+ "showInGallery": false,
123
137
  "identifier": "org.standardnotes.legacy.file-safe",
124
- "version": "2.1.2",
138
+ "version": "2.1.3",
125
139
  "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.legacy.file-safe/dist/index.html",
126
140
  "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.legacy.file-safe.zip",
127
141
  "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.legacy.file-safe.json",
128
142
  "publisher": "Standard Notes Retired",
129
- "base64Hash": "980982f8226d1f45c4a33908a973dbddd36914eb2401f09c468d870e98edc6b4",
130
- "binaryHash": "04358112c9a33a45774cd721316b9486b08c27957ad10f906f7ebdbe50dde639"
143
+ "base64Hash": "2322a69ee7d2befd99e1f4c625a238d6c6818038eee2babeedaab8ac9669c8d3",
144
+ "binaryHash": "ab66702780614e6c6f5bf13564c178ef9f58e325c8e56af7e7754fbc25f8443a"
145
+ },
146
+ "org.standardnotes.advanced-markdown-editor": {
147
+ "name": "Markdown",
148
+ "content_type": "SN|Component",
149
+ "main": "dist/index.html",
150
+ "area": "editor-editor",
151
+ "spellcheckControl": true,
152
+ "note_type": "markdown",
153
+ "file_type": "md",
154
+ "showInGallery": true,
155
+ "identifier": "org.standardnotes.advanced-markdown-editor",
156
+ "version": "1.7.7",
157
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.advanced-markdown-editor/dist/index.html",
158
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.advanced-markdown-editor.zip",
159
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.advanced-markdown-editor.json",
160
+ "publisher": "Standard Notes",
161
+ "description": "A fully featured Markdown editor that supports live preview, a styling toolbar, and split pane support.",
162
+ "base64Hash": "1583914e196bb903b0eed618b708d1c5f8d84c5b09d3cece9d9ec621726d12c8",
163
+ "binaryHash": "77107525a17a64565a0dba7ac8064f26a3f9b92fb949b68d269d4501d2f3f7c1"
164
+ },
165
+ "org.standardnotes.plus-editor": {
166
+ "name": "Rich Text",
167
+ "content_type": "SN|Component",
168
+ "main": "dist/index.html",
169
+ "area": "editor-editor",
170
+ "spellcheckControl": true,
171
+ "note_type": "rich-text",
172
+ "file_type": "html",
173
+ "showInGallery": true,
174
+ "identifier": "org.standardnotes.plus-editor",
175
+ "version": "1.8.7",
176
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.plus-editor/dist/index.html",
177
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.plus-editor.zip",
178
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.plus-editor.json",
179
+ "publisher": "Standard Notes Classic",
180
+ "description": " 'From highlighting to custom font sizes and colors, to tables and lists, this editor is perfect for crafting any document.",
181
+ "base64Hash": "bfb289ca6c4c53350254d6b54876ba2a141f5536abe2e5a92c37b9ab2f88a786",
182
+ "binaryHash": "39167c3d85ec5f615dcc415c9126eaf933239a177f8deb048961b3f7c370ce00"
183
+ },
184
+ "org.standardnotes.simple-task-editor": {
185
+ "name": "Checklist",
186
+ "content_type": "SN|Component",
187
+ "main": "dist/index.html",
188
+ "area": "editor-editor",
189
+ "spellcheckControl": true,
190
+ "note_type": "task",
191
+ "file_type": "md",
192
+ "showInGallery": true,
193
+ "identifier": "org.standardnotes.simple-task-editor",
194
+ "version": "1.5.8",
195
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.simple-task-editor/dist/index.html",
196
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.simple-task-editor.zip",
197
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.simple-task-editor.json",
198
+ "publisher": "Standard Notes Classic",
199
+ "description": "A great way to manage short-term and long-term to-do's. You can mark tasks as completed, change their order, and edit the text naturally in place.",
200
+ "base64Hash": "97c5391e11eeb6cf7826ccb1ea51db8a6328596c0c3eba39fe848893ed43e911",
201
+ "binaryHash": "f708faa1b6d2d58a99050819f42c739939aabb29e3f9a858b47254feddae249d"
202
+ },
203
+ "org.standardnotes.code-editor": {
204
+ "name": "Code",
205
+ "content_type": "SN|Component",
206
+ "main": "index.html",
207
+ "area": "editor-editor",
208
+ "spellcheckControl": true,
209
+ "note_type": "code",
210
+ "file_type": "txt",
211
+ "showInGallery": true,
212
+ "identifier": "org.standardnotes.code-editor",
213
+ "version": "1.5.7",
214
+ "url": "https://standardnotes.github.io/plugins/cdn/dist/static/org.standardnotes.code-editor/index.html",
215
+ "download_url": "https://standardnotes.github.io/plugins/cdn/dist/zips/org.standardnotes.code-editor.zip",
216
+ "latest_url": "https://standardnotes.github.io/plugins/cdn/dist/entries/org.standardnotes.code-editor.json",
217
+ "publisher": "Standard Notes Classic",
218
+ "description": "Syntax highlighting and convenient keyboard shortcuts for over 120 programming languages. Ideal for code snippets and procedures.",
219
+ "base64Hash": "4eb8b272d76eb4345a80134485e5101cab3eecc3ed83843c0f21a827d3e229dc",
220
+ "binaryHash": "dda1a6860315807f4c770de01436d743d4b1d715f8eddba2de3e2103c32294e2"
131
221
  }
132
222
  }