├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Release ├── Spot_Widget_1_0_0_0.zip ├── Spot_Widget_1_0_1_1.zip ├── Spot_Widget_1_2_0_0.zip ├── Spot_Widget_1_2_0_7.zip ├── Spot_Widget_1_2_1_0.zip ├── Spot_Widget_1_2_1_5.zip ├── Spot_Widget_1_3_0_0.zip ├── Spot_Widget_1_3_1_0.zip ├── Spot_Widget_1_4_0_0.zip ├── Spot_Widget_1_4_0_1.zip ├── Spot_Widget_1_4_0_2.zip ├── Spot_Widget_1_4_0_3.zip ├── Spot_Widget_1_4_1_0.zip ├── Spot_Widget_1_5_0_0.zip ├── Spot_Widget_1_5_0_1.zip ├── Spot_Widget_1_5_0_2.zip ├── Spot_Widget_1_5_0_3.zip ├── Spot_Widget_1_5_0_4.zip └── version.md ├── Spotify Stream Widget.sln ├── Spotify Stream Widget ├── App.config ├── ApplicationEvents.vb ├── BigViewer.Designer.vb ├── BigViewer.resx ├── BigViewer.vb ├── LocalSongManager.vb ├── Logger.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest ├── NormalViewer.Designer.vb ├── NormalViewer.resx ├── NormalViewer.vb ├── Resources │ └── albumArt.png ├── Settings.Designer.vb ├── Settings.resx ├── Settings.vb ├── SmallViewer.Designer.vb ├── SmallViewer.resx ├── SmallViewer.vb ├── Spot_Stream_Logo.ico ├── Spotify Stream Widget.vbproj ├── Viewer.Designer.vb ├── Viewer.resx ├── Viewer.vb └── packages.config ├── _config.yml └── img ├── screen.jpg ├── screen2.jpg ├── screen3.jpg └── widget-for-spotify-presentation.gif /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/README.md -------------------------------------------------------------------------------- /Release/Spot_Widget_1_0_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_0_0_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_0_1_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_0_1_1.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_2_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_2_0_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_2_0_7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_2_0_7.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_2_1_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_2_1_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_2_1_5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_2_1_5.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_3_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_3_0_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_3_1_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_3_1_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_4_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_4_0_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_4_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_4_0_1.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_4_0_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_4_0_2.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_4_0_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_4_0_3.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_4_1_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_4_1_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_5_0_0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_5_0_0.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_5_0_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_5_0_1.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_5_0_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_5_0_2.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_5_0_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_5_0_3.zip -------------------------------------------------------------------------------- /Release/Spot_Widget_1_5_0_4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Release/Spot_Widget_1_5_0_4.zip -------------------------------------------------------------------------------- /Release/version.md: -------------------------------------------------------------------------------- 1 | 1.5.0.4 -------------------------------------------------------------------------------- /Spotify Stream Widget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget.sln -------------------------------------------------------------------------------- /Spotify Stream Widget/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/App.config -------------------------------------------------------------------------------- /Spotify Stream Widget/ApplicationEvents.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/ApplicationEvents.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/BigViewer.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/BigViewer.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/BigViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/BigViewer.resx -------------------------------------------------------------------------------- /Spotify Stream Widget/BigViewer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/BigViewer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/LocalSongManager.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/LocalSongManager.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/Logger.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Logger.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/Application.myapp -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/Resources.resx -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/Settings.settings -------------------------------------------------------------------------------- /Spotify Stream Widget/My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/My Project/app.manifest -------------------------------------------------------------------------------- /Spotify Stream Widget/NormalViewer.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/NormalViewer.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/NormalViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/NormalViewer.resx -------------------------------------------------------------------------------- /Spotify Stream Widget/NormalViewer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/NormalViewer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/Resources/albumArt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Resources/albumArt.png -------------------------------------------------------------------------------- /Spotify Stream Widget/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Settings.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Settings.resx -------------------------------------------------------------------------------- /Spotify Stream Widget/Settings.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Settings.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/SmallViewer.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/SmallViewer.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/SmallViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/SmallViewer.resx -------------------------------------------------------------------------------- /Spotify Stream Widget/SmallViewer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/SmallViewer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/Spot_Stream_Logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Spot_Stream_Logo.ico -------------------------------------------------------------------------------- /Spotify Stream Widget/Spotify Stream Widget.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Spotify Stream Widget.vbproj -------------------------------------------------------------------------------- /Spotify Stream Widget/Viewer.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Viewer.Designer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/Viewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Viewer.resx -------------------------------------------------------------------------------- /Spotify Stream Widget/Viewer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/Viewer.vb -------------------------------------------------------------------------------- /Spotify Stream Widget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/Spotify Stream Widget/packages.config -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/_config.yml -------------------------------------------------------------------------------- /img/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/img/screen.jpg -------------------------------------------------------------------------------- /img/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/img/screen2.jpg -------------------------------------------------------------------------------- /img/screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/img/screen3.jpg -------------------------------------------------------------------------------- /img/widget-for-spotify-presentation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcoPNS/Spotify-Stream-Widget/HEAD/img/widget-for-spotify-presentation.gif --------------------------------------------------------------------------------