The Trunk: MonticelloConfigurations-dtl.139.mcz

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

The Trunk: MonticelloConfigurations-dtl.139.mcz

commits-2
David T. Lewis uploaded a new version of MonticelloConfigurations to project The Trunk:
http://source.squeak.org/trunk/MonticelloConfigurations-dtl.139.mcz

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

Name: MonticelloConfigurations-dtl.139
Author: dtl
Time: 10 October 2015, 9:49:50.558 pm
UUID: 2f42a23f-99ef-48d0-a0eb-9ec51dd31cde
Ancestors: MonticelloConfigurations-topa.138

Fix default update map name access so preference is displayed correctly

=============== Diff against MonticelloConfigurations-topa.138 ===============

Item was changed:
  ----- Method: MCMcmUpdater class>>default (in category 'instance creation') -----
  default
  "The default instance for system updates. Uses a default update map
  name that may be set as a preference to enable a specific update stream
  for a repository."
 
  ^ self updaters
  at: self defaultUpdateURL
+ ifAbsentPut: [self updateMapNamed: 'update' ]!
- ifAbsentPut: [self updateMapNamed: self updateMapName]!

Item was changed:
  ----- Method: MCMcmUpdater class>>updateMapName (in category 'preferences') -----
  updateMapName
  "The default update map name"
 
  <preference: 'Update map name'
  category: 'updates'
  description: 'Base name for the update maps'
  type: #String>
 
+ ^ self default updateMapName
+ !
- ^ 'update'!