├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Port-Able-Suite.sln ├── Port-Able-Suite.sln.DotSettings ├── README.md ├── _config.yml ├── bin-template.zip └── src ├── AppsDownloader ├── App.config ├── AppsDownloader.csproj ├── Data │ └── AppsDownloaderJson.cs ├── Forms │ ├── AppInfoForm.Designer.cs │ ├── AppInfoForm.cs │ ├── AppInfoForm.resx │ ├── LangSelectionForm.Designer.cs │ ├── LangSelectionForm.cs │ ├── LangSelectionForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── SettingsForm.Designer.cs │ ├── SettingsForm.cs │ ├── SettingsForm.resx │ ├── SourceManagerForm.Designer.cs │ ├── SourceManagerForm.cs │ └── SourceManagerForm.resx ├── GlobalSuppressions.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Bacterium.png │ ├── Check.png │ ├── CheckAll.png │ ├── FishBones.png │ ├── Folder.png │ ├── ImageSlash.png │ ├── Info.png │ ├── Install.png │ ├── InstallSymbol.ico │ ├── PaLogoGreenSymbol.ico │ ├── PaLogoNegative.png │ ├── PatternDiagonal.png │ ├── Settings.png │ ├── Uncheck.png │ ├── Undo.png │ └── World.png ├── app.manifest └── packages.config ├── AppsLauncher ├── App.config ├── AppsLauncher.csproj ├── Data │ └── AppsLauncherJson.cs ├── Forms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── MenuViewForm.Designer.cs │ ├── MenuViewForm.cs │ ├── MenuViewForm.resx │ ├── OpenWithForm.Designer.cs │ ├── OpenWithForm.cs │ ├── OpenWithForm.resx │ ├── SettingsForm.Designer.cs │ ├── SettingsForm.cs │ └── SettingsForm.resx ├── GlobalSuppressions.cs ├── LangResources │ ├── de-DE.Designer.cs │ ├── de-DE.resx │ ├── en-US.Designer.cs │ └── en-US.resx ├── Language.cs ├── Libraries │ ├── FileTypeAssoc.cs │ ├── FileTypeAssocData.cs │ ├── LocalAppSettings.cs │ ├── Recovery.cs │ ├── SystemIntegration.cs │ └── _Settings.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── AppDelete.png │ ├── AppDesktop.png │ ├── AppRename.png │ ├── Application.png │ ├── AppsAdd.bak.png │ ├── AppsAdd.png │ ├── Folder.png │ ├── Interrogation.png │ ├── PaLogoClear.png │ ├── PaLogoSymbol.ico │ ├── PatternDiagonal.png │ ├── PatternHorizontal.png │ ├── Settings.png │ ├── ShieldExclamation.png │ ├── Terminal.png │ ├── Undo.png │ ├── User.png │ └── World.png ├── app.manifest └── packages.config ├── AppsLauncherUpdater ├── App.config ├── AppsSuiteUpdater.csproj ├── GlobalSuppressions.cs ├── LangResources │ ├── de-DE.Designer.cs │ ├── de-DE.resx │ ├── en-US.Designer.cs │ └── en-US.resx ├── Language.cs ├── Legacy │ └── Ini.cs ├── Libraries │ ├── ActionGuid.cs │ ├── CachePaths.cs │ ├── CorePaths.cs │ ├── Network.cs │ ├── Settings.cs │ └── UserAgents.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Changelog.png │ ├── PaLogoRedSymbol.ico │ └── PatternDiagonal.png ├── Windows │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx ├── app.manifest └── packages.config └── PortAble.Suite ├── ActionGuid.cs ├── App.config ├── AppData.cs ├── AppSettings.cs ├── AppSupplierHosts.cs ├── AppSupplierMirrors.cs ├── AppSupply.cs ├── AppTransferor.cs ├── Arguments.cs ├── CacheData.cs ├── CachePaths.cs ├── CorePaths.cs ├── CustomAppsSupplier.cs ├── LocalAppData.cs ├── Model ├── AJsonFile.cs ├── IAppData.cs ├── IObjectFile.cs └── IObjectFileEditor.cs ├── PortAble.Suite.csproj ├── Properties ├── AssemblyInfo.cs ├── LangStrings.Designer.cs └── LangStrings.resx ├── UserAgents.cs ├── app.manifest └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Port-Able-Suite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/Port-Able-Suite.sln -------------------------------------------------------------------------------- /Port-Able-Suite.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/Port-Able-Suite.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/_config.yml -------------------------------------------------------------------------------- /bin-template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/bin-template.zip -------------------------------------------------------------------------------- /src/AppsDownloader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/App.config -------------------------------------------------------------------------------- /src/AppsDownloader/AppsDownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/AppsDownloader.csproj -------------------------------------------------------------------------------- /src/AppsDownloader/Data/AppsDownloaderJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Data/AppsDownloaderJson.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/AppInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/AppInfoForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/AppInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/AppInfoForm.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/AppInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/AppInfoForm.resx -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/LangSelectionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/LangSelectionForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/LangSelectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/LangSelectionForm.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/LangSelectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/LangSelectionForm.resx -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/MainForm.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/MainForm.resx -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/SourceManagerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/SourceManagerForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/SourceManagerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/SourceManagerForm.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Forms/SourceManagerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Forms/SourceManagerForm.resx -------------------------------------------------------------------------------- /src/AppsDownloader/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Program.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/AppsDownloader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Properties/Resources.resx -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Bacterium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Bacterium.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Check.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/CheckAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/CheckAll.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/FishBones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/FishBones.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Folder.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/ImageSlash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/ImageSlash.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Info.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Install.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/InstallSymbol.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/InstallSymbol.ico -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/PaLogoGreenSymbol.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/PaLogoGreenSymbol.ico -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/PaLogoNegative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/PaLogoNegative.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/PatternDiagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/PatternDiagonal.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Settings.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Uncheck.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/Undo.png -------------------------------------------------------------------------------- /src/AppsDownloader/Resources/World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/Resources/World.png -------------------------------------------------------------------------------- /src/AppsDownloader/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/app.manifest -------------------------------------------------------------------------------- /src/AppsDownloader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsDownloader/packages.config -------------------------------------------------------------------------------- /src/AppsLauncher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/App.config -------------------------------------------------------------------------------- /src/AppsLauncher/AppsLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/AppsLauncher.csproj -------------------------------------------------------------------------------- /src/AppsLauncher/Data/AppsLauncherJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Data/AppsLauncherJson.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/AboutForm.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/AboutForm.resx -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/MenuViewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/MenuViewForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/MenuViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/MenuViewForm.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/MenuViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/MenuViewForm.resx -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/OpenWithForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/OpenWithForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/OpenWithForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/OpenWithForm.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/OpenWithForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/OpenWithForm.resx -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /src/AppsLauncher/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/AppsLauncher/LangResources/de-DE.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/LangResources/de-DE.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/LangResources/de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/LangResources/de-DE.resx -------------------------------------------------------------------------------- /src/AppsLauncher/LangResources/en-US.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/LangResources/en-US.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/LangResources/en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/LangResources/en-US.resx -------------------------------------------------------------------------------- /src/AppsLauncher/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Language.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Libraries/FileTypeAssoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Libraries/FileTypeAssoc.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Libraries/FileTypeAssocData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Libraries/FileTypeAssocData.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Libraries/LocalAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Libraries/LocalAppSettings.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Libraries/Recovery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Libraries/Recovery.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Libraries/SystemIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Libraries/SystemIntegration.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Libraries/_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Libraries/_Settings.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Program.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/AppDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/AppDelete.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/AppDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/AppDesktop.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/AppRename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/AppRename.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/Application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/Application.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/AppsAdd.bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/AppsAdd.bak.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/AppsAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/AppsAdd.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/Folder.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/Interrogation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/Interrogation.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/PaLogoClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/PaLogoClear.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/PaLogoSymbol.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/PaLogoSymbol.ico -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/PatternDiagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/PatternDiagonal.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/PatternHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/PatternHorizontal.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/Settings.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/ShieldExclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/ShieldExclamation.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/Terminal.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/Undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/Undo.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/User.png -------------------------------------------------------------------------------- /src/AppsLauncher/Resources/World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/Resources/World.png -------------------------------------------------------------------------------- /src/AppsLauncher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/app.manifest -------------------------------------------------------------------------------- /src/AppsLauncher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncher/packages.config -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/App.config -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/AppsSuiteUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/AppsSuiteUpdater.csproj -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/LangResources/de-DE.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/LangResources/de-DE.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/LangResources/de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/LangResources/de-DE.resx -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/LangResources/en-US.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/LangResources/en-US.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/LangResources/en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/LangResources/en-US.resx -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Language.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Legacy/Ini.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Legacy/Ini.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Libraries/ActionGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Libraries/ActionGuid.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Libraries/CachePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Libraries/CachePaths.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Libraries/CorePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Libraries/CorePaths.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Libraries/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Libraries/Network.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Libraries/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Libraries/Settings.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Libraries/UserAgents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Libraries/UserAgents.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Program.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Properties/Resources.resx -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Resources/Changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Resources/Changelog.png -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Resources/PaLogoRedSymbol.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Resources/PaLogoRedSymbol.ico -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Resources/PatternDiagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Resources/PatternDiagonal.png -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Windows/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Windows/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Windows/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Windows/MainForm.cs -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/Windows/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/Windows/MainForm.resx -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/app.manifest -------------------------------------------------------------------------------- /src/AppsLauncherUpdater/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/AppsLauncherUpdater/packages.config -------------------------------------------------------------------------------- /src/PortAble.Suite/ActionGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/ActionGuid.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/App.config -------------------------------------------------------------------------------- /src/PortAble.Suite/AppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/AppData.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/AppSettings.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/AppSupplierHosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/AppSupplierHosts.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/AppSupplierMirrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/AppSupplierMirrors.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/AppSupply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/AppSupply.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/AppTransferor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/AppTransferor.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Arguments.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/CacheData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/CacheData.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/CachePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/CachePaths.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/CorePaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/CorePaths.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/CustomAppsSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/CustomAppsSupplier.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/LocalAppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/LocalAppData.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Model/AJsonFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Model/AJsonFile.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Model/IAppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Model/IAppData.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Model/IObjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Model/IObjectFile.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Model/IObjectFileEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Model/IObjectFileEditor.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/PortAble.Suite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/PortAble.Suite.csproj -------------------------------------------------------------------------------- /src/PortAble.Suite/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Properties/LangStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Properties/LangStrings.Designer.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/Properties/LangStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/Properties/LangStrings.resx -------------------------------------------------------------------------------- /src/PortAble.Suite/UserAgents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/UserAgents.cs -------------------------------------------------------------------------------- /src/PortAble.Suite/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/app.manifest -------------------------------------------------------------------------------- /src/PortAble.Suite/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Port-Able/Port-Able-Suite/HEAD/src/PortAble.Suite/packages.config --------------------------------------------------------------------------------