File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,3 +76,37 @@ Major breaking changes include:
7676fields rather than as functions (` range.element ` , not ` range.element() ` ).
7777- ` bililiteRange.data() ` is now the more descriptive ` bililiteRange.createOption() ` .
7878- ` ex ` is very different. Read [ the manual] ( docs/ex.md ) .
79+
80+ ## Obsolete files
81+
82+ They are all in the [ 2.5.2 release] ( https://github.com/dwachss/bililiteRange/releases/tag/v2.5.2 ) but no longer are part
83+ of ` bililiteRange ` .
84+
85+ ` jquery.jsvk.js ` is a jQuery wrapper for Ilya Lebedev's JavaScript VirtualKeyboard (http://www.allanguages.info/ ), which is apparently now
86+ dead. Depends on
87+ bililiteRange for character insertion. [ Documentation] ( http://bililite.com/blog/2013/01/30/jsvk-a-jquery-plugin-for-virtualkeyboard/ )
88+
89+
90+ ` jquery.vi.js ` is the beginning of an implementation of the
91+ [ * vi* editor] ( https://pubs.opengroup.org/onlinepubs/9699919799/utilities/vi.html )
92+ which I never completed and never ended up using.
93+
94+ ` bililiteRange.fancytext.js ` and ` bililiteRange.fancytextasync.js ` were adapters between the
95+ [ Prism syntax highlighter] ( https://prismjs.com/ )
96+ and bililiteRange. It's much simpler now, just
97+
98+ ``` js
99+ range .listen (' input' , evt => {
100+ rng .bounds (' selection' );
101+ Prism .highlightElement (editor);
102+ rng .select ();
103+ });
104+ ```
105+
106+ Doesn't need a whole plugin for that.
107+
108+ ` jquery.keymap.js ` and ` jquery.status.js ` have their own repositories : [ keymap] ( https://github.com/dwachss/keymap )
109+ and [ status] ( https://github.com/dwachss/status ) .
110+
111+ ` jquery.livesearch.js ` and ` jquery.savemonitor.js ` were fun and cute, but not very useful.
112+
You can’t perform that action at this time.
0 commit comments