├── .gitignore ├── LICENSE ├── PLEX.sln ├── PlexPlaylistImport ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── Plex_vector_logo.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── icons8-help-32.png │ ├── play-x-trans.png │ ├── plex-logo.svg │ └── plex.png ├── FormModel.cs ├── Logger.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── PlexPlaylistImport.csproj ├── PlexPlaylistImport.csproj.user └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/LICENSE -------------------------------------------------------------------------------- /PLEX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PLEX.sln -------------------------------------------------------------------------------- /PlexPlaylistImport/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/App.xaml -------------------------------------------------------------------------------- /PlexPlaylistImport/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/App.xaml.cs -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Plex_vector_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Plex_vector_logo.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/icons8-help-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/icons8-help-32.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/play-x-trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/play-x-trans.png -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/plex-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/plex-logo.svg -------------------------------------------------------------------------------- /PlexPlaylistImport/Assets/plex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Assets/plex.png -------------------------------------------------------------------------------- /PlexPlaylistImport/FormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/FormModel.cs -------------------------------------------------------------------------------- /PlexPlaylistImport/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Logger.cs -------------------------------------------------------------------------------- /PlexPlaylistImport/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/MainPage.xaml -------------------------------------------------------------------------------- /PlexPlaylistImport/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/MainPage.xaml.cs -------------------------------------------------------------------------------- /PlexPlaylistImport/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Package.appxmanifest -------------------------------------------------------------------------------- /PlexPlaylistImport/PlexPlaylistImport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/PlexPlaylistImport.csproj -------------------------------------------------------------------------------- /PlexPlaylistImport/PlexPlaylistImport.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/PlexPlaylistImport.csproj.user -------------------------------------------------------------------------------- /PlexPlaylistImport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlexPlaylistImport/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/PlexPlaylistImport/Properties/Default.rd.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregchak/plex-playlist-import/HEAD/README.md --------------------------------------------------------------------------------