├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── enhancement-request.md │ └── feature_request.md └── workflows │ ├── CI.yml │ ├── doc.yml │ └── upload-dmg.yml ├── .gitignore ├── .project ├── .travis.yml ├── Jenkinsfile ├── LICENSE ├── README.md ├── doc ├── commands-cmd-line.md ├── commands.md ├── contribute.md ├── create-images.md ├── css │ └── extra.css ├── images │ ├── about-command.png │ ├── basic-launch-command.png │ ├── delete-command.png │ ├── edit-script-button.png │ ├── global-commands.png │ ├── image-contextual-menu-commands.png │ ├── image-creation-filled.png │ ├── image-creation.png │ ├── image-description.png │ ├── image-name-not-valid.png │ ├── import-command.png │ ├── init-script-editor.png │ ├── initialization-script-dropbox.png │ ├── install-dmg.png │ ├── launch-command.png │ ├── launch-configuration-editor.png │ ├── launch-configuration-toolbar.png │ ├── launch-from-disk-command.png │ ├── new-command.png │ ├── pharo-launcher-launch-linux.png │ ├── pharo-launcher-main-window.png │ ├── pharo-launcher-settings-browser.png │ ├── pharo-launcher-unzip-linux.png │ ├── pharo-launcher.png │ ├── quit-command.png │ ├── refresh-command.png │ ├── settings-command.png │ ├── show-command.png │ ├── taskbar.png │ ├── template-categories.png │ ├── template-commands.png │ ├── vm-command.png │ ├── vm-presenter-private.png │ ├── vm-presenter.png │ ├── vm-private-toggle-command.png │ ├── warning-osx-gatekeeper.png │ ├── warning-osx-not-appstore.png │ ├── windows-installer-2-folder.png │ ├── windows-installer-3-finish.png │ ├── windows-installer.png │ └── windows-shorcut.png ├── index.md ├── installation.md ├── launch-configurations.md ├── manage-vms.md ├── settings.md └── templates.md ├── icons ├── PharoChanges.icns ├── PharoImage.icns ├── PharoSources.icns ├── README.txt ├── build-icns.sh ├── launcher-icon.svg │ ├── Canvas_1.svg │ ├── image1.tiff │ └── image2.tiff ├── pharo-launcher.ico └── pharo-launcher.png ├── linux └── pharo-launcher-ui ├── mac ├── Info.plist.template ├── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib ├── build-dmg-from-tar.sh ├── build-dmg.sh ├── entitlements.plist └── installer-background.png ├── mkdocs.yml ├── scripts ├── pharo-launcher.bat └── pharo-launcher.sh ├── signing ├── README.md └── pharo-windows-certificate.p12.enc ├── site ├── 404.html ├── commands │ └── index.html ├── create-images │ └── index.html ├── css │ ├── theme.css │ └── theme_extra.css ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ ├── about-command.png │ ├── basic-launch-command.png │ ├── delete-command.png │ ├── global-commands.png │ ├── image-contextual-menu-commands.png │ ├── import-command.png │ ├── install-dmg.png │ ├── launch-command.png │ ├── launch-configuration-editor.png │ ├── launch-configuration-toolbar.png │ ├── launch-from-disk-command.png │ ├── new-command.png │ ├── pharo-launcher-settings-browser.png │ ├── quit-command.png │ ├── refresh-command.png │ ├── settings-command.png │ ├── show-command.png │ ├── taskbar.png │ ├── template-commands.png │ ├── vm-command.png │ ├── vm-presenter.png │ ├── vm-private-toggle-command.png │ ├── warning-osx-gatekeeper.png │ └── warning-osx-not-appstore.png ├── img │ └── favicon.ico ├── index.html ├── installation │ └── index.html ├── js │ ├── jquery-2.1.1.min.js │ ├── modernizr-2.8.3.min.js │ └── theme.js ├── launch-configurations │ └── index.html ├── manage-vms │ └── index.html ├── search.html ├── search │ ├── lunr.js │ ├── main.js │ ├── search_index.json │ └── worker.js ├── settings │ └── index.html ├── sitemap.xml ├── sitemap.xml.gz └── templates │ └── index.html ├── sources.list ├── src ├── .properties ├── BaselineOfPharoLauncher │ ├── BaselineOfPharoLauncher.class.st │ └── package.st ├── PharoLauncher-100Compatibility │ ├── FTTableMorph.extension.st │ ├── FileLocator.extension.st │ ├── FileReference.extension.st │ ├── ScrollPane.extension.st │ ├── StringTest.extension.st │ └── package.st ├── PharoLauncher-90Compatibility │ ├── FTTableMorph.extension.st │ ├── SpMorphicModalWindowAdapter.extension.st │ ├── SpMorphicToolbarButtonAdapter.extension.st │ ├── SpToolbarToggleButtonMorphTest.class.st │ └── package.st ├── PharoLauncher-CLI-Tests │ ├── AttributeListPrintingTest.class.st │ ├── ConsoleInputRequestMock.class.st │ ├── ConsoleInputRequestTest.class.st │ ├── ConsoleListFormatterTest.class.st │ ├── ConsoleProgressBarTest.class.st │ ├── PhLCliCommandMock.class.st │ ├── PhLCliCommandTest.class.st │ ├── PhLImageBisectCliCommand.extension.st │ ├── PhLImageBisectCliCommandTest.class.st │ ├── PhLImageCliCommandTest.class.st │ ├── PhLImageCopyCliCommandTest.class.st │ ├── PhLImageCreateCliCommandTest.class.st │ ├── PhLImageCreateFromBuildCliCommandTest.class.st │ ├── PhLImageCreateFromPullRequestCliCommandTest.class.st │ ├── PhLImageCreateFromRemoteRepoCliCommandTest.class.st │ ├── PhLImageCreateFromSHACliCommandTest.class.st │ ├── PhLImageDeleteCliCommandTest.class.st │ ├── PhLImageInfoCliCommandTest.class.st │ ├── PhLImageLaunchCliCommandTest.class.st │ ├── PhLImageListCliCommandTest.class.st │ ├── PhLImageMock.class.st │ ├── PhLImagePackageCliCommandTest.class.st │ ├── PhLImageRecreateCliCommandTest.class.st │ ├── PhLImagesMockRepo.class.st │ ├── PhLLaunchConfigurationMock.class.st │ ├── PhLProcessCliCommandTest.class.st │ ├── PhLProcessKillCliCommandTest.class.st │ ├── PhLProcessListCliCommand.extension.st │ ├── PhLProcessListCliCommandTest.class.st │ ├── PhLProcessWrapperTest.extension.st │ ├── PhLTemplateCategoriesCliCommandTest.class.st │ ├── PhLTemplateInfoCliCommandTest.class.st │ ├── PhLTemplateListCliCommandTest.class.st │ ├── PhLTemplateMock.class.st │ ├── PhLTemplateUpdateCliCommandTest.class.st │ ├── PhLTemplatesCliCommandTest.class.st │ ├── PhLVMDeleteCliCommandTest.class.st │ ├── PhLVMInfoCliCommandTest.class.st │ ├── PhLVMListCliCommandTest.class.st │ ├── PhLVMUpdateCliCommandTest.class.st │ ├── PhLVirtualMachineMock.class.st │ ├── PhLVirtualMachinesMockRepo.class.st │ ├── PhLVmCliCommandTest.class.st │ ├── PharoLauncherCLIConfigurationTest.class.st │ ├── StringTest.extension.st │ ├── WriteStream.extension.st │ ├── ZnBufferedWriteStream.extension.st │ └── package.st ├── PharoLauncher-CLI │ ├── ClapContext.extension.st │ ├── ConsoleInputRequest.class.st │ ├── ConsoleListFormatter.class.st │ ├── ConsoleProgressBar.class.st │ ├── DateAndTime.extension.st │ ├── DiskStore.extension.st │ ├── MacOSPlatform.extension.st │ ├── ManifestPharoLauncherCLI.class.st │ ├── OSSUnixSubprocess.extension.st │ ├── OSWSWinProcess.extension.st │ ├── PhLAbstractTemplate.extension.st │ ├── PhLCacheTemplateGroup.extension.st │ ├── PhLCliCommand.class.st │ ├── PhLCliTemplateSourcesChecker.class.st │ ├── PhLImage.extension.st │ ├── PhLImageBisectCliCommand.class.st │ ├── PhLImageCliCommand.class.st │ ├── PhLImageCopyCliCommand.class.st │ ├── PhLImageCreateCliCommand.class.st │ ├── PhLImageCreateFromBuildCliCommand.class.st │ ├── PhLImageCreateFromPullRequestCliCommand.class.st │ ├── PhLImageCreateFromRemoteRepoCliCommand.class.st │ ├── PhLImageCreateFromSHACliCommand.class.st │ ├── PhLImageDeleteCliCommand.class.st │ ├── PhLImageInfoCliCommand.class.st │ ├── PhLImageLaunchCliCommand.class.st │ ├── PhLImageListCliCommand.class.st │ ├── PhLImagePackageCliCommand.class.st │ ├── PhLImageProcess.extension.st │ ├── PhLImageRecreateCliCommand.class.st │ ├── PhLInvalidConfiguration.class.st │ ├── PhLNotificationCenter.class.st │ ├── PhLObject.extension.st │ ├── PhLProcessCliCommand.class.st │ ├── PhLProcessCommandError.class.st │ ├── PhLProcessKillCliCommand.class.st │ ├── PhLProcessListCliCommand.class.st │ ├── PhLProcessListEntry.class.st │ ├── PhLProcessWrapper.extension.st │ ├── PhLTemplateCategoriesCliCommand.class.st │ ├── PhLTemplateCliCommand.class.st │ ├── PhLTemplateInfoCliCommand.class.st │ ├── PhLTemplateListCliCommand.class.st │ ├── PhLTemplateUpdateCliCommand.class.st │ ├── PhLVirtualMachine.extension.st │ ├── PhLVmCliCommand.class.st │ ├── PhLVmDeleteCliCommand.class.st │ ├── PhLVmInfoCliCommand.class.st │ ├── PhLVmListCliCommand.class.st │ ├── PhLVmUpdateCliCommand.class.st │ ├── PharoLauncherCLIConfiguration.class.st │ ├── PharoLauncherCLIModel.class.st │ ├── STCommandLineHandler.extension.st │ ├── String.extension.st │ ├── UnixPlatform.extension.st │ ├── VTermOutputDriver.extension.st │ └── package.st ├── PharoLauncher-Core │ ├── Dictionary.extension.st │ ├── FileLocator.extension.st │ ├── LGitLibrary.extension.st │ ├── MacOSResolver.extension.st │ ├── MacOSXPlatform.extension.st │ ├── MacOsPharoLauncherMenu.class.st │ ├── ManifestPharoLauncherCore.class.st │ ├── OSPlatform.extension.st │ ├── Object.extension.st │ ├── OmSessionStore.extension.st │ ├── PhLAboutCommand.class.st │ ├── PhLAbstractTemplate.class.st │ ├── PhLAbstractTemplateGroup.class.st │ ├── PhLArchitectureError.class.st │ ├── PhLArchitectureMismatchWarning.class.st │ ├── PhLCacheTemplateGroup.class.st │ ├── PhLCommandCancellation.class.st │ ├── PhLCommandError.class.st │ ├── PhLCompositeTemplateSources.class.st │ ├── PhLCopyImageCommand.class.st │ ├── PhLCopyLaunchCommand.class.st │ ├── PhLCopyPathname.class.st │ ├── PhLCorruptedTemplateError.class.st │ ├── PhLCreateImageFromTemplateCommand.class.st │ ├── PhLCreateTemplateFromImageCommand.class.st │ ├── PhLDeleteImageCommand.class.st │ ├── PhLDeleteVmCommand.class.st │ ├── PhLDirectoryBasedImageRepository.class.st │ ├── PhLDownloadError.class.st │ ├── PhLDownloadManager.class.st │ ├── PhLDownloadedTemplateGroup.class.st │ ├── PhLError.class.st │ ├── PhLExecutableNotFoundError.class.st │ ├── PhLFixedURLsTemplateGroup.class.st │ ├── PhLGeneralCommand.class.st │ ├── PhLHTTPListingTemplateGroup.class.st │ ├── PhLImage.class.st │ ├── PhLImageBisection.class.st │ ├── PhLImageBisectionError.class.st │ ├── PhLImageCommand.class.st │ ├── PhLImageDescriptionUpdater.class.st │ ├── PhLImageFinder.class.st │ ├── PhLImageProcess.class.st │ ├── PhLImageVersionFileNotFound.class.st │ ├── PhLImportImageCommand.class.st │ ├── PhLInspectCommand.class.st │ ├── PhLJenkins2Build.class.st │ ├── PhLJenkins2BuildGroup.class.st │ ├── PhLJenkins2Entity.class.st │ ├── PhLJenkins2Job.class.st │ ├── PhLJenkins2Run.class.st │ ├── PhLJenkins2Server.class.st │ ├── PhLJenkins2WithArtifactsEntity.class.st │ ├── PhLJenkinsArtifact.class.st │ ├── PhLLaunchConfiguration.class.st │ ├── PhLLaunchError.class.st │ ├── PhLLaunchImageCommand.class.st │ ├── PhLLaunchImageFromDiskCommand.class.st │ ├── PhLLaunchImageProcessConfigurator.class.st │ ├── PhLLaunchedImagesWatcher.class.st │ ├── PhLLocalTemplate.class.st │ ├── PhLMissingVirtualMachineError.class.st │ ├── PhLNameNotAvailableError.class.st │ ├── PhLNetworkSettings.class.st │ ├── PhLObject.class.st │ ├── PhLOpenLaunchConfigurationEditorCommand.class.st │ ├── PhLOpenNewImageWindowCommand.class.st │ ├── PhLOpenSettingsCommand.class.st │ ├── PhLOpenVmManagerCommand.class.st │ ├── PhLPharoTemplateSources.class.st │ ├── PhLProcessTimeOut.class.st │ ├── PhLProcessWrapper.class.st │ ├── PhLProcessWrapperCommandStringGenerator.class.st │ ├── PhLQuitCommand.class.st │ ├── PhLQuitOnLaunchValueChanged.class.st │ ├── PhLROCheckStartup.class.st │ ├── PhLRecreateImageCommand.class.st │ ├── PhLRefreshImageRepositoryCommand.class.st │ ├── PhLRefreshTemplateRepositoryCommand.class.st │ ├── PhLRelocateImageDirectoryCommand.class.st │ ├── PhLRemoteTemplate.class.st │ ├── PhLRemoveTemplateCommand.class.st │ ├── PhLRenameImageCommand.class.st │ ├── PhLRenameTemplateCommand.class.st │ ├── PhLRepository.class.st │ ├── PhLSettingBrowser.class.st │ ├── PhLSettingTree.class.st │ ├── PhLShowImageInFolderCommand.class.st │ ├── PhLShowVmInFolderCommand.class.st │ ├── PhLSourcesFileUpdateAvailable.class.st │ ├── PhLStartupManager.class.st │ ├── PhLTemplateCommand.class.st │ ├── PhLTemplateGroupRepository.class.st │ ├── PhLTemplateGroupsBuilder.class.st │ ├── PhLTemplateSource.class.st │ ├── PhLTemplateSources.class.st │ ├── PhLTemplateSourcesUpdateChecker.class.st │ ├── PhLTranslatedModeWarning.class.st │ ├── PhLUIConfirmation.class.st │ ├── PhLUIFileRequest.class.st │ ├── PhLUIInformation.class.st │ ├── PhLUIRequest.class.st │ ├── PhLUpdateVmCommand.class.st │ ├── PhLUserInteraction.class.st │ ├── PhLUserTemplateSources.class.st │ ├── PhLVirtualMachine.class.st │ ├── PhLVirtualMachineManager.class.st │ ├── PhLVirtualMachinesDataSource.class.st │ ├── PhLVmCommand.class.st │ ├── PhLVmProvider.class.st │ ├── PhLVmProviderUntilPharo80.class.st │ ├── PharoCommandLineHandler.extension.st │ ├── PlatformResolver.extension.st │ ├── SDLOSXPlatform.extension.st │ ├── String.extension.st │ ├── UnixPlatform.extension.st │ ├── UnixResolver.extension.st │ ├── VirtualMachine.extension.st │ ├── WinPlatform.extension.st │ ├── WindowsResolver.extension.st │ ├── ZnUrl.extension.st │ └── package.st ├── PharoLauncher-GToolkit │ ├── PhLGToolkitImage.class.st │ ├── PhLGToolkitVirtualMachine.class.st │ └── package.st ├── PharoLauncher-Pharo9ToRemove-FileLocator │ ├── FileLocator.extension.st │ ├── FileLocatorTest.extension.st │ ├── FileReference.extension.st │ ├── FileReferenceTest.extension.st │ ├── Path.extension.st │ ├── String.extension.st │ ├── StringTest.extension.st │ └── package.st ├── PharoLauncher-Spec2-Gtk │ ├── PhLGtkConfiguration.class.st │ ├── PharoLauncherApplication.extension.st │ └── package.st ├── PharoLauncher-Spec2 │ ├── Duration.extension.st │ ├── OSWorldRenderer.extension.st │ ├── PhLAboutPresenter.class.st │ ├── PhLAbstractDateDisplayStrategy.class.st │ ├── PhLAppearanceSettings.class.st │ ├── PhLDateAndTimeDisplayStrategy.class.st │ ├── PhLDeploymentScript.class.st │ ├── PhLErrorDialogPresenter.class.st │ ├── PhLImageCreationPresenter.class.st │ ├── PhLImageDetailPresenter.class.st │ ├── PhLImagesPresenter.class.st │ ├── PhLLaunchConfigurationPresenter.class.st │ ├── PhLNullImage.class.st │ ├── PhLNullLaunchConfiguration.class.st │ ├── PhLPharoVersionChooserPresenter.class.st │ ├── PhLScriptPresenter.class.st │ ├── PhLTemplatesPresenter.class.st │ ├── PhLTimeUntilNowStrategy.class.st │ ├── PhLVMPresenter.class.st │ ├── PharoLauncherApplication.class.st │ ├── PharoLauncherConfiguration.class.st │ ├── PhlRetryPresenter.class.st │ ├── SDLOSXPlatform.extension.st │ ├── SettingDeclaration.extension.st │ ├── SettingTreeBuilder.extension.st │ ├── SpJobListPresenter.extension.st │ ├── SpPresenter.extension.st │ ├── SpRequestDialog.extension.st │ ├── SpWorldPresenter.extension.st │ ├── TPhLInteractionTrait.trait.st │ ├── WorldState.extension.st │ ├── ZipArchive.extension.st │ └── package.st ├── PharoLauncher-Squeak │ ├── PhLSqueakImage.class.st │ ├── PhLSqueakVirtualMachine.class.st │ └── package.st ├── PharoLauncher-Tests-Commands │ ├── PhLAboutCommandTest.class.st │ ├── PhLCopyImageCommandTest.class.st │ ├── PhLCopyLaunchCommandTest.class.st │ ├── PhLCopyPathnameCommandTest.class.st │ ├── PhLCreateImageFromTemplateCommandTest.class.st │ ├── PhLCreateTemplateFromImageCommandTest.class.st │ ├── PhLDeleteImageCommandTest.class.st │ ├── PhLDeleteVmCommandTest.class.st │ ├── PhLImportImageCommandTest.class.st │ ├── PhLLaunchImageCommandTest.class.st │ ├── PhLLaunchImageFromDiskCommandTest.class.st │ ├── PhLOpenNewImageWindowTest.class.st │ ├── PhLOpenSettingsCommandTest.class.st │ ├── PhLRecreateImageCommandTest.class.st │ ├── PhLRefreshImagerepositoryCommandTest.class.st │ ├── PhLRemoveTemplateCommandTest.class.st │ ├── PhLRenameImageCommandTest.class.st │ ├── PhLRenameTemplateCommandTest.class.st │ ├── PhLShowImageInFolderCommandTest.class.st │ ├── PhLTemplateTestRepository.class.st │ ├── PhLTestConfirmation.class.st │ ├── PhLTestImageProvider.class.st │ ├── PhLTestImageRepository.class.st │ ├── PhLTestImagesPresenter.class.st │ ├── PhLTestLaunchConfiguration.class.st │ ├── PhLTestRequest.class.st │ ├── PhLTestTemplatesPresenter.class.st │ ├── PhLTestVirtualMachineManager.class.st │ ├── PhLTestVmPresenter.class.st │ ├── PhLUpdateVmCommandTest.class.st │ ├── TPhLVirtualMachineTestUtil.trait.st │ └── package.st ├── PharoLauncher-Tests-Core │ ├── ManifestPharoLauncherTests.class.st │ ├── OSPlatform.extension.st │ ├── PhLAbstractTemplateTest.class.st │ ├── PhLDirectoryBasedImageRepositoryTest.class.st │ ├── PhLImage.extension.st │ ├── PhLImageBisectionTest.class.st │ ├── PhLImageDescriptionUpdaterMock.class.st │ ├── PhLImageDescriptionUpdaterTest.class.st │ ├── PhLImageProcessTest.class.st │ ├── PhLImageTest.class.st │ ├── PhLLaunchConfigurationTest.class.st │ ├── PhLLocalTemplateTest.class.st │ ├── PhLPharoTemplateSources.extension.st │ ├── PhLPluggableTemplateGroup.class.st │ ├── PhLRemoteTemplateTest.class.st │ ├── PhLSettingsTest.class.st │ ├── PhLStringTest.class.st │ ├── PhLTemplateGroupRepositoryTest.class.st │ ├── PhLTemplateGroupsBuilderTest.class.st │ ├── PhLTemplateSourcesTest.class.st │ └── package.st ├── PharoLauncher-Tests-Download │ ├── PhLDownloadManagerMock.class.st │ ├── PhLImageFinderStub.class.st │ ├── PhLImageFinderTest.class.st │ ├── PhLJenkins2BuildTest.class.st │ ├── PhLJenkins2EntityTest.class.st │ ├── PhLJenkins2JobTest.class.st │ ├── PhLJenkins2RunTest.class.st │ ├── PhLJenkins2ServerTest.class.st │ ├── PhLVirtualMachineManagerTest.class.st │ ├── PhLVmProviderTest.class.st │ ├── PhLVmProviderUntilPharo80Test.class.st │ └── package.st ├── PharoLauncher-Tests-Functional │ ├── PhLAbstractTemplateGroupTest.class.st │ ├── PhLCreateTemplateFromImageTest.class.st │ ├── PhLDownloadManagerTest.class.st │ ├── PhLHTTPListingTemplateGroupTest.class.st │ ├── PhLLaunchImageTest.class.st │ ├── PhLLaunchedImagesWatcherTest.class.st │ ├── PhLOsXCatalinaTestImage.class.st │ ├── PhLProcessWrapperTest.class.st │ ├── PhLUnixSubprocessTest.class.st │ ├── PhLVirtualMachineManagerFunctionalTest.class.st │ ├── PhLVirtualMachineManagerTestResource.class.st │ ├── PhLVirtualMachineTest.class.st │ ├── TestMacOSXCatalinaPlatform.class.st │ ├── ZipArchiveMember.extension.st │ └── package.st └── PharoLauncher-Tests-SpecUI │ ├── PhLImageCreationPresenter.extension.st │ ├── PhLImageCreationPresenterTest.class.st │ ├── PhLImagesPresenterTest.class.st │ ├── PhLLaunchConfigurationPresenter.extension.st │ ├── PhLLaunchConfigurationPresenterTest.class.st │ ├── PhLScriptPresenter.extension.st │ ├── PhLScriptPresenterTest.class.st │ ├── PhLTemplatesPresenterTest.class.st │ ├── PhLTestApplication.class.st │ ├── PhLTestTemplatesPresenter.extension.st │ └── package.st └── test ├── PharoLauncherCommonFunctions.sh ├── README.txt ├── meta-inf.ston ├── phl-test-config.template ├── sources-for-tests.list └── testImageCommands.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/upload-dmg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.github/workflows/upload-dmg.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | { 2 | 'srcDirectory' : 'src' 3 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/.travis.yml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/README.md -------------------------------------------------------------------------------- /doc/commands-cmd-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/commands-cmd-line.md -------------------------------------------------------------------------------- /doc/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/commands.md -------------------------------------------------------------------------------- /doc/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/contribute.md -------------------------------------------------------------------------------- /doc/create-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/create-images.md -------------------------------------------------------------------------------- /doc/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/css/extra.css -------------------------------------------------------------------------------- /doc/images/about-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/about-command.png -------------------------------------------------------------------------------- /doc/images/basic-launch-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/basic-launch-command.png -------------------------------------------------------------------------------- /doc/images/delete-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/delete-command.png -------------------------------------------------------------------------------- /doc/images/edit-script-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/edit-script-button.png -------------------------------------------------------------------------------- /doc/images/global-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/global-commands.png -------------------------------------------------------------------------------- /doc/images/image-contextual-menu-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/image-contextual-menu-commands.png -------------------------------------------------------------------------------- /doc/images/image-creation-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/image-creation-filled.png -------------------------------------------------------------------------------- /doc/images/image-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/image-creation.png -------------------------------------------------------------------------------- /doc/images/image-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/image-description.png -------------------------------------------------------------------------------- /doc/images/image-name-not-valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/image-name-not-valid.png -------------------------------------------------------------------------------- /doc/images/import-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/import-command.png -------------------------------------------------------------------------------- /doc/images/init-script-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/init-script-editor.png -------------------------------------------------------------------------------- /doc/images/initialization-script-dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/initialization-script-dropbox.png -------------------------------------------------------------------------------- /doc/images/install-dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/install-dmg.png -------------------------------------------------------------------------------- /doc/images/launch-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/launch-command.png -------------------------------------------------------------------------------- /doc/images/launch-configuration-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/launch-configuration-editor.png -------------------------------------------------------------------------------- /doc/images/launch-configuration-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/launch-configuration-toolbar.png -------------------------------------------------------------------------------- /doc/images/launch-from-disk-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/launch-from-disk-command.png -------------------------------------------------------------------------------- /doc/images/new-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/new-command.png -------------------------------------------------------------------------------- /doc/images/pharo-launcher-launch-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/pharo-launcher-launch-linux.png -------------------------------------------------------------------------------- /doc/images/pharo-launcher-main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/pharo-launcher-main-window.png -------------------------------------------------------------------------------- /doc/images/pharo-launcher-settings-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/pharo-launcher-settings-browser.png -------------------------------------------------------------------------------- /doc/images/pharo-launcher-unzip-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/pharo-launcher-unzip-linux.png -------------------------------------------------------------------------------- /doc/images/pharo-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/pharo-launcher.png -------------------------------------------------------------------------------- /doc/images/quit-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/quit-command.png -------------------------------------------------------------------------------- /doc/images/refresh-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/refresh-command.png -------------------------------------------------------------------------------- /doc/images/settings-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/settings-command.png -------------------------------------------------------------------------------- /doc/images/show-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/show-command.png -------------------------------------------------------------------------------- /doc/images/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/taskbar.png -------------------------------------------------------------------------------- /doc/images/template-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/template-categories.png -------------------------------------------------------------------------------- /doc/images/template-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/template-commands.png -------------------------------------------------------------------------------- /doc/images/vm-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/vm-command.png -------------------------------------------------------------------------------- /doc/images/vm-presenter-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/vm-presenter-private.png -------------------------------------------------------------------------------- /doc/images/vm-presenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/vm-presenter.png -------------------------------------------------------------------------------- /doc/images/vm-private-toggle-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/vm-private-toggle-command.png -------------------------------------------------------------------------------- /doc/images/warning-osx-gatekeeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/warning-osx-gatekeeper.png -------------------------------------------------------------------------------- /doc/images/warning-osx-not-appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/warning-osx-not-appstore.png -------------------------------------------------------------------------------- /doc/images/windows-installer-2-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/windows-installer-2-folder.png -------------------------------------------------------------------------------- /doc/images/windows-installer-3-finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/windows-installer-3-finish.png -------------------------------------------------------------------------------- /doc/images/windows-installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/windows-installer.png -------------------------------------------------------------------------------- /doc/images/windows-shorcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/images/windows-shorcut.png -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/launch-configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/launch-configurations.md -------------------------------------------------------------------------------- /doc/manage-vms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/manage-vms.md -------------------------------------------------------------------------------- /doc/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/settings.md -------------------------------------------------------------------------------- /doc/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/doc/templates.md -------------------------------------------------------------------------------- /icons/PharoChanges.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/PharoChanges.icns -------------------------------------------------------------------------------- /icons/PharoImage.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/PharoImage.icns -------------------------------------------------------------------------------- /icons/PharoSources.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/PharoSources.icns -------------------------------------------------------------------------------- /icons/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/README.txt -------------------------------------------------------------------------------- /icons/build-icns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/build-icns.sh -------------------------------------------------------------------------------- /icons/launcher-icon.svg/Canvas_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/launcher-icon.svg/Canvas_1.svg -------------------------------------------------------------------------------- /icons/launcher-icon.svg/image1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/launcher-icon.svg/image1.tiff -------------------------------------------------------------------------------- /icons/launcher-icon.svg/image2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/launcher-icon.svg/image2.tiff -------------------------------------------------------------------------------- /icons/pharo-launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/pharo-launcher.ico -------------------------------------------------------------------------------- /icons/pharo-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/icons/pharo-launcher.png -------------------------------------------------------------------------------- /linux/pharo-launcher-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/linux/pharo-launcher-ui -------------------------------------------------------------------------------- /mac/Info.plist.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/Info.plist.template -------------------------------------------------------------------------------- /mac/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /mac/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /mac/build-dmg-from-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/build-dmg-from-tar.sh -------------------------------------------------------------------------------- /mac/build-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/build-dmg.sh -------------------------------------------------------------------------------- /mac/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/entitlements.plist -------------------------------------------------------------------------------- /mac/installer-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mac/installer-background.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /scripts/pharo-launcher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/scripts/pharo-launcher.bat -------------------------------------------------------------------------------- /scripts/pharo-launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/scripts/pharo-launcher.sh -------------------------------------------------------------------------------- /signing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/signing/README.md -------------------------------------------------------------------------------- /signing/pharo-windows-certificate.p12.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/signing/pharo-windows-certificate.p12.enc -------------------------------------------------------------------------------- /site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/404.html -------------------------------------------------------------------------------- /site/commands/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/commands/index.html -------------------------------------------------------------------------------- /site/create-images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/create-images/index.html -------------------------------------------------------------------------------- /site/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/css/theme.css -------------------------------------------------------------------------------- /site/css/theme_extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/css/theme_extra.css -------------------------------------------------------------------------------- /site/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /site/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /site/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /site/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /site/images/about-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/about-command.png -------------------------------------------------------------------------------- /site/images/basic-launch-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/basic-launch-command.png -------------------------------------------------------------------------------- /site/images/delete-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/delete-command.png -------------------------------------------------------------------------------- /site/images/global-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/global-commands.png -------------------------------------------------------------------------------- /site/images/image-contextual-menu-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/image-contextual-menu-commands.png -------------------------------------------------------------------------------- /site/images/import-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/import-command.png -------------------------------------------------------------------------------- /site/images/install-dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/install-dmg.png -------------------------------------------------------------------------------- /site/images/launch-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/launch-command.png -------------------------------------------------------------------------------- /site/images/launch-configuration-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/launch-configuration-editor.png -------------------------------------------------------------------------------- /site/images/launch-configuration-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/launch-configuration-toolbar.png -------------------------------------------------------------------------------- /site/images/launch-from-disk-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/launch-from-disk-command.png -------------------------------------------------------------------------------- /site/images/new-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/new-command.png -------------------------------------------------------------------------------- /site/images/pharo-launcher-settings-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/pharo-launcher-settings-browser.png -------------------------------------------------------------------------------- /site/images/quit-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/quit-command.png -------------------------------------------------------------------------------- /site/images/refresh-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/refresh-command.png -------------------------------------------------------------------------------- /site/images/settings-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/settings-command.png -------------------------------------------------------------------------------- /site/images/show-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/show-command.png -------------------------------------------------------------------------------- /site/images/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/taskbar.png -------------------------------------------------------------------------------- /site/images/template-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/template-commands.png -------------------------------------------------------------------------------- /site/images/vm-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/vm-command.png -------------------------------------------------------------------------------- /site/images/vm-presenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/vm-presenter.png -------------------------------------------------------------------------------- /site/images/vm-private-toggle-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/vm-private-toggle-command.png -------------------------------------------------------------------------------- /site/images/warning-osx-gatekeeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/warning-osx-gatekeeper.png -------------------------------------------------------------------------------- /site/images/warning-osx-not-appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/images/warning-osx-not-appstore.png -------------------------------------------------------------------------------- /site/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/img/favicon.ico -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/index.html -------------------------------------------------------------------------------- /site/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/installation/index.html -------------------------------------------------------------------------------- /site/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /site/js/modernizr-2.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/js/modernizr-2.8.3.min.js -------------------------------------------------------------------------------- /site/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/js/theme.js -------------------------------------------------------------------------------- /site/launch-configurations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/launch-configurations/index.html -------------------------------------------------------------------------------- /site/manage-vms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/manage-vms/index.html -------------------------------------------------------------------------------- /site/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/search.html -------------------------------------------------------------------------------- /site/search/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/search/lunr.js -------------------------------------------------------------------------------- /site/search/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/search/main.js -------------------------------------------------------------------------------- /site/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/search/search_index.json -------------------------------------------------------------------------------- /site/search/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/search/worker.js -------------------------------------------------------------------------------- /site/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/settings/index.html -------------------------------------------------------------------------------- /site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/sitemap.xml -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/sitemap.xml.gz -------------------------------------------------------------------------------- /site/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/site/templates/index.html -------------------------------------------------------------------------------- /sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/sources.list -------------------------------------------------------------------------------- /src/.properties: -------------------------------------------------------------------------------- 1 | { 2 | #format : #tonel 3 | } -------------------------------------------------------------------------------- /src/BaselineOfPharoLauncher/BaselineOfPharoLauncher.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/BaselineOfPharoLauncher/BaselineOfPharoLauncher.class.st -------------------------------------------------------------------------------- /src/BaselineOfPharoLauncher/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'BaselineOfPharoLauncher' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-100Compatibility/FTTableMorph.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-100Compatibility/FTTableMorph.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-100Compatibility/FileLocator.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-100Compatibility/FileLocator.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-100Compatibility/FileReference.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-100Compatibility/FileReference.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-100Compatibility/ScrollPane.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-100Compatibility/ScrollPane.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-100Compatibility/StringTest.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-100Compatibility/StringTest.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-100Compatibility/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-100Compatibility' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-90Compatibility/FTTableMorph.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-90Compatibility/FTTableMorph.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-90Compatibility/SpMorphicModalWindowAdapter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-90Compatibility/SpMorphicModalWindowAdapter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-90Compatibility/SpMorphicToolbarButtonAdapter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-90Compatibility/SpMorphicToolbarButtonAdapter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-90Compatibility/SpToolbarToggleButtonMorphTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-90Compatibility/SpToolbarToggleButtonMorphTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-90Compatibility/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-90Compatibility' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/AttributeListPrintingTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/AttributeListPrintingTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/ConsoleInputRequestMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/ConsoleInputRequestMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/ConsoleInputRequestTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/ConsoleInputRequestTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/ConsoleListFormatterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/ConsoleListFormatterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/ConsoleProgressBarTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/ConsoleProgressBarTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLCliCommandMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLCliCommandMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageBisectCliCommand.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageBisectCliCommand.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageBisectCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageBisectCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCopyCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCopyCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCreateCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCreateCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCreateFromBuildCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCreateFromBuildCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCreateFromPullRequestCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCreateFromPullRequestCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCreateFromRemoteRepoCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCreateFromRemoteRepoCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageCreateFromSHACliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageCreateFromSHACliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageDeleteCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageDeleteCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageInfoCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageInfoCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageLaunchCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageLaunchCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageListCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageListCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImagePackageCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImagePackageCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImageRecreateCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImageRecreateCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLImagesMockRepo.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLImagesMockRepo.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLLaunchConfigurationMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLLaunchConfigurationMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLProcessCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLProcessCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLProcessKillCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLProcessKillCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLProcessListCliCommand.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLProcessListCliCommand.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLProcessListCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLProcessListCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLProcessWrapperTest.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLProcessWrapperTest.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLTemplateCategoriesCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLTemplateCategoriesCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLTemplateInfoCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLTemplateInfoCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLTemplateListCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLTemplateListCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLTemplateMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLTemplateMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLTemplateUpdateCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLTemplateUpdateCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLTemplatesCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLTemplatesCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVMDeleteCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVMDeleteCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVMInfoCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVMInfoCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVMListCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVMListCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVMUpdateCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVMUpdateCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVirtualMachineMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVirtualMachineMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVirtualMachinesMockRepo.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVirtualMachinesMockRepo.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PhLVmCliCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PhLVmCliCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/PharoLauncherCLIConfigurationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/PharoLauncherCLIConfigurationTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/StringTest.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/StringTest.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/WriteStream.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/WriteStream.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/ZnBufferedWriteStream.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI-Tests/ZnBufferedWriteStream.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI-Tests/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-CLI-Tests' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/ClapContext.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/ClapContext.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/ConsoleInputRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/ConsoleInputRequest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/ConsoleListFormatter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/ConsoleListFormatter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/ConsoleProgressBar.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/ConsoleProgressBar.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/DateAndTime.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/DateAndTime.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/DiskStore.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/DiskStore.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/MacOSPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/MacOSPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/ManifestPharoLauncherCLI.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/ManifestPharoLauncherCLI.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/OSSUnixSubprocess.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/OSSUnixSubprocess.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/OSWSWinProcess.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/OSWSWinProcess.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLAbstractTemplate.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLAbstractTemplate.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLCacheTemplateGroup.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLCacheTemplateGroup.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLCliTemplateSourcesChecker.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLCliTemplateSourcesChecker.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImage.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImage.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageBisectCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageBisectCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCopyCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCopyCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCreateCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCreateCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCreateFromBuildCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCreateFromBuildCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCreateFromPullRequestCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCreateFromPullRequestCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCreateFromRemoteRepoCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCreateFromRemoteRepoCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageCreateFromSHACliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageCreateFromSHACliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageDeleteCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageDeleteCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageInfoCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageInfoCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageLaunchCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageLaunchCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageListCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageListCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImagePackageCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImagePackageCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageProcess.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageProcess.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLImageRecreateCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLImageRecreateCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLInvalidConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLInvalidConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLNotificationCenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLNotificationCenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLObject.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLObject.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLProcessCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLProcessCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLProcessCommandError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLProcessCommandError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLProcessKillCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLProcessKillCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLProcessListCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLProcessListCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLProcessListEntry.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLProcessListEntry.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLProcessWrapper.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLProcessWrapper.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLTemplateCategoriesCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLTemplateCategoriesCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLTemplateCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLTemplateCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLTemplateInfoCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLTemplateInfoCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLTemplateListCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLTemplateListCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLTemplateUpdateCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLTemplateUpdateCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLVirtualMachine.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLVirtualMachine.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLVmCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLVmCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLVmDeleteCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLVmDeleteCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLVmInfoCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLVmInfoCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLVmListCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLVmListCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PhLVmUpdateCliCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PhLVmUpdateCliCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PharoLauncherCLIConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PharoLauncherCLIConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/PharoLauncherCLIModel.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/PharoLauncherCLIModel.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/STCommandLineHandler.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/STCommandLineHandler.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/String.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/String.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/UnixPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/UnixPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/VTermOutputDriver.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-CLI/VTermOutputDriver.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-CLI/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-CLI' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Core/Dictionary.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/Dictionary.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/FileLocator.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/FileLocator.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/LGitLibrary.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/LGitLibrary.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/MacOSResolver.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/MacOSResolver.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/MacOSXPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/MacOSXPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/MacOsPharoLauncherMenu.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/MacOsPharoLauncherMenu.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/ManifestPharoLauncherCore.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/ManifestPharoLauncherCore.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/OSPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/OSPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/Object.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/Object.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/OmSessionStore.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/OmSessionStore.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLAboutCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLAboutCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLAbstractTemplate.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLAbstractTemplate.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLAbstractTemplateGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLAbstractTemplateGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLArchitectureError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLArchitectureError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLArchitectureMismatchWarning.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLArchitectureMismatchWarning.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCacheTemplateGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCacheTemplateGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCommandCancellation.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCommandCancellation.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCommandError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCommandError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCompositeTemplateSources.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCompositeTemplateSources.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCopyImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCopyImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCopyLaunchCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCopyLaunchCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCopyPathname.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCopyPathname.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCorruptedTemplateError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCorruptedTemplateError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCreateImageFromTemplateCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCreateImageFromTemplateCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLCreateTemplateFromImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLCreateTemplateFromImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLDeleteImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLDeleteImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLDeleteVmCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLDeleteVmCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLDirectoryBasedImageRepository.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLDirectoryBasedImageRepository.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLDownloadError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLDownloadError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLDownloadManager.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLDownloadManager.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLDownloadedTemplateGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLDownloadedTemplateGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLExecutableNotFoundError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLExecutableNotFoundError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLFixedURLsTemplateGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLFixedURLsTemplateGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLGeneralCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLGeneralCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLHTTPListingTemplateGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLHTTPListingTemplateGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImage.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImage.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageBisection.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageBisection.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageBisectionError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageBisectionError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageDescriptionUpdater.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageDescriptionUpdater.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageFinder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageFinder.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageProcess.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageProcess.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImageVersionFileNotFound.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImageVersionFileNotFound.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLImportImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLImportImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLInspectCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLInspectCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2Build.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2Build.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2BuildGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2BuildGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2Entity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2Entity.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2Job.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2Job.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2Run.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2Run.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2Server.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2Server.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkins2WithArtifactsEntity.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkins2WithArtifactsEntity.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLJenkinsArtifact.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLJenkinsArtifact.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLaunchConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLaunchConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLaunchError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLaunchError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLaunchImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLaunchImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLaunchImageFromDiskCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLaunchImageFromDiskCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLaunchImageProcessConfigurator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLaunchImageProcessConfigurator.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLaunchedImagesWatcher.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLaunchedImagesWatcher.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLLocalTemplate.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLLocalTemplate.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLMissingVirtualMachineError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLMissingVirtualMachineError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLNameNotAvailableError.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLNameNotAvailableError.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLNetworkSettings.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLNetworkSettings.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLObject.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLObject.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLOpenLaunchConfigurationEditorCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLOpenLaunchConfigurationEditorCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLOpenNewImageWindowCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLOpenNewImageWindowCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLOpenSettingsCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLOpenSettingsCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLOpenVmManagerCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLOpenVmManagerCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLPharoTemplateSources.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLPharoTemplateSources.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLProcessTimeOut.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLProcessTimeOut.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLProcessWrapper.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLProcessWrapper.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLProcessWrapperCommandStringGenerator.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLProcessWrapperCommandStringGenerator.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLQuitCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLQuitCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLQuitOnLaunchValueChanged.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLQuitOnLaunchValueChanged.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLROCheckStartup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLROCheckStartup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRecreateImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRecreateImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRefreshImageRepositoryCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRefreshImageRepositoryCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRefreshTemplateRepositoryCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRefreshTemplateRepositoryCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRelocateImageDirectoryCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRelocateImageDirectoryCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRemoteTemplate.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRemoteTemplate.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRemoveTemplateCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRemoveTemplateCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRenameImageCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRenameImageCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRenameTemplateCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRenameTemplateCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLRepository.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLRepository.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLSettingBrowser.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLSettingBrowser.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLSettingTree.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLSettingTree.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLShowImageInFolderCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLShowImageInFolderCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLShowVmInFolderCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLShowVmInFolderCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLSourcesFileUpdateAvailable.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLSourcesFileUpdateAvailable.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLStartupManager.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLStartupManager.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTemplateCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTemplateCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTemplateGroupRepository.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTemplateGroupRepository.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTemplateGroupsBuilder.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTemplateGroupsBuilder.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTemplateSource.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTemplateSource.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTemplateSources.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTemplateSources.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTemplateSourcesUpdateChecker.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTemplateSourcesUpdateChecker.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLTranslatedModeWarning.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLTranslatedModeWarning.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUIConfirmation.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUIConfirmation.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUIFileRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUIFileRequest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUIInformation.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUIInformation.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUIRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUIRequest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUpdateVmCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUpdateVmCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUserInteraction.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUserInteraction.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLUserTemplateSources.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLUserTemplateSources.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLVirtualMachine.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLVirtualMachine.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLVirtualMachineManager.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLVirtualMachineManager.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLVirtualMachinesDataSource.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLVirtualMachinesDataSource.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLVmCommand.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLVmCommand.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLVmProvider.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLVmProvider.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PhLVmProviderUntilPharo80.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PhLVmProviderUntilPharo80.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PharoCommandLineHandler.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PharoCommandLineHandler.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/PlatformResolver.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/PlatformResolver.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/SDLOSXPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/SDLOSXPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/String.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/String.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/UnixPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/UnixPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/UnixResolver.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/UnixResolver.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/VirtualMachine.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/VirtualMachine.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/WinPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/WinPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/WindowsResolver.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/WindowsResolver.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/ZnUrl.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Core/ZnUrl.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Core/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Core' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-GToolkit/PhLGToolkitImage.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-GToolkit/PhLGToolkitImage.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-GToolkit/PhLGToolkitVirtualMachine.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-GToolkit/PhLGToolkitVirtualMachine.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-GToolkit/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-GToolkit' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/FileLocator.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/FileLocator.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/FileLocatorTest.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/FileLocatorTest.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/FileReference.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/FileReference.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/FileReferenceTest.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/FileReferenceTest.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/Path.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/Path.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/String.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/String.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/StringTest.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/StringTest.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Pharo9ToRemove-FileLocator/package.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Pharo9ToRemove-FileLocator/package.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2-Gtk/PhLGtkConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2-Gtk/PhLGtkConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2-Gtk/PharoLauncherApplication.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2-Gtk/PharoLauncherApplication.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2-Gtk/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Spec2-Gtk' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/Duration.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/Duration.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/OSWorldRenderer.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/OSWorldRenderer.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLAboutPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLAboutPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLAbstractDateDisplayStrategy.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLAbstractDateDisplayStrategy.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLAppearanceSettings.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLAppearanceSettings.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLDateAndTimeDisplayStrategy.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLDateAndTimeDisplayStrategy.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLDeploymentScript.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLDeploymentScript.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLErrorDialogPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLErrorDialogPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLImageCreationPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLImageCreationPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLImageDetailPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLImageDetailPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLImagesPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLImagesPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLLaunchConfigurationPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLLaunchConfigurationPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLNullImage.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLNullImage.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLNullLaunchConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLNullLaunchConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLPharoVersionChooserPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLPharoVersionChooserPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLScriptPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLScriptPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLTemplatesPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLTemplatesPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLTimeUntilNowStrategy.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLTimeUntilNowStrategy.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhLVMPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhLVMPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PharoLauncherApplication.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PharoLauncherApplication.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PharoLauncherConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PharoLauncherConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/PhlRetryPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/PhlRetryPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SDLOSXPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SDLOSXPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SettingDeclaration.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SettingDeclaration.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SettingTreeBuilder.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SettingTreeBuilder.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SpJobListPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SpJobListPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SpPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SpPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SpRequestDialog.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SpRequestDialog.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/SpWorldPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/SpWorldPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/TPhLInteractionTrait.trait.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/TPhLInteractionTrait.trait.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/WorldState.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/WorldState.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/ZipArchive.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Spec2/ZipArchive.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Spec2/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Spec2' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Squeak/PhLSqueakImage.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Squeak/PhLSqueakImage.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Squeak/PhLSqueakVirtualMachine.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Squeak/PhLSqueakVirtualMachine.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Squeak/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Squeak' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLAboutCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLAboutCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLCopyImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLCopyImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLCopyLaunchCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLCopyLaunchCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLCopyPathnameCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLCopyPathnameCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLCreateImageFromTemplateCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLCreateImageFromTemplateCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLCreateTemplateFromImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLCreateTemplateFromImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLDeleteImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLDeleteImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLDeleteVmCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLDeleteVmCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLImportImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLImportImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLLaunchImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLLaunchImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLLaunchImageFromDiskCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLLaunchImageFromDiskCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLOpenNewImageWindowTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLOpenNewImageWindowTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLOpenSettingsCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLOpenSettingsCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLRecreateImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLRecreateImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLRefreshImagerepositoryCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLRefreshImagerepositoryCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLRemoveTemplateCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLRemoveTemplateCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLRenameImageCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLRenameImageCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLRenameTemplateCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLRenameTemplateCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLShowImageInFolderCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLShowImageInFolderCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTemplateTestRepository.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTemplateTestRepository.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestConfirmation.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestConfirmation.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestImageProvider.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestImageProvider.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestImageRepository.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestImageRepository.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestImagesPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestImagesPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestLaunchConfiguration.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestLaunchConfiguration.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestRequest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestRequest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestTemplatesPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestTemplatesPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestVirtualMachineManager.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestVirtualMachineManager.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLTestVmPresenter.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLTestVmPresenter.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/PhLUpdateVmCommandTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/PhLUpdateVmCommandTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/TPhLVirtualMachineTestUtil.trait.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Commands/TPhLVirtualMachineTestUtil.trait.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Commands/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Tests-Commands' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/ManifestPharoLauncherTests.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/ManifestPharoLauncherTests.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/OSPlatform.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/OSPlatform.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLAbstractTemplateTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLAbstractTemplateTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLDirectoryBasedImageRepositoryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLDirectoryBasedImageRepositoryTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLImage.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLImage.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLImageBisectionTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLImageBisectionTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLImageDescriptionUpdaterMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLImageDescriptionUpdaterMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLImageDescriptionUpdaterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLImageDescriptionUpdaterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLImageProcessTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLImageProcessTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLImageTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLImageTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLLaunchConfigurationTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLLaunchConfigurationTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLLocalTemplateTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLLocalTemplateTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLPharoTemplateSources.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLPharoTemplateSources.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLPluggableTemplateGroup.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLPluggableTemplateGroup.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLRemoteTemplateTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLRemoteTemplateTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLSettingsTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLSettingsTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLStringTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLStringTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLTemplateGroupRepositoryTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLTemplateGroupRepositoryTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLTemplateGroupsBuilderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLTemplateGroupsBuilderTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/PhLTemplateSourcesTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Core/PhLTemplateSourcesTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Core/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Tests-Core' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLDownloadManagerMock.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLDownloadManagerMock.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLImageFinderStub.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLImageFinderStub.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLImageFinderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLImageFinderTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLJenkins2BuildTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLJenkins2BuildTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLJenkins2EntityTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLJenkins2EntityTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLJenkins2JobTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLJenkins2JobTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLJenkins2RunTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLJenkins2RunTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLJenkins2ServerTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLJenkins2ServerTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLVirtualMachineManagerTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLVirtualMachineManagerTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLVmProviderTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLVmProviderTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/PhLVmProviderUntilPharo80Test.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Download/PhLVmProviderUntilPharo80Test.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Download/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Tests-Download' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLAbstractTemplateGroupTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLAbstractTemplateGroupTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLCreateTemplateFromImageTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLCreateTemplateFromImageTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLDownloadManagerTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLDownloadManagerTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLHTTPListingTemplateGroupTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLHTTPListingTemplateGroupTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLLaunchImageTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLLaunchImageTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLLaunchedImagesWatcherTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLLaunchedImagesWatcherTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLOsXCatalinaTestImage.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLOsXCatalinaTestImage.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLProcessWrapperTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLProcessWrapperTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLUnixSubprocessTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLUnixSubprocessTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLVirtualMachineManagerFunctionalTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLVirtualMachineManagerFunctionalTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLVirtualMachineManagerTestResource.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLVirtualMachineManagerTestResource.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/PhLVirtualMachineTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/PhLVirtualMachineTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/TestMacOSXCatalinaPlatform.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/TestMacOSXCatalinaPlatform.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/ZipArchiveMember.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-Functional/ZipArchiveMember.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-Functional/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Tests-Functional' } 2 | -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLImageCreationPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLImageCreationPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLImageCreationPresenterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLImageCreationPresenterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLImagesPresenterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLImagesPresenterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLLaunchConfigurationPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLLaunchConfigurationPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLLaunchConfigurationPresenterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLLaunchConfigurationPresenterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLScriptPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLScriptPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLScriptPresenterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLScriptPresenterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLTemplatesPresenterTest.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLTemplatesPresenterTest.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLTestApplication.class.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLTestApplication.class.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/PhLTestTemplatesPresenter.extension.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/src/PharoLauncher-Tests-SpecUI/PhLTestTemplatesPresenter.extension.st -------------------------------------------------------------------------------- /src/PharoLauncher-Tests-SpecUI/package.st: -------------------------------------------------------------------------------- 1 | Package { #name : 'PharoLauncher-Tests-SpecUI' } 2 | -------------------------------------------------------------------------------- /test/PharoLauncherCommonFunctions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/test/PharoLauncherCommonFunctions.sh -------------------------------------------------------------------------------- /test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/test/README.txt -------------------------------------------------------------------------------- /test/meta-inf.ston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/test/meta-inf.ston -------------------------------------------------------------------------------- /test/phl-test-config.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/test/phl-test-config.template -------------------------------------------------------------------------------- /test/sources-for-tests.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/test/sources-for-tests.list -------------------------------------------------------------------------------- /test/testImageCommands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pharo-project/pharo-launcher/HEAD/test/testImageCommands.sh --------------------------------------------------------------------------------