@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.
- package/CHANGELOG.md +6 -0
- package/dist/entries/com.sncommunity.advanced-checklist.json +4 -2
- package/dist/entries/com.sncommunity.bold-editor.json +4 -2
- package/dist/entries/com.sncommunity.dracula-theme.json +3 -2
- package/dist/entries/com.sncommunity.markdown-basic.json +5 -3
- package/dist/entries/com.sncommunity.markdown-math.json +4 -2
- package/dist/entries/com.sncommunity.markdown-visual.json +5 -3
- package/dist/entries/com.sncommunity.minimal-markdown.json +5 -3
- package/dist/entries/org.standardnotes.advanced-markdown-editor.json +19 -0
- package/dist/entries/org.standardnotes.code-editor.json +19 -0
- package/dist/entries/org.standardnotes.legacy.file-safe.json +4 -3
- package/dist/entries/org.standardnotes.plus-editor.json +19 -0
- package/dist/entries/org.standardnotes.simple-task-editor.json +19 -0
- package/dist/packages.json +110 -20
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.css +2341 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.css.map +1 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js +3 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js.LICENSE.txt +1 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/dist.js.map +1 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.eot +0 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.svg +2671 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.ttf +0 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.woff +0 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/fonts/fontawesome-webfont.woff2 +0 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/index.html +1 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/lib/component-relay.js +1 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/stylekit.css +3347 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymd.js +2 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymd.js.LICENSE.txt +6 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/easymd/easymde.css +7 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/highlightjs/highlightjs.js +2 -0
- package/dist/static/org.standardnotes.advanced-markdown-editor/dist/vendor/highlightjs/highlightjs.js.LICENSE.txt +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/comment/comment.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/comment/continuecomment.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/dialog/dialog.css +32 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/dialog/dialog.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/autorefresh.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/fullscreen.css +6 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/fullscreen.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/panel.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/placeholder.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/display/rulers.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/closebrackets.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/closetag.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/continuelist.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/matchbrackets.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/matchtags.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/edit/trailingspace.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/brace-fold.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/comment-fold.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldcode.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldgutter.css +20 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/foldgutter.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/indent-fold.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/markdown-fold.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/fold/xml-fold.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/anyword-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/css-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/html-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/javascript-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/show-hint.css +36 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/show-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/sql-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/hint/xml-hint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/coffeescript-lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/css-lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/html-lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/javascript-lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/json-lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/lint.css +79 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/lint/yaml-lint.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/merge/merge.css +119 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/merge/merge.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/loadmode.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/multiplex.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/multiplex_test.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/overlay.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/mode/simple.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/colorize.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode-standalone.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/runmode/runmode.node.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/annotatescrollbar.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/scrollpastend.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/simplescrollbars.css +66 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/scroll/simplescrollbars.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/jump-to-line.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/match-highlighter.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/matchesonscrollbar.css +8 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/matchesonscrollbar.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/search.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/search/searchcursor.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/active-line.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/mark-selection.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/selection/selection-pointer.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/tern.css +87 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/tern.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/tern/worker.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/addon/wrap/hardwrap.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/keymap/vim.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/lib/codemirror.css +344 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/lib/codemirror.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/apl/apl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asciiarmor/asciiarmor.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asn.1/asn.1.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/asterisk/asterisk.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/brainfuck/brainfuck.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/clike/clike.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/clojure/clojure.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cmake/cmake.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cobol/cobol.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/coffeescript/coffeescript.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/commonlisp/commonlisp.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/crystal/crystal.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/css/css.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/cypher/cypher.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/d/d.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dart/dart.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/diff/diff.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/django/django.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dockerfile/dockerfile.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dtd/dtd.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/dylan/dylan.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ebnf/ebnf.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ecl/ecl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/eiffel/eiffel.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/elm/elm.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/erlang/erlang.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/factor/factor.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/fcl/fcl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/forth/forth.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/fortran/fortran.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gas/gas.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gfm/gfm.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/gherkin/gherkin.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/go/go.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/groovy/groovy.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haml/haml.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/handlebars/handlebars.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haskell/haskell.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haskell-literate/haskell-literate.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/haxe/haxe.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/http/http.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/idl/idl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/javascript/javascript.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/jinja2/jinja2.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/jsx/jsx.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/julia/julia.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/livescript/livescript.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/lua/lua.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/markdown/markdown.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mathematica/mathematica.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mbox/mbox.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/meta.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mirc/mirc.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mllike/mllike.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/modelica/modelica.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mscgen/mscgen.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/mumps/mumps.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/nginx/nginx.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/nsis/nsis.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ntriples/ntriples.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/octave/octave.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/oz/oz.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pascal/pascal.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pegjs/pegjs.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/perl/perl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/php/php.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pig/pig.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/powershell/powershell.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/properties/properties.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/protobuf/protobuf.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/pug/pug.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/puppet/puppet.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/python/python.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/q/q.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/r/r.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rpm/changes/index.html +66 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rpm/rpm.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rst/rst.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ruby/ruby.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/rust/rust.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sas/sas.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sass/sass.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/scheme/scheme.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/shell/shell.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sieve/sieve.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/slim/slim.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/smalltalk/smalltalk.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/smarty/smarty.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/solr/solr.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/soy/soy.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sparql/sparql.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/spreadsheet/spreadsheet.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/sql/sql.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/stex/stex.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/stylus/stylus.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/swift/swift.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tcl/tcl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/textile/textile.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiddlywiki/tiddlywiki.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiki/tiki.css +26 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tiki/tiki.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/toml/toml.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/tornado/tornado.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/troff/troff.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ttcn/ttcn.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/ttcn-cfg/ttcn-cfg.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/turtle/turtle.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/twig/twig.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vb/vb.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vbscript/vbscript.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/velocity/velocity.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/verilog/verilog.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vhdl/vhdl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/vue/vue.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/wast/wast.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/webidl/webidl.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/xml/xml.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/xquery/xquery.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yacas/yacas.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yaml/yaml.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/codemirror/mode/z80/z80.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/lib/component-relay.js +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/main.css +3 -0
- package/dist/static/org.standardnotes.code-editor/dist/main.css.map +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/main.js +2 -0
- package/dist/static/org.standardnotes.code-editor/dist/main.js.map +1 -0
- package/dist/static/org.standardnotes.code-editor/dist/stylekit.css +3242 -0
- package/dist/static/org.standardnotes.code-editor/index.html +62 -0
- package/dist/static/org.standardnotes.plus-editor/dist/dist.css +3246 -0
- package/dist/static/org.standardnotes.plus-editor/dist/dist.css.map +1 -0
- package/dist/static/org.standardnotes.plus-editor/dist/dist.js +2 -0
- package/dist/static/org.standardnotes.plus-editor/dist/dist.js.map +1 -0
- package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.eot +0 -0
- package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.ttf +0 -0
- package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.woff +0 -0
- package/dist/static/org.standardnotes.plus-editor/dist/font/summernote.woff2 +0 -0
- package/dist/static/org.standardnotes.plus-editor/dist/index.html +1 -0
- package/dist/static/org.standardnotes.plus-editor/dist/vendor.css +3249 -0
- package/dist/static/org.standardnotes.plus-editor/dist/vendor.js +2 -0
- package/dist/static/org.standardnotes.plus-editor/dist/vendor.js.LICENSE.txt +7 -0
- package/dist/static/org.standardnotes.simple-task-editor/dist/dist.css +1 -0
- package/dist/static/org.standardnotes.simple-task-editor/dist/dist.js +2 -0
- package/dist/static/org.standardnotes.simple-task-editor/dist/dist.js.LICENSE.txt +39 -0
- package/dist/static/org.standardnotes.simple-task-editor/dist/index.html +1 -0
- package/dist/zips/com.sncommunity.advanced-checklist.zip +0 -0
- package/dist/zips/com.sncommunity.bold-editor.zip +0 -0
- package/dist/zips/com.sncommunity.dracula-theme.zip +0 -0
- package/dist/zips/com.sncommunity.markdown-basic.zip +0 -0
- package/dist/zips/com.sncommunity.markdown-math.zip +0 -0
- package/dist/zips/com.sncommunity.markdown-visual.zip +0 -0
- package/dist/zips/com.sncommunity.minimal-markdown.zip +0 -0
- package/dist/zips/org.standardnotes.advanced-markdown-editor.zip +0 -0
- package/dist/zips/org.standardnotes.code-editor.zip +0 -0
- package/dist/zips/org.standardnotes.legacy.file-safe.zip +0 -0
- package/dist/zips/org.standardnotes.plus-editor.zip +0 -0
- package/dist/zips/org.standardnotes.simple-task-editor.zip +0 -0
- package/package.json +2 -2
- package/plugins.json +16 -0
- 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
|
-
"
|
|
16
|
-
"
|
|
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
|
-
"
|
|
16
|
-
"
|
|
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": "
|
|
13
|
-
"binaryHash": "
|
|
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": "
|
|
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
|
-
"
|
|
16
|
-
"
|
|
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
|
-
"
|
|
16
|
-
"
|
|
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": "
|
|
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
|
-
"
|
|
16
|
-
"
|
|
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": "
|
|
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
|
-
"
|
|
16
|
-
"
|
|
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.
|
|
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": "
|
|
13
|
-
"binaryHash": "
|
|
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
|
+
}
|
package/dist/packages.json
CHANGED
|
@@ -6,15 +6,17 @@
|
|
|
6
6
|
"area": "editor-editor",
|
|
7
7
|
"spellcheckControl": true,
|
|
8
8
|
"note_type": "markdown",
|
|
9
|
-
"file_type": "
|
|
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
|
-
"
|
|
17
|
-
"
|
|
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
|
-
"
|
|
34
|
-
"
|
|
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
|
-
"
|
|
51
|
-
"
|
|
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": "
|
|
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
|
-
"
|
|
68
|
-
"
|
|
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
|
-
"
|
|
85
|
-
"
|
|
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": "
|
|
99
|
-
"binaryHash": "
|
|
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": "
|
|
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
|
-
"
|
|
116
|
-
"
|
|
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.
|
|
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": "
|
|
130
|
-
"binaryHash": "
|
|
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
|
}
|