├── .gitattributes ├── .gitignore ├── BeautifulLyricsMobileV2.sln ├── BeautifulLyricsMobileV2 ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── BeautifulLyricsMobileV2.csproj ├── Controls │ ├── BackgroundAnimationView.cs │ ├── GradientLabel.cs │ └── TouchScrollView.cs ├── CubicSpline.cs ├── CurveInterpolator │ ├── AbstractCurveMapper.cs │ ├── CurveInterpolator.cs │ ├── Gauss.cs │ ├── Math.cs │ ├── NumericalCurveMapper.cs │ ├── SegmentedCurveMapper.cs │ ├── SplineSegment.cs │ └── Utils.cs ├── Entities │ ├── Interlude.cs │ ├── LineVocals.cs │ ├── LyricUtilities.cs │ ├── ProviderLyrics.cs │ ├── SpotifyTypes.cs │ ├── Spring.cs │ ├── SyllableVocals.cs │ └── Types.cs ├── MauiProgram.cs ├── PageModels │ ├── LyricsViewModel.cs │ ├── OnboardingModel.cs │ └── SongMoreOptionsModel.cs ├── Pages │ ├── LoadingPage.xaml │ ├── LoadingPage.xaml.cs │ ├── LyricsView.xaml │ ├── LyricsView.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── OnboardingPage.xaml │ ├── OnboardingPage.xaml.cs │ └── Sheets │ │ ├── MoreOptionsSheet.xaml │ │ └── MoreOptionsSheet.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ ├── PlatformServices │ │ │ ├── AndroidSpotifyService.cs │ │ │ ├── GradientLabelRenderer.cs │ │ │ └── TouchScrollViewHandler.cs │ │ └── Resources │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── Resources │ │ └── PrivacyInfo.xcprivacy ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── FluentUI.cs │ │ ├── LyricsMedium.ttf │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ └── dotnet_bot.png │ ├── Raw │ │ ├── AboutAssets.txt │ │ └── Core14.profile.xml │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ ├── Lyrics.xaml │ │ └── Styles.xaml └── Services │ └── ISpotifyRemoteService.cs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── future.md ├── previews ├── preview.gif └── preview1.gif └── setup.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2.sln -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/App.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/App.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/AppShell.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/AppShell.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/BeautifulLyricsMobileV2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/BeautifulLyricsMobileV2.csproj -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Controls/BackgroundAnimationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Controls/BackgroundAnimationView.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Controls/GradientLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Controls/GradientLabel.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Controls/TouchScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Controls/TouchScrollView.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CubicSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CubicSpline.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/AbstractCurveMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/AbstractCurveMapper.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/CurveInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/CurveInterpolator.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/Gauss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/Gauss.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/Math.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/NumericalCurveMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/NumericalCurveMapper.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/SegmentedCurveMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/SegmentedCurveMapper.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/SplineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/SplineSegment.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/CurveInterpolator/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/CurveInterpolator/Utils.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/Interlude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/Interlude.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/LineVocals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/LineVocals.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/LyricUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/LyricUtilities.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/ProviderLyrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/ProviderLyrics.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/SpotifyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/SpotifyTypes.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/Spring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/Spring.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/SyllableVocals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/SyllableVocals.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Entities/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Entities/Types.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/MauiProgram.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/PageModels/LyricsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/PageModels/LyricsViewModel.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/PageModels/OnboardingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/PageModels/OnboardingModel.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/PageModels/SongMoreOptionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/PageModels/SongMoreOptionsModel.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/LoadingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/LoadingPage.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/LoadingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/LoadingPage.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/LyricsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/LyricsView.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/LyricsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/LyricsView.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/MainPage.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/OnboardingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/OnboardingPage.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/OnboardingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/OnboardingPage.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/Sheets/MoreOptionsSheet.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/Sheets/MoreOptionsSheet.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Pages/Sheets/MoreOptionsSheet.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Pages/Sheets/MoreOptionsSheet.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/PlatformServices/AndroidSpotifyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/PlatformServices/AndroidSpotifyService.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/PlatformServices/GradientLabelRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/PlatformServices/GradientLabelRenderer.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/PlatformServices/TouchScrollViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/PlatformServices/TouchScrollViewHandler.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/MacCatalyst/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/MacCatalyst/Entitlements.plist -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Platforms/iOS/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Platforms/iOS/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Properties/launchSettings.json -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Fonts/FluentUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Fonts/FluentUI.cs -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Fonts/LyricsMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Fonts/LyricsMedium.ttf -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Images/dotnet_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Images/dotnet_bot.png -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Raw/Core14.profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Raw/Core14.profile.xml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Styles/Lyrics.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Styles/Lyrics.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /BeautifulLyricsMobileV2/Services/ISpotifyRemoteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/BeautifulLyricsMobileV2/Services/ISpotifyRemoteService.cs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/README.md -------------------------------------------------------------------------------- /future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/future.md -------------------------------------------------------------------------------- /previews/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/previews/preview.gif -------------------------------------------------------------------------------- /previews/preview1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/previews/preview1.gif -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeNerd46/beautiful-lyrics-mobile/HEAD/setup.md --------------------------------------------------------------------------------