├── .github └── workflows │ └── sync.yml ├── README.3.md ├── README.md ├── docs ├── Developer │ └── README.md ├── Lyricify 3 │ └── README.md ├── Lyricify 4 │ ├── CustomClient │ │ ├── Readme.md │ │ ├── Readme.zh-CN.md │ │ └── pic │ │ │ ├── Demo-Pic01.png │ │ │ ├── Demo-Pic02.png │ │ │ ├── Demo-Pic03.png │ │ │ ├── Demo-Pic04.png │ │ │ ├── Demo-Pic05_en-US.png │ │ │ └── Demo-Pic05_zh-CN.png │ ├── LyricifyAccount │ │ ├── README.md │ │ └── README.zh-CN.md │ ├── Lyrics.md │ ├── Platform.md │ ├── README.md │ ├── UserAgreement.txt │ ├── img │ │ ├── img001.png │ │ ├── img002.png │ │ └── img003.png │ └── settings.json ├── Lyricify Lite │ └── README.md └── Lyricify Mobile │ ├── CustomClient │ ├── Readme.md │ ├── Readme.zh-CN.md │ └── pic │ │ ├── Demo-Pic01.png │ │ ├── Demo-Pic02.png │ │ ├── Demo-Pic03.png │ │ └── Demo-Pic04.png │ ├── README.md │ └── iOS │ ├── IpaGuide.md │ └── pic │ ├── image01.png │ ├── image02.png │ ├── image03.png │ └── image04.png ├── i18n ├── Lyricify 3 │ ├── Lang_CN.xaml │ ├── Lang_CNTW.xaml │ └── Lang_EN.xaml ├── Lyricify 4 │ ├── Language.en-US.xaml │ ├── Language.fr-FR.xaml │ ├── Language.ja-JP.xaml │ ├── Language.ru-RU.xaml │ ├── Language.sv-SE.xaml │ ├── Language.tr-TR.xaml │ ├── Language.zh-CN.xaml │ ├── Language.zh-MS.xaml │ ├── Language.zh-TW.xaml │ └── README.md ├── Lyricify Lite │ ├── Language.en-US.xaml │ ├── Language.ja-JP.xaml │ ├── Language.ru-RU.xaml │ ├── Language.zh-CN.xaml │ └── Language.zh-TW.xaml └── Lyricify Mobile │ ├── Language.xaml │ ├── Language_ru-RU.xaml │ ├── Language_zh-CN.xaml │ └── Language_zh-TW.xaml ├── images ├── lyricify_icon.png └── readme │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── func-lyrics-am-duet.png │ ├── func-lyrics-am-highlight.png │ ├── func-lyrics-am-multiline.png │ ├── func-lyrics-desktop.png │ ├── func-lyrics-display.png │ ├── func-lyrics-dynamic-lyrics-island.png │ ├── func-lyrics-fulscreen.png │ ├── func-lyrics-mobile-ui.png │ └── func-lyrics-vertical.png └── resources ├── icon ├── Lyricify Icon.ico └── Lyricify Lite Icon.ico └── theme ├── DarkTheme.xaml └── LightTheme.xaml /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /README.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/README.3.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/README.md -------------------------------------------------------------------------------- /docs/Developer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Developer/README.md -------------------------------------------------------------------------------- /docs/Lyricify 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 3/README.md -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/Readme.md -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/Readme.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/Readme.zh-CN.md -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/pic/Demo-Pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/pic/Demo-Pic01.png -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/pic/Demo-Pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/pic/Demo-Pic02.png -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/pic/Demo-Pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/pic/Demo-Pic03.png -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/pic/Demo-Pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/pic/Demo-Pic04.png -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/pic/Demo-Pic05_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/pic/Demo-Pic05_en-US.png -------------------------------------------------------------------------------- /docs/Lyricify 4/CustomClient/pic/Demo-Pic05_zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/CustomClient/pic/Demo-Pic05_zh-CN.png -------------------------------------------------------------------------------- /docs/Lyricify 4/LyricifyAccount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/LyricifyAccount/README.md -------------------------------------------------------------------------------- /docs/Lyricify 4/LyricifyAccount/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/LyricifyAccount/README.zh-CN.md -------------------------------------------------------------------------------- /docs/Lyricify 4/Lyrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/Lyrics.md -------------------------------------------------------------------------------- /docs/Lyricify 4/Platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/Platform.md -------------------------------------------------------------------------------- /docs/Lyricify 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/README.md -------------------------------------------------------------------------------- /docs/Lyricify 4/UserAgreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/UserAgreement.txt -------------------------------------------------------------------------------- /docs/Lyricify 4/img/img001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/img/img001.png -------------------------------------------------------------------------------- /docs/Lyricify 4/img/img002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/img/img002.png -------------------------------------------------------------------------------- /docs/Lyricify 4/img/img003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/img/img003.png -------------------------------------------------------------------------------- /docs/Lyricify 4/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify 4/settings.json -------------------------------------------------------------------------------- /docs/Lyricify Lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Lite/README.md -------------------------------------------------------------------------------- /docs/Lyricify Mobile/CustomClient/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/CustomClient/Readme.md -------------------------------------------------------------------------------- /docs/Lyricify Mobile/CustomClient/Readme.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/CustomClient/Readme.zh-CN.md -------------------------------------------------------------------------------- /docs/Lyricify Mobile/CustomClient/pic/Demo-Pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/CustomClient/pic/Demo-Pic01.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/CustomClient/pic/Demo-Pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/CustomClient/pic/Demo-Pic02.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/CustomClient/pic/Demo-Pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/CustomClient/pic/Demo-Pic03.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/CustomClient/pic/Demo-Pic04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/CustomClient/pic/Demo-Pic04.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/README.md -------------------------------------------------------------------------------- /docs/Lyricify Mobile/iOS/IpaGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/iOS/IpaGuide.md -------------------------------------------------------------------------------- /docs/Lyricify Mobile/iOS/pic/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/iOS/pic/image01.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/iOS/pic/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/iOS/pic/image02.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/iOS/pic/image03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/iOS/pic/image03.png -------------------------------------------------------------------------------- /docs/Lyricify Mobile/iOS/pic/image04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/docs/Lyricify Mobile/iOS/pic/image04.png -------------------------------------------------------------------------------- /i18n/Lyricify 3/Lang_CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 3/Lang_CN.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 3/Lang_CNTW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 3/Lang_CNTW.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 3/Lang_EN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 3/Lang_EN.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.en-US.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.fr-FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.fr-FR.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.ja-JP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.ja-JP.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.ru-RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.ru-RU.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.sv-SE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.sv-SE.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.tr-TR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.tr-TR.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.zh-CN.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.zh-MS.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.zh-MS.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/Language.zh-TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/Language.zh-TW.xaml -------------------------------------------------------------------------------- /i18n/Lyricify 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify 4/README.md -------------------------------------------------------------------------------- /i18n/Lyricify Lite/Language.en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Lite/Language.en-US.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Lite/Language.ja-JP.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Lite/Language.ja-JP.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Lite/Language.ru-RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Lite/Language.ru-RU.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Lite/Language.zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Lite/Language.zh-CN.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Lite/Language.zh-TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Lite/Language.zh-TW.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Mobile/Language.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Mobile/Language.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Mobile/Language_ru-RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Mobile/Language_ru-RU.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Mobile/Language_zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Mobile/Language_zh-CN.xaml -------------------------------------------------------------------------------- /i18n/Lyricify Mobile/Language_zh-TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/i18n/Lyricify Mobile/Language_zh-TW.xaml -------------------------------------------------------------------------------- /images/lyricify_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/lyricify_icon.png -------------------------------------------------------------------------------- /images/readme/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/01.png -------------------------------------------------------------------------------- /images/readme/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/02.png -------------------------------------------------------------------------------- /images/readme/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/03.png -------------------------------------------------------------------------------- /images/readme/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/04.png -------------------------------------------------------------------------------- /images/readme/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/05.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-am-duet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-am-duet.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-am-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-am-highlight.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-am-multiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-am-multiline.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-desktop.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-display.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-dynamic-lyrics-island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-dynamic-lyrics-island.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-fulscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-fulscreen.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-mobile-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-mobile-ui.png -------------------------------------------------------------------------------- /images/readme/func-lyrics-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/images/readme/func-lyrics-vertical.png -------------------------------------------------------------------------------- /resources/icon/Lyricify Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/resources/icon/Lyricify Icon.ico -------------------------------------------------------------------------------- /resources/icon/Lyricify Lite Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/resources/icon/Lyricify Lite Icon.ico -------------------------------------------------------------------------------- /resources/theme/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/resources/theme/DarkTheme.xaml -------------------------------------------------------------------------------- /resources/theme/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WXRIW/Lyricify-App/HEAD/resources/theme/LightTheme.xaml --------------------------------------------------------------------------------