https://github.com/paulrosen/historical-abcjs-versions
This is a companion to the abcjs site. It contains the binary js files for every released version.
https://github.com/paulrosen/historical-abcjs-versions
abc-notation abcjs music
Last synced: about 1 year ago
JSON representation
This is a companion to the abcjs site. It contains the binary js files for every released version.
- Host: GitHub
- URL: https://github.com/paulrosen/historical-abcjs-versions
- Owner: paulrosen
- License: mit
- Created: 2021-01-18T15:42:50.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-19T00:12:25.000Z (over 5 years ago)
- Last Synced: 2024-12-25T20:11:51.317Z (over 1 year ago)
- Topics: abc-notation, abcjs, music
- Language: JavaScript
- Homepage:
- Size: 20.1 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Historical abcjs Versions
This repository contains the deliverables for all the versions of [abcjs](https://github.com/paulrosen/abcjs)
## Types of deliverables
Multiple files have been delivered for different uses over the years. Here is how to decode the file names:
### Basic
In the early days, before SVG was standardized, raphael.js was a dependency and was bundled. This does not contain midi.js. In the early days, it did not include the interactive textarea.
#### abcjs_basic_VERSION-min.js
In the early days, this includes raphael.js and does not have audio or editing capabilities.
#### abcjs_basic_noraphael_VERSION-min.js
In the early days, before SVG was standardized, raphael.js was a dependency and was bundled. If you didn't want the bundle use this.
#### abcjs_basic_midi_VERSION-min.js
This includes the dependency to midi.js and supports audio.
#### abcjs_midi_VERSION-min.js
Like the basic version but with a dependency on midi.js.
### Editor
This is like the basic version but includes the interactive editor in a textarea.
#### abcjs_editor_VERSION-min.js
This is like the basic version but includes support for an interactive textarea.
#### abcjs_editor_noraphael_VERSION-min.js
Like the editor without raphael.js.
#### abcjs_editor_midi_VERSION-min.js
Like the editor with a dependency on midi.js.
### Plugin
This is like the basic version except that it scans the page on page load looking for any text that is a well-formed abc string and automatically creates music.
#### abcjs_plugin_VERSION-min.js
In the early days, before SVG was standardized, raphael.js was a dependency and was bundled. This does not contain midi.js.
#### abcjs_plugin-nojquery_VERSION-min.js
The plugin required jquery. If it is already on the page then use this version to avoid two versions.
#### abcjs_plugin-midi_VERSION-min.js
Like the plugin version but with a dependency on midi.js.
#### abcjs_plugin_nojquery_VERSION-min.js
Like the plugin version but without jquery.
#### abcjs_plugin_noraphael_nojquery_VERSION-min.js
Like the plugin version but without raphael.js or jquery.