├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug.yml │ ├── bug.yml │ └── config.yml ├── advanced-issue-labeler.yml └── workflows │ ├── close-issues.yml │ ├── issue-handler.yml │ └── lock.yml ├── .gitignore ├── README.md ├── SECURITY.md ├── changelogs-old ├── 2.3.2-prereleases.md ├── 2.4.1-prereleases.md └── Patch Changes.md ├── changelogs ├── 2.0.2.md ├── 2.0.3.md ├── 2.1.0.md ├── 2.3.0.md ├── 2.3.1.md ├── 2.3.2.md ├── 2.4.0.md ├── 2.4.1.md ├── 2.5.0.md ├── 2.5.2.md ├── 2.5.3.md ├── 2.6.0.md ├── 2.6.1.md ├── 3.0.0.md ├── 3.1.0.md ├── PTB.md └── images │ ├── 2.0.2.jpg │ ├── 2.0.3.jpg │ ├── 2.1.0.png │ ├── 2.3.0.jpg │ ├── 2.3.1.png │ ├── 2.3.2-prerelease.png │ ├── 2.3.2.png │ ├── 2.4.0.png │ ├── 2.4.1.png │ ├── 2.5.0.png │ ├── 2.5.2.png │ ├── 2.5.3.png │ ├── 2.6.0.png │ ├── 2.6.1.png │ ├── 2.x-GC.jpg │ ├── 2.x-beta14.jpg │ ├── 2.x-beta15.jpg │ ├── 2.x-beta16.jpg │ ├── 2.x-beta17.jpg │ ├── 2.x-beta18.jpg │ ├── 2.x-beta19.jpg │ ├── 2.x-beta20.jpg │ ├── 2.x-beta21.jpg │ ├── 2.x-beta30jpg.jpg │ ├── 3.0.0.png │ ├── 3.1.0.png │ └── idk.png └── docs ├── AboutPage.png ├── Changelog-Schema.md ├── Cider 2.5.0 Preview API.md ├── Cider-Menu.png ├── FINDING_VERSION.md ├── Immersive Sing Along Mode CSS Properties.md └── PTB.md /.github/ISSUE_TEMPLATE/1-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/ISSUE_TEMPLATE/1-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/advanced-issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/advanced-issue-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/close-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/workflows/close-issues.yml -------------------------------------------------------------------------------- /.github/workflows/issue-handler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/workflows/issue-handler.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .obsidian/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/SECURITY.md -------------------------------------------------------------------------------- /changelogs-old/2.3.2-prereleases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs-old/2.3.2-prereleases.md -------------------------------------------------------------------------------- /changelogs-old/2.4.1-prereleases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs-old/2.4.1-prereleases.md -------------------------------------------------------------------------------- /changelogs-old/Patch Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs-old/Patch Changes.md -------------------------------------------------------------------------------- /changelogs/2.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.0.2.md -------------------------------------------------------------------------------- /changelogs/2.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.0.3.md -------------------------------------------------------------------------------- /changelogs/2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.1.0.md -------------------------------------------------------------------------------- /changelogs/2.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.3.0.md -------------------------------------------------------------------------------- /changelogs/2.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.3.1.md -------------------------------------------------------------------------------- /changelogs/2.3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.3.2.md -------------------------------------------------------------------------------- /changelogs/2.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.4.0.md -------------------------------------------------------------------------------- /changelogs/2.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.4.1.md -------------------------------------------------------------------------------- /changelogs/2.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.5.0.md -------------------------------------------------------------------------------- /changelogs/2.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.5.2.md -------------------------------------------------------------------------------- /changelogs/2.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.5.3.md -------------------------------------------------------------------------------- /changelogs/2.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.6.0.md -------------------------------------------------------------------------------- /changelogs/2.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/2.6.1.md -------------------------------------------------------------------------------- /changelogs/3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/3.0.0.md -------------------------------------------------------------------------------- /changelogs/3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/3.1.0.md -------------------------------------------------------------------------------- /changelogs/PTB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/PTB.md -------------------------------------------------------------------------------- /changelogs/images/2.0.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.0.2.jpg -------------------------------------------------------------------------------- /changelogs/images/2.0.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.0.3.jpg -------------------------------------------------------------------------------- /changelogs/images/2.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.1.0.png -------------------------------------------------------------------------------- /changelogs/images/2.3.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.3.0.jpg -------------------------------------------------------------------------------- /changelogs/images/2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.3.1.png -------------------------------------------------------------------------------- /changelogs/images/2.3.2-prerelease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.3.2-prerelease.png -------------------------------------------------------------------------------- /changelogs/images/2.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.3.2.png -------------------------------------------------------------------------------- /changelogs/images/2.4.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.4.0.png -------------------------------------------------------------------------------- /changelogs/images/2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.4.1.png -------------------------------------------------------------------------------- /changelogs/images/2.5.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.5.0.png -------------------------------------------------------------------------------- /changelogs/images/2.5.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.5.2.png -------------------------------------------------------------------------------- /changelogs/images/2.5.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.5.3.png -------------------------------------------------------------------------------- /changelogs/images/2.6.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.6.0.png -------------------------------------------------------------------------------- /changelogs/images/2.6.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.6.1.png -------------------------------------------------------------------------------- /changelogs/images/2.x-GC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-GC.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta14.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta15.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta16.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta17.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta18.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta19.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta20.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta21.jpg -------------------------------------------------------------------------------- /changelogs/images/2.x-beta30jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/2.x-beta30jpg.jpg -------------------------------------------------------------------------------- /changelogs/images/3.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/3.0.0.png -------------------------------------------------------------------------------- /changelogs/images/3.1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/3.1.0.png -------------------------------------------------------------------------------- /changelogs/images/idk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/changelogs/images/idk.png -------------------------------------------------------------------------------- /docs/AboutPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/docs/AboutPage.png -------------------------------------------------------------------------------- /docs/Changelog-Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/docs/Changelog-Schema.md -------------------------------------------------------------------------------- /docs/Cider 2.5.0 Preview API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/docs/Cider 2.5.0 Preview API.md -------------------------------------------------------------------------------- /docs/Cider-Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/docs/Cider-Menu.png -------------------------------------------------------------------------------- /docs/FINDING_VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/docs/FINDING_VERSION.md -------------------------------------------------------------------------------- /docs/Immersive Sing Along Mode CSS Properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ciderapp/Cider-2/HEAD/docs/Immersive Sing Along Mode CSS Properties.md -------------------------------------------------------------------------------- /docs/PTB.md: -------------------------------------------------------------------------------- 1 | I have a new home! 2 | 3 | see changelogs/PTB.md 4 | --------------------------------------------------------------------------------