├── .cspell.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── publish-to-gh-pages.yml │ └── pull-request.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── angular.json ├── design ├── favicon.psd ├── logo.ai ├── logo.svg ├── v2 design.png ├── v2 design.psd ├── v2 icons.psd ├── v3 backgroung images │ ├── StockSnap_1ZNLM71V1J.jpg │ ├── StockSnap_2N1F7GGNYX.jpg │ ├── alex-litvin-MAYsdoYpGuk-unsplash.jpg │ ├── chirayu-trivedi-wzvy-_V3e2E-unsplash.jpg │ ├── michael-maasen-ZY7fuakuXJ0-unsplash.jpg │ ├── paul-einerhand-Dy6a8sLrVl4-unsplash.jpg │ ├── rachel-coyne-U7HLzMO4SIY-unsplash.jpg │ ├── rachel-coyne-U7HLzMO4SIY-unsplash.psd │ └── sam-moghadam-khamseh-0EEKgGOe3ps-unsplash.jpg └── v3 design.psd ├── eslint.config.mjs ├── icon.png ├── karma-polyfills.ts ├── karma.conf.js ├── lyric-converter-demo.gif ├── package.json ├── src ├── app │ ├── about │ │ ├── about.component.html │ │ ├── about.component.spec.ts │ │ └── about.component.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.server.ts │ ├── app.config.ts │ ├── convert │ │ ├── convert.component.css │ │ ├── convert.component.html │ │ ├── convert.component.spec.ts │ │ ├── convert.component.ts │ │ ├── download-display │ │ │ ├── download-display.component.html │ │ │ ├── download-display.component.spec.ts │ │ │ └── download-display.component.ts │ │ ├── errors │ │ │ ├── errors.service.spec.ts │ │ │ └── errors.service.ts │ │ ├── inputs │ │ │ ├── input-converter.model.ts │ │ │ ├── input-type-chordpro.spec.ts │ │ │ ├── input-type-chordpro.ts │ │ │ ├── input-type-json.spec.ts │ │ │ ├── input-type-json.ts │ │ │ ├── input-type-mediashout7.spec.ts │ │ │ ├── input-type-mediashout7.ts │ │ │ ├── input-type-openlyrics.spec.ts │ │ │ ├── input-type-openlyrics.ts │ │ │ ├── input-type-plain-text.spec.ts │ │ │ ├── input-type-plain-text.ts │ │ │ ├── input-type-propresenter4.spec.ts │ │ │ ├── input-type-propresenter4.ts │ │ │ ├── input-type-propresenter5.spec.ts │ │ │ ├── input-type-propresenter5.ts │ │ │ ├── input-type-propresenter6.spec.ts │ │ │ ├── input-type-propresenter6.ts │ │ │ ├── input-type-songpro.spec.ts │ │ │ ├── input-type-songpro.ts │ │ │ ├── input-type-songshowplus7.spec.ts │ │ │ └── input-type-songshowplus7.ts │ │ ├── models │ │ │ ├── errors.model.ts │ │ │ ├── file.model.ts │ │ │ ├── mediashout.model.ts │ │ │ └── song.model.ts │ │ ├── outputs │ │ │ ├── output-converter.model.ts │ │ │ ├── output-type-chordpro.spec.ts │ │ │ ├── output-type-chordpro.ts │ │ │ ├── output-type-display-slides.spec.ts │ │ │ ├── output-type-display-slides.ts │ │ │ ├── output-type-json.spec.ts │ │ │ ├── output-type-json.ts │ │ │ ├── output-type-mediashout7.spec.ts │ │ │ ├── output-type-mediashout7.ts │ │ │ ├── output-type-openlyrics.spec.ts │ │ │ ├── output-type-openlyrics.ts │ │ │ ├── output-type-plain-text.spec.ts │ │ │ ├── output-type-plain-text.ts │ │ │ ├── output-type-propresenter5.spec.ts │ │ │ ├── output-type-propresenter5.ts │ │ │ ├── output-type-propresenter6.spec.ts │ │ │ ├── output-type-propresenter6.ts │ │ │ ├── output-type-songpro.spec.ts │ │ │ └── output-type-songpro.ts │ │ ├── parser │ │ │ ├── parser.service.spec.ts │ │ │ └── parser.service.ts │ │ ├── shared │ │ │ ├── constants.ts │ │ │ ├── utils.spec.ts │ │ │ └── utils.ts │ │ └── slide-display │ │ │ ├── slide-display.component.html │ │ │ ├── slide-display.component.spec.ts │ │ │ └── slide-display.component.ts │ ├── donate-button │ │ ├── donate-button.component.html │ │ ├── donate-button.component.spec.ts │ │ └── donate-button.component.ts │ ├── drag-and-drop-files │ │ └── drag-and-drop-files.directive.ts │ ├── help │ │ ├── help.component.css │ │ ├── help.component.html │ │ ├── help.component.spec.ts │ │ └── help.component.ts │ └── version.ts ├── assets │ ├── .gitkeep │ ├── background │ │ ├── bg1.jpg │ │ ├── bg2.jpg │ │ ├── bg3.jpg │ │ ├── bg4.jpg │ │ ├── bg5.jpg │ │ ├── bg6.jpg │ │ ├── bg7.jpg │ │ └── bg8.jpg │ └── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── site.webmanifest ├── favicon.ico ├── index.html ├── main.server.ts ├── main.ts ├── server.ts └── styles.css ├── tailwind.config.js ├── test ├── mock-output-files.ts ├── mock-song-objects.ts ├── sample-files │ ├── Bad Files │ │ ├── cat.jpg │ │ ├── empty-object.json │ │ └── malformed.json │ ├── ChordPro │ │ ├── At-the-Cross.cho │ │ ├── Our-Father-complex-tags.cho │ │ ├── Our-Father-directives-with-internal-inline-labels.cho │ │ ├── Our-Father-unlabeled-paired-directives.cho │ │ ├── Our-Father.cho │ │ ├── Swing-Low-Sweet-Chariot.cho │ │ └── simple.cho │ ├── JSON │ │ ├── Be-Near.json │ │ ├── Great-is-your-faithfulness.json │ │ └── empty.json │ ├── MediaShout │ │ ├── All.Creatures.or.our.God.json │ │ ├── JOY.is.Joy.json │ │ ├── The.Blessing.json │ │ ├── multi-folder-library.json │ │ ├── multiple-songs.json │ │ └── script.sc7x │ ├── OpenLyrics │ │ ├── Bože-tebe-chválíme(Czech).xml │ │ ├── examples │ │ │ ├── complex.xml │ │ │ ├── format.xml │ │ │ ├── format2.xml │ │ │ ├── laboratory.xml │ │ │ ├── multiple-comments.xml │ │ │ ├── simple.xml │ │ │ ├── test0.8-convert.xml │ │ │ ├── test0.9.xml │ │ │ └── version0.9.xml │ │ └── songs │ │ │ ├── A-Mighty-Fortress-is-Our-God.xml │ │ │ ├── All-Hail-The-Power-Of-Jesus-Name.xml │ │ │ ├── Amazing-Grace.xml │ │ │ ├── And-Can-It-Be.xml │ │ │ ├── Are-You-Washed.xml │ │ │ ├── Be-Thou-My-Vision.xml │ │ │ ├── Christ-Arose.xml │ │ │ ├── Come-Thou-Fount.xml │ │ │ ├── Crown-Him-With-Many-Crowns.xml │ │ │ ├── Great-Is-Thy-Faithfulness.xml │ │ │ ├── Hava-Nagila.xml │ │ │ ├── He-Leadeth-Me.xml │ │ │ ├── Holy-Holy-Holy.xml │ │ │ ├── How-Firm-A-Foundation.xml │ │ │ ├── How-Great-Thou-Art.xml │ │ │ ├── I-Have-Decided-To-Follow-Jesus.xml │ │ │ ├── In-The-Garden.xml │ │ │ ├── It-Is-Well-With-My-Soul.xml │ │ │ ├── Jesus-Loves-Even-Me.xml │ │ │ ├── Leaning-On-The-Everlasting-Arms.xml │ │ │ ├── Man-Of-Sorrows.xml │ │ │ ├── Nothing-But-The-Blood.xml │ │ │ ├── Since-I-Have-Been-Redeemed.xml │ │ │ ├── Standing-On-The-Promises.xml │ │ │ ├── The-Old-Rugged-Cross.xml │ │ │ ├── The-Solid-Rock.xml │ │ │ ├── What-A-Friend-We-Have-In-Jesus.xml │ │ │ └── When-We-All-Get-To-Heaven.xml │ ├── Plain-Text │ │ ├── At-the-Cross.txt │ │ ├── Be-Near.txt │ │ ├── Great-is-your-faithfulness.txt │ │ ├── Our-Father.txt │ │ ├── Your-Grace-is-Enough.txt │ │ └── empty.txt │ ├── ProPresenter │ │ ├── v4-Be-Near.pro4 │ │ ├── v4-Give-Us-Clean-Hands.pro4 │ │ ├── v4-Jesus-Saves.pro4 │ │ ├── v4-You-Are.pro4 │ │ ├── v4-empty.pro4 │ │ ├── v5-Be-Near-2.pro5 │ │ ├── v5-Be-Near.pro5 │ │ ├── v5-Give-Us-Clean-Hands.pro5 │ │ ├── v5-empty-song.pro5 │ │ ├── v5-empty.pro5 │ │ ├── v5-single-unnamed-slide.pro5 │ │ ├── v6-Amazing-Grace.pro6 │ │ ├── v6-Be-Near-2.pro6 │ │ ├── v6-Be-Near.pro6 │ │ ├── v6-Feature-Test.pro6 │ │ ├── v6-empty-song.pro6 │ │ ├── v6-empty.pro6 │ │ ├── v6-single-unnamed-slide.pro6 │ │ ├── v7-At-the-Cross.pro │ │ ├── v7-Come-Thou-Fount.pro │ │ └── v7-Feature-Test.pro │ ├── SongPro │ │ ├── _empty.sng │ │ ├── a-hard-days-night.sng │ │ ├── all-i-have-to-do-is-dream.sng │ │ ├── back-on-the-chain-gang.sng │ │ ├── bad-moon-rising.sng │ │ ├── be-my-baby.sng │ │ ├── boulevard-of-broken-dreams.sng │ │ ├── breathe.sng │ │ ├── brown-eyed-girl.sng │ │ ├── bye-bye-love.sng │ │ ├── california-dreamin.sng │ │ ├── cant-buy-me-love.sng │ │ ├── cant-help-falling-in-love.sng │ │ ├── cant-you-see.sng │ │ ├── come-together.sng │ │ ├── comfortably-numb.sng │ │ ├── creep.sng │ │ ├── crying.sng │ │ ├── daydream-believer.sng │ │ ├── daydream.sng │ │ ├── dont-be-cruel.sng │ │ ├── dont-cry-no-tears.sng │ │ ├── dont-you-forget-about-me.sng │ │ ├── down-by-the-river.sng │ │ ├── down-on-the-corner.sng │ │ ├── draggin-the-line.sng │ │ ├── earth-angel.sng │ │ ├── easy.sng │ │ ├── escape-capsule.sng │ │ ├── every-breath-you-take.sng │ │ ├── everyday.sng │ │ ├── fields-of-gold.sng │ │ ├── for-what-its-worth.sng │ │ ├── fortunate-son.sng │ │ ├── free-bird.sng │ │ ├── hallelujah.sng │ │ ├── handle-with-care.sng │ │ ├── happy-together.sng │ │ ├── harvest-moon.sng │ │ ├── have-you-ever-seen-the-rain.sng │ │ ├── heart-of-gold.sng │ │ ├── hey-jude.sng │ │ ├── hotel-california.sng │ │ ├── house-of-the-rising-sun.sng │ │ ├── i-can-see-clearly-now.sng │ │ ├── i-melt-with-you.sng │ │ ├── i-want-to-hold-your-hand.sng │ │ ├── i-want-you-to-want-me-live.sng │ │ ├── i-wont-back-down.sng │ │ ├── im-a-believer.sng │ │ ├── im-so-lonesome-i-could-cry.sng │ │ ├── in-my-life.sng │ │ ├── its-my-party.sng │ │ ├── lean-on-me.sng │ │ ├── learning-to-fly.sng │ │ ├── listen-to-the-music.sng │ │ ├── losing-my-religion.sng │ │ ├── love-me-tender.sng │ │ ├── love-potion-no-9.sng │ │ ├── low.sng │ │ ├── maggie-may.sng │ │ ├── manic-monday.sng │ │ ├── mary-janes-last-dance.sng │ │ ├── me-and-bobby-mcgee.sng │ │ ├── moon-river.sng │ │ ├── my-girl.sng │ │ ├── nights-in-white-satin.sng │ │ ├── no-matter-what.sng │ │ ├── one-headlight.sng │ │ ├── one-of-us.sng │ │ ├── only-you.sng │ │ ├── pretty-woman.sng │ │ ├── proud-mary.sng │ │ ├── rebel-rebel.sng │ │ ├── rockin-in-the-free-world.sng │ │ ├── sittin-on-the-dock-of-the-bay.sng │ │ ├── son-of-a-preacher-man.sng │ │ ├── space-oddity.sng │ │ ├── stuck-in-the-middle-with-you.sng │ │ ├── suffragette-city.sng │ │ ├── sweet-caroline.sng │ │ ├── sweet-home-alabama.sng │ │ ├── sympathy-for-the-devil.sng │ │ ├── tears-on-my-pillow.sng │ │ ├── the-weight.sng │ │ ├── theres-a-kind-of-hush.sng │ │ ├── ticket-to-ride.sng │ │ ├── tonight-you-belong-to-me.sng │ │ ├── turn-turn-turn.sng │ │ ├── under-the-boardwalk.sng │ │ ├── up-on-the-roof.sng │ │ ├── wake-me-up-when-september-ends.sng │ │ ├── wake-up-little-susie.sng │ │ ├── walkin-after-midnight.sng │ │ ├── wayfaring-stranger.sng │ │ ├── where-did-our-love-go.sng │ │ ├── while-my-guitar-gently-weeps.sng │ │ ├── wicked-game.sng │ │ ├── wild-world.sng │ │ ├── will-the-circle-be-unbroken.sng │ │ ├── will-you-still-love-me-tomorrow.sng │ │ ├── wish-you-were-here.sng │ │ ├── with-a-little-help-from-my-friends.sng │ │ ├── wonderful-world.sng │ │ ├── you-cant-hurry-love.sng │ │ ├── you-got-it.sng │ │ └── your-cheatin-heart.sng │ ├── SongShowPlus │ │ ├── Be-Near.sbsong │ │ ├── Give-Us-Clean-Hands.sbsong │ │ ├── Jesus-Saves.sbsong │ │ ├── Spanish-Devuelveme-El-Gozo.sbsong │ │ ├── Spanish-La-Sangre-(The-Blood).sbsong │ │ ├── You-Are.sbsong │ │ └── empty.sbsong │ └── image │ │ └── mr-bean.png └── test-utils.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.cspell.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish-to-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.github/workflows/publish-to-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/angular.json -------------------------------------------------------------------------------- /design/favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/favicon.psd -------------------------------------------------------------------------------- /design/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/logo.ai -------------------------------------------------------------------------------- /design/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/logo.svg -------------------------------------------------------------------------------- /design/v2 design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v2 design.png -------------------------------------------------------------------------------- /design/v2 design.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v2 design.psd -------------------------------------------------------------------------------- /design/v2 icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v2 icons.psd -------------------------------------------------------------------------------- /design/v3 backgroung images/StockSnap_1ZNLM71V1J.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/StockSnap_1ZNLM71V1J.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/StockSnap_2N1F7GGNYX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/StockSnap_2N1F7GGNYX.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/alex-litvin-MAYsdoYpGuk-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/alex-litvin-MAYsdoYpGuk-unsplash.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/chirayu-trivedi-wzvy-_V3e2E-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/chirayu-trivedi-wzvy-_V3e2E-unsplash.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/michael-maasen-ZY7fuakuXJ0-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/michael-maasen-ZY7fuakuXJ0-unsplash.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/paul-einerhand-Dy6a8sLrVl4-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/paul-einerhand-Dy6a8sLrVl4-unsplash.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/rachel-coyne-U7HLzMO4SIY-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/rachel-coyne-U7HLzMO4SIY-unsplash.jpg -------------------------------------------------------------------------------- /design/v3 backgroung images/rachel-coyne-U7HLzMO4SIY-unsplash.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/rachel-coyne-U7HLzMO4SIY-unsplash.psd -------------------------------------------------------------------------------- /design/v3 backgroung images/sam-moghadam-khamseh-0EEKgGOe3ps-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 backgroung images/sam-moghadam-khamseh-0EEKgGOe3ps-unsplash.jpg -------------------------------------------------------------------------------- /design/v3 design.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/design/v3 design.psd -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/icon.png -------------------------------------------------------------------------------- /karma-polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/karma-polyfills.ts -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lyric-converter-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/lyric-converter-demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/package.json -------------------------------------------------------------------------------- /src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/about/about.component.html -------------------------------------------------------------------------------- /src/app/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/about/about.component.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/app.config.server.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/convert/convert.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/convert.component.css -------------------------------------------------------------------------------- /src/app/convert/convert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/convert.component.html -------------------------------------------------------------------------------- /src/app/convert/convert.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/convert.component.spec.ts -------------------------------------------------------------------------------- /src/app/convert/convert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/convert.component.ts -------------------------------------------------------------------------------- /src/app/convert/download-display/download-display.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/download-display/download-display.component.html -------------------------------------------------------------------------------- /src/app/convert/download-display/download-display.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/download-display/download-display.component.spec.ts -------------------------------------------------------------------------------- /src/app/convert/download-display/download-display.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/download-display/download-display.component.ts -------------------------------------------------------------------------------- /src/app/convert/errors/errors.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/errors/errors.service.spec.ts -------------------------------------------------------------------------------- /src/app/convert/errors/errors.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/errors/errors.service.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-converter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-converter.model.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-chordpro.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-chordpro.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-chordpro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-chordpro.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-json.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-json.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-mediashout7.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-mediashout7.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-mediashout7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-mediashout7.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-openlyrics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-openlyrics.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-openlyrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-openlyrics.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-plain-text.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-plain-text.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-plain-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-plain-text.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-propresenter4.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-propresenter4.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-propresenter4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-propresenter4.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-propresenter5.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-propresenter5.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-propresenter5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-propresenter5.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-propresenter6.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-propresenter6.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-propresenter6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-propresenter6.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-songpro.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-songpro.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-songpro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-songpro.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-songshowplus7.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-songshowplus7.spec.ts -------------------------------------------------------------------------------- /src/app/convert/inputs/input-type-songshowplus7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/inputs/input-type-songshowplus7.ts -------------------------------------------------------------------------------- /src/app/convert/models/errors.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/models/errors.model.ts -------------------------------------------------------------------------------- /src/app/convert/models/file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/models/file.model.ts -------------------------------------------------------------------------------- /src/app/convert/models/mediashout.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/models/mediashout.model.ts -------------------------------------------------------------------------------- /src/app/convert/models/song.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/models/song.model.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-converter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-converter.model.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-chordpro.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-chordpro.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-chordpro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-chordpro.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-display-slides.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-display-slides.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-display-slides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-display-slides.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-json.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-json.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-mediashout7.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-mediashout7.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-mediashout7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-mediashout7.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-openlyrics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-openlyrics.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-openlyrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-openlyrics.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-plain-text.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-plain-text.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-plain-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-plain-text.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-propresenter5.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-propresenter5.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-propresenter5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-propresenter5.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-propresenter6.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-propresenter6.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-propresenter6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-propresenter6.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-songpro.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-songpro.spec.ts -------------------------------------------------------------------------------- /src/app/convert/outputs/output-type-songpro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/outputs/output-type-songpro.ts -------------------------------------------------------------------------------- /src/app/convert/parser/parser.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/parser/parser.service.spec.ts -------------------------------------------------------------------------------- /src/app/convert/parser/parser.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/parser/parser.service.ts -------------------------------------------------------------------------------- /src/app/convert/shared/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/shared/constants.ts -------------------------------------------------------------------------------- /src/app/convert/shared/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/shared/utils.spec.ts -------------------------------------------------------------------------------- /src/app/convert/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/shared/utils.ts -------------------------------------------------------------------------------- /src/app/convert/slide-display/slide-display.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/slide-display/slide-display.component.html -------------------------------------------------------------------------------- /src/app/convert/slide-display/slide-display.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/slide-display/slide-display.component.spec.ts -------------------------------------------------------------------------------- /src/app/convert/slide-display/slide-display.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/convert/slide-display/slide-display.component.ts -------------------------------------------------------------------------------- /src/app/donate-button/donate-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/donate-button/donate-button.component.html -------------------------------------------------------------------------------- /src/app/donate-button/donate-button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/donate-button/donate-button.component.spec.ts -------------------------------------------------------------------------------- /src/app/donate-button/donate-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/donate-button/donate-button.component.ts -------------------------------------------------------------------------------- /src/app/drag-and-drop-files/drag-and-drop-files.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/drag-and-drop-files/drag-and-drop-files.directive.ts -------------------------------------------------------------------------------- /src/app/help/help.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/help/help.component.css -------------------------------------------------------------------------------- /src/app/help/help.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/help/help.component.html -------------------------------------------------------------------------------- /src/app/help/help.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/help/help.component.spec.ts -------------------------------------------------------------------------------- /src/app/help/help.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/help/help.component.ts -------------------------------------------------------------------------------- /src/app/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/app/version.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/background/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg1.jpg -------------------------------------------------------------------------------- /src/assets/background/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg2.jpg -------------------------------------------------------------------------------- /src/assets/background/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg3.jpg -------------------------------------------------------------------------------- /src/assets/background/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg4.jpg -------------------------------------------------------------------------------- /src/assets/background/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg5.jpg -------------------------------------------------------------------------------- /src/assets/background/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg6.jpg -------------------------------------------------------------------------------- /src/assets/background/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg7.jpg -------------------------------------------------------------------------------- /src/assets/background/bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/background/bg8.jpg -------------------------------------------------------------------------------- /src/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /src/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /src/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /src/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /src/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/src/styles.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/mock-output-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/mock-output-files.ts -------------------------------------------------------------------------------- /test/mock-song-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/mock-song-objects.ts -------------------------------------------------------------------------------- /test/sample-files/Bad Files/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/Bad Files/cat.jpg -------------------------------------------------------------------------------- /test/sample-files/Bad Files/empty-object.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/sample-files/Bad Files/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /test/sample-files/ChordPro/At-the-Cross.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/At-the-Cross.cho -------------------------------------------------------------------------------- /test/sample-files/ChordPro/Our-Father-complex-tags.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/Our-Father-complex-tags.cho -------------------------------------------------------------------------------- /test/sample-files/ChordPro/Our-Father-directives-with-internal-inline-labels.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/Our-Father-directives-with-internal-inline-labels.cho -------------------------------------------------------------------------------- /test/sample-files/ChordPro/Our-Father-unlabeled-paired-directives.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/Our-Father-unlabeled-paired-directives.cho -------------------------------------------------------------------------------- /test/sample-files/ChordPro/Our-Father.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/Our-Father.cho -------------------------------------------------------------------------------- /test/sample-files/ChordPro/Swing-Low-Sweet-Chariot.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/Swing-Low-Sweet-Chariot.cho -------------------------------------------------------------------------------- /test/sample-files/ChordPro/simple.cho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ChordPro/simple.cho -------------------------------------------------------------------------------- /test/sample-files/JSON/Be-Near.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/JSON/Be-Near.json -------------------------------------------------------------------------------- /test/sample-files/JSON/Great-is-your-faithfulness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/JSON/Great-is-your-faithfulness.json -------------------------------------------------------------------------------- /test/sample-files/JSON/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/sample-files/MediaShout/All.Creatures.or.our.God.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/MediaShout/All.Creatures.or.our.God.json -------------------------------------------------------------------------------- /test/sample-files/MediaShout/JOY.is.Joy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/MediaShout/JOY.is.Joy.json -------------------------------------------------------------------------------- /test/sample-files/MediaShout/The.Blessing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/MediaShout/The.Blessing.json -------------------------------------------------------------------------------- /test/sample-files/MediaShout/multi-folder-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/MediaShout/multi-folder-library.json -------------------------------------------------------------------------------- /test/sample-files/MediaShout/multiple-songs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/MediaShout/multiple-songs.json -------------------------------------------------------------------------------- /test/sample-files/MediaShout/script.sc7x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/MediaShout/script.sc7x -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/Bože-tebe-chválíme(Czech).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/Bože-tebe-chválíme(Czech).xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/complex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/complex.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/format.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/format2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/format2.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/laboratory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/laboratory.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/multiple-comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/multiple-comments.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/simple.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/test0.8-convert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/test0.8-convert.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/test0.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/test0.9.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/examples/version0.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/examples/version0.9.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/A-Mighty-Fortress-is-Our-God.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/A-Mighty-Fortress-is-Our-God.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/All-Hail-The-Power-Of-Jesus-Name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/All-Hail-The-Power-Of-Jesus-Name.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Amazing-Grace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Amazing-Grace.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/And-Can-It-Be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/And-Can-It-Be.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Are-You-Washed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Are-You-Washed.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Be-Thou-My-Vision.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Be-Thou-My-Vision.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Christ-Arose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Christ-Arose.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Come-Thou-Fount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Come-Thou-Fount.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Crown-Him-With-Many-Crowns.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Crown-Him-With-Many-Crowns.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Great-Is-Thy-Faithfulness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Great-Is-Thy-Faithfulness.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Hava-Nagila.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Hava-Nagila.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/He-Leadeth-Me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/He-Leadeth-Me.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Holy-Holy-Holy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Holy-Holy-Holy.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/How-Firm-A-Foundation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/How-Firm-A-Foundation.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/How-Great-Thou-Art.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/How-Great-Thou-Art.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/I-Have-Decided-To-Follow-Jesus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/I-Have-Decided-To-Follow-Jesus.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/In-The-Garden.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/In-The-Garden.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/It-Is-Well-With-My-Soul.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/It-Is-Well-With-My-Soul.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Jesus-Loves-Even-Me.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Jesus-Loves-Even-Me.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Leaning-On-The-Everlasting-Arms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Leaning-On-The-Everlasting-Arms.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Man-Of-Sorrows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Man-Of-Sorrows.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Nothing-But-The-Blood.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Nothing-But-The-Blood.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Since-I-Have-Been-Redeemed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Since-I-Have-Been-Redeemed.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/Standing-On-The-Promises.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/Standing-On-The-Promises.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/The-Old-Rugged-Cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/The-Old-Rugged-Cross.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/The-Solid-Rock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/The-Solid-Rock.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/What-A-Friend-We-Have-In-Jesus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/What-A-Friend-We-Have-In-Jesus.xml -------------------------------------------------------------------------------- /test/sample-files/OpenLyrics/songs/When-We-All-Get-To-Heaven.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/OpenLyrics/songs/When-We-All-Get-To-Heaven.xml -------------------------------------------------------------------------------- /test/sample-files/Plain-Text/At-the-Cross.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/Plain-Text/At-the-Cross.txt -------------------------------------------------------------------------------- /test/sample-files/Plain-Text/Be-Near.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/Plain-Text/Be-Near.txt -------------------------------------------------------------------------------- /test/sample-files/Plain-Text/Great-is-your-faithfulness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/Plain-Text/Great-is-your-faithfulness.txt -------------------------------------------------------------------------------- /test/sample-files/Plain-Text/Our-Father.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/Plain-Text/Our-Father.txt -------------------------------------------------------------------------------- /test/sample-files/Plain-Text/Your-Grace-is-Enough.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/Plain-Text/Your-Grace-is-Enough.txt -------------------------------------------------------------------------------- /test/sample-files/Plain-Text/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v4-Be-Near.pro4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v4-Be-Near.pro4 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v4-Give-Us-Clean-Hands.pro4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v4-Give-Us-Clean-Hands.pro4 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v4-Jesus-Saves.pro4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v4-Jesus-Saves.pro4 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v4-You-Are.pro4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v4-You-Are.pro4 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v4-empty.pro4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v4-empty.pro4 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v5-Be-Near-2.pro5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v5-Be-Near-2.pro5 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v5-Be-Near.pro5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v5-Be-Near.pro5 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v5-Give-Us-Clean-Hands.pro5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v5-Give-Us-Clean-Hands.pro5 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v5-empty-song.pro5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v5-empty-song.pro5 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v5-empty.pro5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v5-empty.pro5 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v5-single-unnamed-slide.pro5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v5-single-unnamed-slide.pro5 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-Amazing-Grace.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-Amazing-Grace.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-Be-Near-2.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-Be-Near-2.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-Be-Near.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-Be-Near.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-Feature-Test.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-Feature-Test.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-empty-song.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-empty-song.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-empty.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-empty.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v6-single-unnamed-slide.pro6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v6-single-unnamed-slide.pro6 -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v7-At-the-Cross.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v7-At-the-Cross.pro -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v7-Come-Thou-Fount.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v7-Come-Thou-Fount.pro -------------------------------------------------------------------------------- /test/sample-files/ProPresenter/v7-Feature-Test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/ProPresenter/v7-Feature-Test.pro -------------------------------------------------------------------------------- /test/sample-files/SongPro/_empty.sng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sample-files/SongPro/a-hard-days-night.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/a-hard-days-night.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/all-i-have-to-do-is-dream.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/all-i-have-to-do-is-dream.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/back-on-the-chain-gang.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/back-on-the-chain-gang.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/bad-moon-rising.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/bad-moon-rising.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/be-my-baby.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/be-my-baby.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/boulevard-of-broken-dreams.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/boulevard-of-broken-dreams.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/breathe.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/breathe.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/brown-eyed-girl.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/brown-eyed-girl.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/bye-bye-love.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/bye-bye-love.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/california-dreamin.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/california-dreamin.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/cant-buy-me-love.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/cant-buy-me-love.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/cant-help-falling-in-love.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/cant-help-falling-in-love.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/cant-you-see.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/cant-you-see.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/come-together.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/come-together.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/comfortably-numb.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/comfortably-numb.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/creep.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/creep.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/crying.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/crying.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/daydream-believer.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/daydream-believer.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/daydream.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/daydream.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/dont-be-cruel.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/dont-be-cruel.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/dont-cry-no-tears.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/dont-cry-no-tears.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/dont-you-forget-about-me.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/dont-you-forget-about-me.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/down-by-the-river.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/down-by-the-river.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/down-on-the-corner.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/down-on-the-corner.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/draggin-the-line.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/draggin-the-line.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/earth-angel.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/earth-angel.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/easy.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/easy.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/escape-capsule.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/escape-capsule.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/every-breath-you-take.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/every-breath-you-take.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/everyday.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/everyday.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/fields-of-gold.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/fields-of-gold.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/for-what-its-worth.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/for-what-its-worth.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/fortunate-son.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/fortunate-son.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/free-bird.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/free-bird.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/hallelujah.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/hallelujah.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/handle-with-care.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/handle-with-care.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/happy-together.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/happy-together.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/harvest-moon.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/harvest-moon.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/have-you-ever-seen-the-rain.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/have-you-ever-seen-the-rain.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/heart-of-gold.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/heart-of-gold.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/hey-jude.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/hey-jude.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/hotel-california.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/hotel-california.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/house-of-the-rising-sun.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/house-of-the-rising-sun.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/i-can-see-clearly-now.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/i-can-see-clearly-now.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/i-melt-with-you.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/i-melt-with-you.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/i-want-to-hold-your-hand.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/i-want-to-hold-your-hand.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/i-want-you-to-want-me-live.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/i-want-you-to-want-me-live.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/i-wont-back-down.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/i-wont-back-down.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/im-a-believer.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/im-a-believer.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/im-so-lonesome-i-could-cry.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/im-so-lonesome-i-could-cry.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/in-my-life.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/in-my-life.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/its-my-party.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/its-my-party.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/lean-on-me.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/lean-on-me.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/learning-to-fly.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/learning-to-fly.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/listen-to-the-music.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/listen-to-the-music.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/losing-my-religion.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/losing-my-religion.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/love-me-tender.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/love-me-tender.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/love-potion-no-9.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/love-potion-no-9.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/low.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/low.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/maggie-may.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/maggie-may.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/manic-monday.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/manic-monday.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/mary-janes-last-dance.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/mary-janes-last-dance.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/me-and-bobby-mcgee.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/me-and-bobby-mcgee.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/moon-river.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/moon-river.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/my-girl.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/my-girl.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/nights-in-white-satin.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/nights-in-white-satin.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/no-matter-what.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/no-matter-what.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/one-headlight.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/one-headlight.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/one-of-us.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/one-of-us.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/only-you.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/only-you.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/pretty-woman.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/pretty-woman.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/proud-mary.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/proud-mary.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/rebel-rebel.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/rebel-rebel.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/rockin-in-the-free-world.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/rockin-in-the-free-world.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/sittin-on-the-dock-of-the-bay.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/sittin-on-the-dock-of-the-bay.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/son-of-a-preacher-man.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/son-of-a-preacher-man.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/space-oddity.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/space-oddity.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/stuck-in-the-middle-with-you.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/stuck-in-the-middle-with-you.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/suffragette-city.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/suffragette-city.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/sweet-caroline.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/sweet-caroline.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/sweet-home-alabama.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/sweet-home-alabama.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/sympathy-for-the-devil.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/sympathy-for-the-devil.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/tears-on-my-pillow.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/tears-on-my-pillow.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/the-weight.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/the-weight.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/theres-a-kind-of-hush.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/theres-a-kind-of-hush.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/ticket-to-ride.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/ticket-to-ride.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/tonight-you-belong-to-me.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/tonight-you-belong-to-me.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/turn-turn-turn.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/turn-turn-turn.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/under-the-boardwalk.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/under-the-boardwalk.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/up-on-the-roof.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/up-on-the-roof.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wake-me-up-when-september-ends.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wake-me-up-when-september-ends.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wake-up-little-susie.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wake-up-little-susie.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/walkin-after-midnight.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/walkin-after-midnight.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wayfaring-stranger.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wayfaring-stranger.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/where-did-our-love-go.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/where-did-our-love-go.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/while-my-guitar-gently-weeps.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/while-my-guitar-gently-weeps.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wicked-game.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wicked-game.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wild-world.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wild-world.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/will-the-circle-be-unbroken.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/will-the-circle-be-unbroken.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/will-you-still-love-me-tomorrow.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/will-you-still-love-me-tomorrow.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wish-you-were-here.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wish-you-were-here.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/with-a-little-help-from-my-friends.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/with-a-little-help-from-my-friends.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/wonderful-world.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/wonderful-world.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/you-cant-hurry-love.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/you-cant-hurry-love.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/you-got-it.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/you-got-it.sng -------------------------------------------------------------------------------- /test/sample-files/SongPro/your-cheatin-heart.sng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongPro/your-cheatin-heart.sng -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/Be-Near.sbsong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongShowPlus/Be-Near.sbsong -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/Give-Us-Clean-Hands.sbsong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongShowPlus/Give-Us-Clean-Hands.sbsong -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/Jesus-Saves.sbsong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongShowPlus/Jesus-Saves.sbsong -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/Spanish-Devuelveme-El-Gozo.sbsong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongShowPlus/Spanish-Devuelveme-El-Gozo.sbsong -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/Spanish-La-Sangre-(The-Blood).sbsong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongShowPlus/Spanish-La-Sangre-(The-Blood).sbsong -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/You-Are.sbsong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/SongShowPlus/You-Are.sbsong -------------------------------------------------------------------------------- /test/sample-files/SongShowPlus/empty.sbsong: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/sample-files/image/mr-bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/sample-files/image/mr-bean.png -------------------------------------------------------------------------------- /test/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/test/test-utils.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisMBarr/LyricConverter/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------