├── .gitattributes ├── .github └── workflows │ ├── codeql.yml │ ├── dotnet-desktop.yml │ └── dotnetcore.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── DebugConsole ├── DebugConsole.csproj ├── Program.cs └── Properties │ └── PublishProfiles │ └── FolderProfile.pubxml ├── LICENSE ├── LemonApp.sln ├── LemonApp ├── App.xaml ├── App.xaml.cs ├── ContentPage │ ├── FLGDIndexPage.xaml │ ├── FLGDIndexPage.xaml.cs │ ├── HomePage.xaml │ ├── HomePage.xaml.cs │ ├── MyFollowSingerList.xaml │ ├── MyFollowSingerList.xaml.cs │ ├── RadioIndexPage.xaml │ ├── RadioIndexPage.xaml.cs │ ├── SingerIndexPage.xaml │ ├── SingerIndexPage.xaml.cs │ ├── TopPage.xaml │ ├── TopPage.xaml.cs │ ├── TranslationAir.xaml │ └── TranslationAir.xaml.cs ├── ControlItems │ ├── AudioVisualizerRound.cs │ ├── BottomTick.xaml │ ├── BottomTick.xaml.cs │ ├── CannotPlay.xaml │ ├── CannotPlay.xaml.cs │ ├── DataItem.xaml │ ├── DataItem.xaml.cs │ ├── DownloadItem.xaml │ ├── DownloadItem.xaml.cs │ ├── FLGDIndexItem.xaml │ ├── FLGDIndexItem.xaml.cs │ ├── HotKeyChooser.xaml │ ├── HotKeyChooser.xaml.cs │ ├── ImageForceView.xaml │ ├── ImageForceView.xaml.cs │ ├── LyricView.xaml │ ├── LyricView.xaml.cs │ ├── MDButton.xaml │ ├── MDButton.xaml.cs │ ├── MVItem.xaml │ ├── MVItem.xaml.cs │ ├── MainMeumItem.xaml │ ├── MainMeumItem.xaml.cs │ ├── MeumItem.xaml │ ├── MeumItem.xaml.cs │ ├── MusicListView.xaml │ ├── MusicListView.xaml.cs │ ├── MyScrollViewer.cs │ ├── PlControl.xaml │ ├── PlControl.xaml.cs │ ├── PlayDLItem.xaml │ ├── PlayDLItem.xaml.cs │ ├── RadioItem.xaml │ ├── RadioItem.xaml.cs │ ├── Ran.cs │ ├── RbBox.xaml │ ├── RbBox.xaml.cs │ ├── SingerItem.xaml │ ├── SingerItem.xaml.cs │ ├── SingerPage.xaml │ ├── SingerPage.xaml.cs │ ├── SkinControl.xaml │ ├── SkinControl.xaml.cs │ ├── TitlePageBtn.xaml │ ├── TitlePageBtn.xaml.cs │ ├── TopControl.xaml │ ├── TopControl.xaml.cs │ ├── TwMessageBox.xaml │ ├── TwMessageBox.xaml.cs │ ├── UpdateBox.xaml │ └── UpdateBox.xaml.cs ├── Dll │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ └── Microsoft.WindowsAPICodePack.dll ├── DwmAnimation.cs ├── LemonApp.csproj ├── LemonApp.sln ├── LierdaCracker.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfilex86.pubxml │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── app.manifest ├── Resources │ ├── Icons.xaml │ ├── SCDictionary.xaml │ ├── app.manifest │ ├── icon.ico │ ├── left.ico │ ├── pause.ico │ ├── play.ico │ └── right.ico ├── Theme │ ├── LemonApp.Theme.Dtpp.dll │ ├── LemonApp.Theme.FerrisWheel.dll │ ├── LemonApp.Theme.TechDMusic.dll │ ├── LemonApp.Theme.TheFirstSnow.dll │ ├── LemonApp.Theme.YeStarLight.dll │ └── LemonApp.Theme.dll ├── Toast.xaml ├── Toast.xaml.cs ├── Window │ ├── IntroWindow.xaml │ ├── IntroWindow.xaml.cs │ ├── LoadingWindow.xaml │ ├── LoadingWindow.xaml.cs │ ├── LoginNetease.xaml │ ├── LoginNetease.xaml.cs │ ├── LoginWindow.xaml │ ├── LoginWindow.xaml.cs │ ├── LyricBar.xaml │ ├── LyricBar.xaml.cs │ ├── MVWindow.xaml │ ├── MVWindow.xaml.cs │ ├── MiniPlayer.xaml │ ├── MiniPlayer.xaml.cs │ ├── TransAirWindow.xaml │ └── TransAirWindow.xaml.cs └── WindowBlur.cs ├── LemonLib ├── Dll │ └── Bass.Net.dll ├── Helpers │ ├── HttpDownloadHelper.cs │ ├── HttpHelper.cs │ ├── ImageCacheHelper.cs │ ├── ImageHelper.cs │ ├── InfoHelper.cs │ ├── MsgHelper.cs │ ├── MyToolBarClient.cs │ ├── RomajiHelper.cs │ ├── SMTCCreator.cs │ ├── TextHelper.cs │ ├── TranslateAirHelper.cs │ ├── UIHelper.cs │ └── lmExtension.cs ├── LemonLib.csproj ├── Main.cs ├── MusicLib.cs ├── MusicPlayer.cs ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── bass.dll │ ├── bass_fx.dll │ ├── bass_fx_x86.dll │ └── bass_x86.dll ├── Settings.cs ├── bassenc.dll └── lame.exe ├── README.md └── global.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.github/workflows/dotnet-desktop.yml -------------------------------------------------------------------------------- /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /DebugConsole/DebugConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/DebugConsole/DebugConsole.csproj -------------------------------------------------------------------------------- /DebugConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/DebugConsole/Program.cs -------------------------------------------------------------------------------- /DebugConsole/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/DebugConsole/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LICENSE -------------------------------------------------------------------------------- /LemonApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp.sln -------------------------------------------------------------------------------- /LemonApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/App.xaml -------------------------------------------------------------------------------- /LemonApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/App.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/FLGDIndexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/FLGDIndexPage.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/FLGDIndexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/FLGDIndexPage.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/HomePage.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/HomePage.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/MyFollowSingerList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/MyFollowSingerList.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/MyFollowSingerList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/MyFollowSingerList.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/RadioIndexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/RadioIndexPage.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/RadioIndexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/RadioIndexPage.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/SingerIndexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/SingerIndexPage.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/SingerIndexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/SingerIndexPage.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/TopPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/TopPage.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/TopPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/TopPage.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ContentPage/TranslationAir.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/TranslationAir.xaml -------------------------------------------------------------------------------- /LemonApp/ContentPage/TranslationAir.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ContentPage/TranslationAir.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/AudioVisualizerRound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/AudioVisualizerRound.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/BottomTick.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/BottomTick.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/BottomTick.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/BottomTick.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/CannotPlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/CannotPlay.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/CannotPlay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/CannotPlay.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/DataItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/DataItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/DataItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/DataItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/DownloadItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/DownloadItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/DownloadItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/DownloadItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/FLGDIndexItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/FLGDIndexItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/FLGDIndexItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/FLGDIndexItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/HotKeyChooser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/HotKeyChooser.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/HotKeyChooser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/HotKeyChooser.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/ImageForceView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/ImageForceView.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/ImageForceView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/ImageForceView.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/LyricView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/LyricView.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/LyricView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/LyricView.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/MDButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MDButton.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/MDButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MDButton.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/MVItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MVItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/MVItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MVItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/MainMeumItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MainMeumItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/MainMeumItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MainMeumItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/MeumItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MeumItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/MeumItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MeumItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/MusicListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MusicListView.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/MusicListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MusicListView.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/MyScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/MyScrollViewer.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/PlControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/PlControl.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/PlControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/PlControl.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/PlayDLItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/PlayDLItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/PlayDLItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/PlayDLItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/RadioItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/RadioItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/RadioItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/RadioItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/Ran.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/Ran.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/RbBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/RbBox.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/RbBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/RbBox.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/SingerItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/SingerItem.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/SingerItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/SingerItem.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/SingerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/SingerPage.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/SingerPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/SingerPage.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/SkinControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/SkinControl.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/SkinControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/SkinControl.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/TitlePageBtn.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/TitlePageBtn.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/TitlePageBtn.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/TitlePageBtn.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/TopControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/TopControl.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/TopControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/TopControl.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/TwMessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/TwMessageBox.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/TwMessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/TwMessageBox.xaml.cs -------------------------------------------------------------------------------- /LemonApp/ControlItems/UpdateBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/UpdateBox.xaml -------------------------------------------------------------------------------- /LemonApp/ControlItems/UpdateBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/ControlItems/UpdateBox.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Dll/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Dll/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /LemonApp/Dll/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Dll/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /LemonApp/DwmAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/DwmAnimation.cs -------------------------------------------------------------------------------- /LemonApp/LemonApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/LemonApp.csproj -------------------------------------------------------------------------------- /LemonApp/LemonApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/LemonApp.sln -------------------------------------------------------------------------------- /LemonApp/LierdaCracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/LierdaCracker.cs -------------------------------------------------------------------------------- /LemonApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/MainWindow.xaml -------------------------------------------------------------------------------- /LemonApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /LemonApp/Properties/PublishProfiles/FolderProfilex86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Properties/PublishProfiles/FolderProfilex86.pubxml -------------------------------------------------------------------------------- /LemonApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LemonApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Properties/Resources.resx -------------------------------------------------------------------------------- /LemonApp/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Properties/app.manifest -------------------------------------------------------------------------------- /LemonApp/Resources/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/Icons.xaml -------------------------------------------------------------------------------- /LemonApp/Resources/SCDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/SCDictionary.xaml -------------------------------------------------------------------------------- /LemonApp/Resources/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/app.manifest -------------------------------------------------------------------------------- /LemonApp/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/icon.ico -------------------------------------------------------------------------------- /LemonApp/Resources/left.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/left.ico -------------------------------------------------------------------------------- /LemonApp/Resources/pause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/pause.ico -------------------------------------------------------------------------------- /LemonApp/Resources/play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/play.ico -------------------------------------------------------------------------------- /LemonApp/Resources/right.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Resources/right.ico -------------------------------------------------------------------------------- /LemonApp/Theme/LemonApp.Theme.Dtpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Theme/LemonApp.Theme.Dtpp.dll -------------------------------------------------------------------------------- /LemonApp/Theme/LemonApp.Theme.FerrisWheel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Theme/LemonApp.Theme.FerrisWheel.dll -------------------------------------------------------------------------------- /LemonApp/Theme/LemonApp.Theme.TechDMusic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Theme/LemonApp.Theme.TechDMusic.dll -------------------------------------------------------------------------------- /LemonApp/Theme/LemonApp.Theme.TheFirstSnow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Theme/LemonApp.Theme.TheFirstSnow.dll -------------------------------------------------------------------------------- /LemonApp/Theme/LemonApp.Theme.YeStarLight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Theme/LemonApp.Theme.YeStarLight.dll -------------------------------------------------------------------------------- /LemonApp/Theme/LemonApp.Theme.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Theme/LemonApp.Theme.dll -------------------------------------------------------------------------------- /LemonApp/Toast.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Toast.xaml -------------------------------------------------------------------------------- /LemonApp/Toast.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Toast.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/IntroWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/IntroWindow.xaml -------------------------------------------------------------------------------- /LemonApp/Window/IntroWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/IntroWindow.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/LoadingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LoadingWindow.xaml -------------------------------------------------------------------------------- /LemonApp/Window/LoadingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LoadingWindow.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/LoginNetease.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LoginNetease.xaml -------------------------------------------------------------------------------- /LemonApp/Window/LoginNetease.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LoginNetease.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/LoginWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LoginWindow.xaml -------------------------------------------------------------------------------- /LemonApp/Window/LoginWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LoginWindow.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/LyricBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LyricBar.xaml -------------------------------------------------------------------------------- /LemonApp/Window/LyricBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/LyricBar.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/MVWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/MVWindow.xaml -------------------------------------------------------------------------------- /LemonApp/Window/MVWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/MVWindow.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/MiniPlayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/MiniPlayer.xaml -------------------------------------------------------------------------------- /LemonApp/Window/MiniPlayer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/MiniPlayer.xaml.cs -------------------------------------------------------------------------------- /LemonApp/Window/TransAirWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/TransAirWindow.xaml -------------------------------------------------------------------------------- /LemonApp/Window/TransAirWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/Window/TransAirWindow.xaml.cs -------------------------------------------------------------------------------- /LemonApp/WindowBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonApp/WindowBlur.cs -------------------------------------------------------------------------------- /LemonLib/Dll/Bass.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Dll/Bass.Net.dll -------------------------------------------------------------------------------- /LemonLib/Helpers/HttpDownloadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/HttpDownloadHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/HttpHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/ImageCacheHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/ImageCacheHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/ImageHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/InfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/InfoHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/MsgHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/MsgHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/MyToolBarClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/MyToolBarClient.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/RomajiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/RomajiHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/SMTCCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/SMTCCreator.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/TextHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/TranslateAirHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/TranslateAirHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/UIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/UIHelper.cs -------------------------------------------------------------------------------- /LemonLib/Helpers/lmExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Helpers/lmExtension.cs -------------------------------------------------------------------------------- /LemonLib/LemonLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/LemonLib.csproj -------------------------------------------------------------------------------- /LemonLib/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Main.cs -------------------------------------------------------------------------------- /LemonLib/MusicLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/MusicLib.cs -------------------------------------------------------------------------------- /LemonLib/MusicPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/MusicPlayer.cs -------------------------------------------------------------------------------- /LemonLib/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /LemonLib/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LemonLib/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Properties/Resources.resx -------------------------------------------------------------------------------- /LemonLib/Resources/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Resources/bass.dll -------------------------------------------------------------------------------- /LemonLib/Resources/bass_fx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Resources/bass_fx.dll -------------------------------------------------------------------------------- /LemonLib/Resources/bass_fx_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Resources/bass_fx_x86.dll -------------------------------------------------------------------------------- /LemonLib/Resources/bass_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Resources/bass_x86.dll -------------------------------------------------------------------------------- /LemonLib/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/Settings.cs -------------------------------------------------------------------------------- /LemonLib/bassenc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/bassenc.dll -------------------------------------------------------------------------------- /LemonLib/lame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/LemonLib/lame.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LemonCodeTeam/Lemon-App/HEAD/global.json --------------------------------------------------------------------------------