├── .gitattributes ├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── FluentInfo.sln ├── FluentInfo ├── 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-100.png │ ├── LockScreenLogo.scale-125.png │ ├── LockScreenLogo.scale-150.png │ ├── LockScreenLogo.scale-200.png │ ├── LockScreenLogo.scale-400.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.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-16_altform-unplated.png │ ├── Square44x44Logo.targetsize-20.png │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ ├── Square44x44Logo.targetsize-30.png │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ ├── Square44x44Logo.targetsize-36.png │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ ├── Square44x44Logo.targetsize-40.png │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ ├── Square44x44Logo.targetsize-48.png │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ ├── Square44x44Logo.targetsize-60.png │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ ├── Square44x44Logo.targetsize-64.png │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ ├── Square44x44Logo.targetsize-72.png │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ ├── Square44x44Logo.targetsize-80.png │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ ├── Square44x44Logo.targetsize-96.png │ ├── Square44x44Logo.targetsize-96_altform-unplated.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 │ └── fluentinfo.ico ├── Controls │ └── PrettyView │ │ ├── ChipControl.xaml │ │ ├── ChipControl.xaml.cs │ │ ├── SectionControl.xaml │ │ ├── SectionControl.xaml.cs │ │ ├── TitleControl.xaml │ │ └── TitleControl.xaml.cs ├── Converters.cs ├── External │ ├── NativeMethods.cs │ └── WindowHelpers.cs ├── FluentInfo.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Pages │ ├── AboutContentPage.xaml │ ├── AboutContentPage.xaml.cs │ ├── FailedPage.xaml │ ├── FailedPage.xaml.cs │ ├── NoFileOpenPage.xaml │ ├── NoFileOpenPage.xaml.cs │ ├── PrettyViewPage.xaml │ ├── PrettyViewPage.xaml.cs │ ├── TextViewPage.xaml │ └── TextViewPage.xaml.cs ├── Properties │ ├── PublishProfiles │ │ ├── win-arm64.pubxml │ │ ├── win-x64.pubxml │ │ └── win-x86.pubxml │ └── launchSettings.json ├── SettingsHolder.cs └── app.manifest ├── FluentInfoCommon ├── FluentInfoCommon.csproj ├── MediaInfoTextParser.cs ├── OrderedProperties.cs ├── Structures.cs └── Utils.cs ├── FluentInfoShellExtension ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── FluentInfoShellExtension.csproj └── src │ └── lib.rs ├── FluentInfoTest ├── Assets │ ├── test.mkv │ ├── test.mp3 │ └── test.webm ├── FluentInfoTest.csproj └── SectionParserTest.cs ├── Generate-TerminalAssets.ps1 ├── LICENSE.txt ├── License.MediaInfo.html ├── MediaInfo ├── MediaInfo.cs ├── MediaInfoLib.csproj ├── source-arm64.txt ├── source-x64.txt └── source-x86.txt ├── PRIVACY-POLICY.md ├── README.md └── fluentinfoicon.svg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /FluentInfo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo.sln -------------------------------------------------------------------------------- /FluentInfo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/App.xaml -------------------------------------------------------------------------------- /FluentInfo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/App.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LockScreenLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LockScreenLogo.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LockScreenLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LockScreenLogo.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LockScreenLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LockScreenLogo.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/LockScreenLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/LockScreenLogo.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-16_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-16_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-20.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-20_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-20_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-256_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-256_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-30.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-30_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-30_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-32_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-32_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-36.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-36_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-36_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-40.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-40_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-40_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-48_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-48_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-60.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-60_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-60_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-64.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-64_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-64_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-72.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-72_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-72_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-80.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-80_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-80_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-96.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Square44x44Logo.targetsize-96_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Square44x44Logo.targetsize-96_altform-unplated.png -------------------------------------------------------------------------------- /FluentInfo/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /FluentInfo/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /FluentInfo/Assets/fluentinfo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Assets/fluentinfo.ico -------------------------------------------------------------------------------- /FluentInfo/Controls/PrettyView/ChipControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Controls/PrettyView/ChipControl.xaml -------------------------------------------------------------------------------- /FluentInfo/Controls/PrettyView/ChipControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Controls/PrettyView/ChipControl.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Controls/PrettyView/SectionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Controls/PrettyView/SectionControl.xaml -------------------------------------------------------------------------------- /FluentInfo/Controls/PrettyView/SectionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Controls/PrettyView/SectionControl.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Controls/PrettyView/TitleControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Controls/PrettyView/TitleControl.xaml -------------------------------------------------------------------------------- /FluentInfo/Controls/PrettyView/TitleControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Controls/PrettyView/TitleControl.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Converters.cs -------------------------------------------------------------------------------- /FluentInfo/External/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/External/NativeMethods.cs -------------------------------------------------------------------------------- /FluentInfo/External/WindowHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/External/WindowHelpers.cs -------------------------------------------------------------------------------- /FluentInfo/FluentInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/FluentInfo.csproj -------------------------------------------------------------------------------- /FluentInfo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/MainWindow.xaml -------------------------------------------------------------------------------- /FluentInfo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Package.appxmanifest -------------------------------------------------------------------------------- /FluentInfo/Pages/AboutContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/AboutContentPage.xaml -------------------------------------------------------------------------------- /FluentInfo/Pages/AboutContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/AboutContentPage.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Pages/FailedPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/FailedPage.xaml -------------------------------------------------------------------------------- /FluentInfo/Pages/FailedPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/FailedPage.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Pages/NoFileOpenPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/NoFileOpenPage.xaml -------------------------------------------------------------------------------- /FluentInfo/Pages/NoFileOpenPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/NoFileOpenPage.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Pages/PrettyViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/PrettyViewPage.xaml -------------------------------------------------------------------------------- /FluentInfo/Pages/PrettyViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/PrettyViewPage.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Pages/TextViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/TextViewPage.xaml -------------------------------------------------------------------------------- /FluentInfo/Pages/TextViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Pages/TextViewPage.xaml.cs -------------------------------------------------------------------------------- /FluentInfo/Properties/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Properties/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /FluentInfo/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /FluentInfo/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /FluentInfo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/Properties/launchSettings.json -------------------------------------------------------------------------------- /FluentInfo/SettingsHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/SettingsHolder.cs -------------------------------------------------------------------------------- /FluentInfo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfo/app.manifest -------------------------------------------------------------------------------- /FluentInfoCommon/FluentInfoCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoCommon/FluentInfoCommon.csproj -------------------------------------------------------------------------------- /FluentInfoCommon/MediaInfoTextParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoCommon/MediaInfoTextParser.cs -------------------------------------------------------------------------------- /FluentInfoCommon/OrderedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoCommon/OrderedProperties.cs -------------------------------------------------------------------------------- /FluentInfoCommon/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoCommon/Structures.cs -------------------------------------------------------------------------------- /FluentInfoCommon/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoCommon/Utils.cs -------------------------------------------------------------------------------- /FluentInfoShellExtension/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | windows-rs 3 | -------------------------------------------------------------------------------- /FluentInfoShellExtension/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoShellExtension/Cargo.lock -------------------------------------------------------------------------------- /FluentInfoShellExtension/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoShellExtension/Cargo.toml -------------------------------------------------------------------------------- /FluentInfoShellExtension/FluentInfoShellExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoShellExtension/FluentInfoShellExtension.csproj -------------------------------------------------------------------------------- /FluentInfoShellExtension/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoShellExtension/src/lib.rs -------------------------------------------------------------------------------- /FluentInfoTest/Assets/test.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoTest/Assets/test.mkv -------------------------------------------------------------------------------- /FluentInfoTest/Assets/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoTest/Assets/test.mp3 -------------------------------------------------------------------------------- /FluentInfoTest/Assets/test.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoTest/Assets/test.webm -------------------------------------------------------------------------------- /FluentInfoTest/FluentInfoTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoTest/FluentInfoTest.csproj -------------------------------------------------------------------------------- /FluentInfoTest/SectionParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/FluentInfoTest/SectionParserTest.cs -------------------------------------------------------------------------------- /Generate-TerminalAssets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/Generate-TerminalAssets.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /License.MediaInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/License.MediaInfo.html -------------------------------------------------------------------------------- /MediaInfo/MediaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/MediaInfo/MediaInfo.cs -------------------------------------------------------------------------------- /MediaInfo/MediaInfoLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/MediaInfo/MediaInfoLib.csproj -------------------------------------------------------------------------------- /MediaInfo/source-arm64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/MediaInfo/source-arm64.txt -------------------------------------------------------------------------------- /MediaInfo/source-x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/MediaInfo/source-x64.txt -------------------------------------------------------------------------------- /MediaInfo/source-x86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/MediaInfo/source-x86.txt -------------------------------------------------------------------------------- /PRIVACY-POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/PRIVACY-POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/README.md -------------------------------------------------------------------------------- /fluentinfoicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubuntuegor/FluentInfo/HEAD/fluentinfoicon.svg --------------------------------------------------------------------------------