├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── publish_new_release.yaml │ └── update_translations.yaml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── dist └── package.json ├── docs ├── cs │ └── PŘEČTĚTEMĚ.md ├── en │ └── README.md ├── es │ └── LÉAME.md ├── fr │ └── LISEZMOI.md ├── hu │ └── OLVASSAEL.md ├── ms │ └── BACASAYA.md ├── ru │ └── ПРОЧТИМЕНЯ.md └── zh-Hans │ └── 自述文件.md ├── images └── logo.png ├── lang.sh ├── package.json ├── rollup.config.js ├── src ├── anti-detection.ts ├── btn.css ├── btn.ts ├── cli.ts ├── file-magics.ts ├── file.ts ├── gm.ts ├── i18n │ ├── ar.json │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── hu.json │ ├── id.json │ ├── index.ts │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── ms.json │ ├── nl.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── tr.json │ ├── zh-Hans.json │ └── zh_Hant.json ├── main.ts ├── meta.js ├── mscore.ts ├── mscz.ts ├── musescore-dl │ └── cli.js ├── npm-data.ts ├── pdf.ts ├── scoreinfo.ts ├── utils.ts ├── webpack-hook.ts ├── worker-helper.ts ├── worker.ts └── wrapper.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | rollup* 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/publish_new_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/.github/workflows/publish_new_release.yaml -------------------------------------------------------------------------------- /.github/workflows/update_translations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/.github/workflows/update_translations.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/README.md -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /docs/cs/PŘEČTĚTEMĚ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/cs/PŘEČTĚTEMĚ.md -------------------------------------------------------------------------------- /docs/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/en/README.md -------------------------------------------------------------------------------- /docs/es/LÉAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/es/LÉAME.md -------------------------------------------------------------------------------- /docs/fr/LISEZMOI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/fr/LISEZMOI.md -------------------------------------------------------------------------------- /docs/hu/OLVASSAEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/hu/OLVASSAEL.md -------------------------------------------------------------------------------- /docs/ms/BACASAYA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/ms/BACASAYA.md -------------------------------------------------------------------------------- /docs/ru/ПРОЧТИМЕНЯ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/ru/ПРОЧТИМЕНЯ.md -------------------------------------------------------------------------------- /docs/zh-Hans/自述文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/docs/zh-Hans/自述文件.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/images/logo.png -------------------------------------------------------------------------------- /lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/lang.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/anti-detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/anti-detection.ts -------------------------------------------------------------------------------- /src/btn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/btn.css -------------------------------------------------------------------------------- /src/btn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/btn.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/file-magics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/file-magics.ts -------------------------------------------------------------------------------- /src/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/file.ts -------------------------------------------------------------------------------- /src/gm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/gm.ts -------------------------------------------------------------------------------- /src/i18n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/ar.json -------------------------------------------------------------------------------- /src/i18n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/cs.json -------------------------------------------------------------------------------- /src/i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/de.json -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/en.json -------------------------------------------------------------------------------- /src/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/es.json -------------------------------------------------------------------------------- /src/i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/fr.json -------------------------------------------------------------------------------- /src/i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/hu.json -------------------------------------------------------------------------------- /src/i18n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/id.json -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/it.json -------------------------------------------------------------------------------- /src/i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/ja.json -------------------------------------------------------------------------------- /src/i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/ko.json -------------------------------------------------------------------------------- /src/i18n/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/ms.json -------------------------------------------------------------------------------- /src/i18n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/nl.json -------------------------------------------------------------------------------- /src/i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/pl.json -------------------------------------------------------------------------------- /src/i18n/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/pt.json -------------------------------------------------------------------------------- /src/i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/ru.json -------------------------------------------------------------------------------- /src/i18n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/tr.json -------------------------------------------------------------------------------- /src/i18n/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/zh-Hans.json -------------------------------------------------------------------------------- /src/i18n/zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/i18n/zh_Hant.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/meta.js -------------------------------------------------------------------------------- /src/mscore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/mscore.ts -------------------------------------------------------------------------------- /src/mscz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/mscz.ts -------------------------------------------------------------------------------- /src/musescore-dl/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("dl-librescore/dist/cli.js"); 3 | -------------------------------------------------------------------------------- /src/npm-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/npm-data.ts -------------------------------------------------------------------------------- /src/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/pdf.ts -------------------------------------------------------------------------------- /src/scoreinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/scoreinfo.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/webpack-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/webpack-hook.ts -------------------------------------------------------------------------------- /src/worker-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/worker-helper.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/worker.ts -------------------------------------------------------------------------------- /src/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/src/wrapper.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreScore/dl-librescore/HEAD/tsconfig.json --------------------------------------------------------------------------------