@@ -85,7 +85,7 @@ public synchronized void updateIndex(ProgressListener progressListener) throws E
8585
8686 public synchronized void install (ContributedLibrary lib , Optional <ContributedLibrary > mayReplacedLib , ProgressListener progressListener ) throws Exception {
8787 if (lib .isLibraryInstalled ()) {
88- System .out .println (I18n .format (tr ("Library is already installed: {0} version {1}" ), lib .getName (), lib .getParsedVersion ()));
88+ System .out .println (I18n .format (tr ("Library is already installed: {0}: {1}" ), lib .getName (), lib .getParsedVersion ()));
8989 return ;
9090 }
9191
@@ -106,7 +106,7 @@ public synchronized void install(ContributedLibrary lib, Optional<ContributedLib
106106 // all the temporary folders and abort installation.
107107
108108 // Step 2: Unpack library on the correct location
109- progress .setStatus (I18n .format (tr ("Installing library: {0}" ), lib .getName ()));
109+ progress .setStatus (I18n .format (tr ("Installing library: {0}:{1} " ), lib .getName (), lib . getParsedVersion ()));
110110 progressListener .onProgress (progress );
111111 File libsFolder = BaseNoGui .getSketchbookLibrariesFolder ().folder ;
112112 File tmpFolder = FileUtils .createTempFolder (libsFolder );
@@ -139,7 +139,7 @@ public synchronized void remove(ContributedLibrary lib, ProgressListener progres
139139 final MultiStepProgress progress = new MultiStepProgress (2 );
140140
141141 // Step 1: Remove library
142- progress .setStatus (I18n .format (tr ("Removing library: {0}" ), lib .getName ()));
142+ progress .setStatus (I18n .format (tr ("Removing library: {0}:{1} " ), lib .getName (), lib . getParsedVersion ()));
143143 progressListener .onProgress (progress );
144144 FileUtils .recursiveDelete (lib .getInstalledLibrary ().get ().getInstalledFolder ());
145145 progress .stepDone ();
0 commit comments