The Trunk: Universes-nice.46.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Universes-nice.46.mcz

commits-2
Nicolas Cellier uploaded a new version of Universes to project The Trunk:
http://source.squeak.org/trunk/Universes-nice.46.mcz

==================== Summary ====================

Name: Universes-nice.46
Author: nice
Time: 6 September 2013, 11:23:52.241 pm
UUID: 805eb73f-391b-4e3f-aef9-64add79e4e8c
Ancestors: Universes-nice.45

It is UIManager's job to informUser:during: Utilities is too broadband

=============== Diff against Universes-nice.45 ===============

Item was changed:
  ----- Method: UGlobalInstaller>>doInstall (in category 'actions') -----
  doInstall
  | orderedPackages |
  self anyPackageSelected not ifTrue: [^self].
  orderedPackages := self orderPackagesByDependency: selectedPackageVersions.
  orderedPackages
  do: [ :p |
+ UIManager default informUser: 'installing ', p printString
- Utilities informUser: 'installing ', p printString
  during: [configuration installPackage: p] ].
  self initializeSelectedPackageVersions.
  !

Item was changed:
  ----- Method: UGlobalInstaller>>requestPackageList (in category 'actions') -----
  requestPackageList
+ UIManager default informUser: 'updating package list...' during:  [
- Utilities informUser: 'updating package list...' during:  [
  universe updatePackagesViaWWW ]
  !

Item was changed:
  ----- Method: UUniverseBrowser>>requestPackageList (in category 'server communication') -----
  requestPackageList
+ UIManager default informUser: 'updating package list...' during:  [
- Utilities informUser: 'updating package list...' during:  [
  universe updatePackagesViaWWW ]
  !