Thanks Casimiro 

Why don���t you open a bug entry on github.com?


On 16 Oct 2019, at 14:53, Casimiro de Almeida Barreto <casimiro.barreto@gmail.com> wrote:

In the last builds of Pharo8, CatalogBrowser comes with an easily fixable glitch... Please could someone take a look? My humble suggestion is:

===============================================================

createRepositoryURLtoNameMappings
    "Return a mapping between repositories URLs and their user names"

    <script: 'self createRepositoryURLtoNameMappings inspect'>
    |repos|
    repos := Dictionary new.   
    3 to: SystemVersion current major do: [:v |
        repos    
            at: ('http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo{1}0/main' format: (Array with: v))
            put: ('Pharo{1}.0' format: (Array with: v)].
    repos at: 'http://www.squeaksource.com/MetacelloRepository' put: 'Unsorted'.       
    ^repos

================================================================


Best wishes,


Casimiro Barreto