[Pharo-dev] [pharo-project/pharo-core]

2017-01-15 Thread GitHub
Branch: refs/tags/60344 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 13e2fd: 60344

2017-01-15 Thread GitHub
Branch: refs/heads/6.0 Home: https://github.com/pharo-project/pharo-core Commit: 13e2fd59f28ab614ced1ae5f097b75158d8482ca https://github.com/pharo-project/pharo-core/commit/13e2fd59f28ab614ced1ae5f097b75158d8482ca Author: Jenkins Build Server Date:

Re: [Pharo-dev] error "please insert disk" (windows vm)

2017-01-15 Thread p...@highoctane.be
On Sat, Jan 14, 2017 at 7:58 PM, Peter Uhnak wrote: > I feel like we are moving away from the original thread. I mentioned my > FileDialog because I found it odd that VM didn't break it. > > As I am not interested in using STHub, I am also not interested in > integrating it

Re: [Pharo-dev] looking for classbuilder API

2017-01-15 Thread Nicolai Hess
maybe : newClass setFormat: self classLayout format. 2017-01-15 9:40 GMT+01:00 stepharong : > HI > > I need to migrate > > pvtNewSubclass > > | newClass | > newClass := Behavior new. > newClass superclass: self. > newClass setFormat:

Re: [Pharo-dev] ***Important*** Snapcraft pharo package for Pharo 50

2017-01-15 Thread stepharong
Thanks Yes we should have simpler/better packages for linux. On 7 January 2017 at 04:31, Dale Henrichs wrote: Stef, RE: why they "cannot install Pharo" --- I'd guess it is because Pharo requires 32 bit libraries and those are not available in the current

[Pharo-dev] looking for classbuilder API

2017-01-15 Thread stepharong
HI I need to migrate pvtNewSubclass | newClass | newClass := Behavior new. newClass superclass: self. newClass setFormat: (ClassBuilder new computeFormat: #normal instSize: 0 forSuper: self ccIndex: 0). ^newClass and I'm looking at how to express