Re: [Pharo-dev] iPad version does not work ?

2014-02-27 Thread p...@highoctane.be
Yes. I should update my OSX laptop to Mavericks but on OSX Lion it works. Phil On Thu, Feb 27, 2014 at 8:48 AM, Luc Fabresse luc.fabre...@gmail.comwrote: Hi All, Are these steps written README file in the PharoVM repo? e.g. https://github.com/pharo-project/pharo-vm/blob/master/README.md

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-27 Thread Esteban Lorenzano
yes On 26 Feb 2014, at 02:38, p...@highoctane.be wrote: Ah, yes, I saw that in the README but haven't yet been able to get the Sim to work. Have you? Phil On Wed, Feb 26, 2014 at 9:01 AM, Esteban Lorenzano esteba...@gmail.com wrote: Yes it is. Take a look at the readme :)

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-26 Thread Esteban Lorenzano
Yes it is. Take a look at the readme :) On 26 Feb 2014, at 08:28, p...@highoctane.be p...@highoctane.be wrote: You can make it work following the procedure: http://www.youtube.com/watch?v=7MNsUiCc5FQlist=UUul18dYQnhOVMfYFg6YSK4A I don't know if you will have to mess with the Xcode

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-26 Thread p...@highoctane.be
Ah, yes, I saw that in the README but haven't yet been able to get the Sim to work. Have you? Phil On Wed, Feb 26, 2014 at 9:01 AM, Esteban Lorenzano esteba...@gmail.comwrote: Yes it is. Take a look at the readme :) On 26 Feb 2014, at 08:28, p...@highoctane.be p...@highoctane.be wrote:

Re: [Pharo-dev] iPad version does not work ?

2014-02-26 Thread jannik laval
Yes, but a Pharo1.4 I tried with a Pharo2.0 but it freezes. Morover, for Pharo2.0 there are some changes to do to download all the stuff. Here is the process for Pharo 1.4: git clone https://github.com/pharo-project/pharo-vm.git cd pharo-vm/image/ ./newImage.sh == it load a pharo20 ./pharo

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-26 Thread Stephen Taylor
On Wed, 2014-02-26 at 08:28 +0100, p...@highoctane.be wrote: You can make it work following the procedure: http://www.youtube.com/watch?v=7MNsUiCc5FQlist=UUul18dYQnhOVMfYFg6YSK4A Excellent - I'll watch. Phil Steve

Re: [Pharo-dev] iPad version does not work ?

2014-02-26 Thread Luc Fabresse
Hi All, Are these steps written README file in the PharoVM repo? e.g. https://github.com/pharo-project/pharo-vm/blob/master/README.md Luc 2014-02-26 21:34 GMT+01:00 jannik laval jannik.la...@gmail.com: Yes, but a Pharo1.4 I tried with a Pharo2.0 but it freezes. Morover, for Pharo2.0 there

Re: [Pharo-dev] iPad version does not work ?

2014-02-25 Thread jannik laval
Yes, just give me some times to try if it works. Then I will publish my process. Cheers, Jannik 2014-02-25 8:04 GMT+01:00 Pharo4Stef pharo4s...@free.fr: On 25 Feb 2014, at 01:31, Esteban Lorenzano esteba...@gmail.com wrote: it *should* be working now. cheers Esteban (who needs to write

Re: [Pharo-dev] iPad version does not work ?

2014-02-25 Thread jannik laval
Thank you Esteban, I will try now. Jannik 2014-02-25 1:31 GMT+01:00 Esteban Lorenzano esteba...@gmail.com: it *should* be working now. cheers Esteban (who needs to write more documentation, but he does what he can :) ) On 24 Feb 2014, at 08:58, Esteban Lorenzano esteba...@gmail.com

Re: [Pharo-dev] iPad version does not work ?

2014-02-25 Thread Esteban Lorenzano
On 25 Feb 2014, at 08:04, Pharo4Stef pharo4s...@free.fr wrote: On 25 Feb 2014, at 01:31, Esteban Lorenzano esteba...@gmail.com wrote: it *should* be working now. cheers Esteban (who needs to write more documentation, but he does what he can :) ) No need lentghly sentences just some

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-25 Thread p...@highoctane.be
You will need an Apple Developer id and for the rest, follow the build procedure and run on the iPad which is connected to your Mac. You'll need to generate and Xcode project from Cmake to get this to work. Also, be ready to delete the app often on the device before running it again as there are

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-25 Thread Esteban Lorenzano
I added some hints here: https://github.com/pharo-project/pharo-vm Esteban On 25 Feb 2014, at 10:41, p...@highoctane.be wrote: You will need an Apple Developer id and for the rest, follow the build procedure and run on the iPad which is connected to your Mac. You'll need to generate and

Re: [Pharo-dev] iPad version does not work ?

2014-02-25 Thread jannik laval
It seems to not work :( Here is the process I follow: === git clone https://github.com/pharo-project/pharo-vm.git cd pharo-vm/image/ ./newImage.sh == it load a pharo20 ./pharo generator.image eval --save PharoIPhoneBuilder buildIPhoneSimulator cd ../iosbuild/resources/ ./generate.sh == it is

Re: [Pharo-dev] iPad version does not work ?

2014-02-25 Thread Esteban Lorenzano
btw what can be happening is that xcode fails to build freetype2. the way to workaround this problem is: first, build a makefile version of the app: sh build.sh then, re-prepare for xcode: rm CMakeCache.txt cmake -G Xcode . (that will build freetype2 first, and when xcode tries to get it,

Re: [Pharo-dev] iPad version does not work ?

2014-02-25 Thread Esteban Lorenzano
that works for me. what is the problem you are having? On 25 Feb 2014, at 12:10, jannik laval jannik.la...@gmail.com wrote: It seems to not work :( Here is the process I follow: === git clone https://github.com/pharo-project/pharo-vm.git cd pharo-vm/image/ ./newImage.sh == it

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-25 Thread Stephen Taylor
On Tue, 2014-02-25 at 10:41 +0100, p...@highoctane.be wrote: and for the rest, follow the build procedure and run on the iPad which is connected to your Mac. That's the tricky bit - the build procedure. There's very little mention of iOS on the Pharo web site (perhaps appropriately if it's

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-25 Thread p...@highoctane.be
You can make it work following the procedure: http://www.youtube.com/watch?v=7MNsUiCc5FQlist=UUul18dYQnhOVMfYFg6YSK4A I don't know if you will have to mess with the Xcode project afterwards at this point but I remember I had to do weird things to get Cmake to work, due to some bugs in it. So,

Re: [Pharo-dev] iPad version does not work ?

2014-02-24 Thread Esteban Lorenzano
it *should* be working now. cheers Esteban (who needs to write more documentation, but he does what he can :) ) On 24 Feb 2014, at 08:58, Esteban Lorenzano esteba...@gmail.com wrote: not yet… so far I restored the build capability, not the image event handling :( (nevertheless, I’m on it :)

Re: [Pharo-dev] iPad version does not work ?

2014-02-24 Thread Alexandre Bergel
It would be great to have a kind of tutorial on how to install pharo on an ipad and iphone. Actually, just a couple of screenshots should be enough I hope. Alexandre On Feb 24, 2014, at 9:31 PM, Esteban Lorenzano esteba...@gmail.com wrote: it *should* be working now. cheers Esteban (who

Re: [Pharo-dev] iPad version does not work ?[SEC=UNCLASSIFIED]

2014-02-24 Thread Stephen Taylor
On Mon, 2014-02-24 at 23:33 -0300, Alexandre Bergel wrote: It would be great to have a kind of tutorial on how to install pharo on an ipad and iphone. Actually, just a couple of screenshots should be enough I hope. Seconded - I keep meaning to ask this very question. I (used to!) know

Re: [Pharo-dev] iPad version does not work ?

2014-02-24 Thread Pharo4Stef
On 25 Feb 2014, at 01:31, Esteban Lorenzano esteba...@gmail.com wrote: it *should* be working now. cheers Esteban (who needs to write more documentation, but he does what he can :) ) No need lentghly sentences just some nice bulleted lists of actions and we can do something with that.

Re: [Pharo-dev] iPad version does not work ?

2014-02-23 Thread jannik laval
Hi Esteban, Did you already try ? I saw a message on the VM repo related to iOS, not sure it is for my problem. Cheers, Jannik 2014-01-29 17:32 GMT+01:00 Esteban Lorenzano esteba...@gmail.com: oks... I will take a look... as soon as I can :S (damn... I need to learn how to do a

Re: [Pharo-dev] iPad version does not work ?

2014-02-23 Thread Esteban Lorenzano
not yet… so far I restored the build capability, not the image event handling :( (nevertheless, I’m on it :) ) Esteban On 24 Feb 2014, at 08:00, jannik laval jannik.la...@gmail.com wrote: Hi Esteban, Did you already try ? I saw a message on the VM repo related to iOS, not sure it is for my

Re: [Pharo-dev] iPad version does not work ?

2014-01-29 Thread p...@highoctane.be
Hi Jannik, I can help you do this if you want. Send me a private message so that we can arrange for a Skype|Google Hangout. Or, if you come to FOSDEM on saturday, we can do that together. On another front, I am now actually working on an Arduino project with a TLC5940 (16 PWM output chip, that

Re: [Pharo-dev] iPad version does not work ?

2014-01-29 Thread Esteban Lorenzano
PharoIPhoneBuilder buildIPhone. it should generate all sources and a “build.sh” then build$ sh build.sh will generate an xcode project. and let me remember… mmm… yeah, that was all :) On 29 Jan 2014, at 08:10, jannik laval jannik.la...@gmail.com wrote: Hi Esteban, Hum, this means

Re: [Pharo-dev] iPad version does not work ?

2014-01-29 Thread Esteban Lorenzano
and btw… iosbuild/resource$ ./generate.sh should generate a 1.4 image that *should* work in ipad (no idea if that will be the case, its been more than 6months since I do not test it and vm changed since then). Esteban On 29 Jan 2014, at 10:23, Esteban Lorenzano esteba...@gmail.com wrote:

Re: [Pharo-dev] iPad version does not work ?

2014-01-29 Thread jannik laval
I confirm that it does not work: the simulator compile (but not the non-simulator). Then the image cannot be open: I have a white screen. Here is my process: === 1) git clone https://github.com/pharo-project/pharo-vm.git 2) in ./image dir prepare a VMMaker image (including download of a pharo

Re: [Pharo-dev] iPad version does not work ?

2014-01-29 Thread Esteban Lorenzano
oks… I will take a look… as soon as I can :S (damn… I need to learn how to do a mitosis…) On 29 Jan 2014, at 17:28, jannik laval jannik.la...@gmail.com wrote: I confirm that it does not work: the simulator compile (but not the non-simulator). Then the image cannot be open: I have a white

Re: [Pharo-dev] iPad version does not work ?

2014-01-28 Thread Pharo4Stef
jannik the latest vm is not on gitoruous anymore but git On 27 Jan 2014, at 22:03, jannik laval jannik.la...@gmail.com wrote: Hum, have I the correct repository ? I used this one: https://git.gitorious.org/cogvm/cog-osx.git But, I just saw that this one exists:

Re: [Pharo-dev] iPad version does not work ?

2014-01-28 Thread jannik.laval
Thank you, I am trying the latest one. When compiling for IOS, I have an error in sqSCCSVersion.h #include vmVersionInfo.h // defines REVISION_STRING the file is not found. Anyone knows where is this file ? Cheers, Jannik On Jan 28, 2014, at 8:58 PM, Pharo4Stef pharo4s...@free.fr wrote:

Re: [Pharo-dev] iPad version does not work ?

2014-01-28 Thread Esteban Lorenzano
because you are not following the instructions ;) basically… you can generate them by: build$ ../scripts/extract-commit-info.sh Esteban On 28 Jan 2014, at 23:15, jannik.laval jannik.la...@gmail.com wrote: Thank you, I am trying the latest one. When compiling for IOS, I have an error in

Re: [Pharo-dev] iPad version does not work ?

2014-01-28 Thread Eliot Miranda
On Tue, Jan 28, 2014 at 2:46 PM, Esteban Lorenzano esteba...@gmail.comwrote: because you are not following the instructions ;) basically... you can generate them by: build$ ../scripts/extract-commit-info.sh I asked for this info last week ;-). Thanks! But this is alarming:

Re: [Pharo-dev] iPad version does not work ?

2014-01-28 Thread Esteban Lorenzano
On 29 Jan 2014, at 00:18, Eliot Miranda eliot.mira...@gmail.com wrote: On Tue, Jan 28, 2014 at 2:46 PM, Esteban Lorenzano esteba...@gmail.com wrote: because you are not following the instructions ;) basically… you can generate them by: build$ ../scripts/extract-commit-info.sh

Re: [Pharo-dev] iPad version does not work ?

2014-01-28 Thread jannik laval
Hi Esteban, Hum, this means that my instructions are outdated. Where are the right instructions ? The ones on Github do not mention IOS. Cheers, Jannik 2014-01-29 Esteban Lorenzano esteba...@gmail.com On 29 Jan 2014, at 00:18, Eliot Miranda eliot.mira...@gmail.com wrote: On Tue, Jan

[Pharo-dev] iPad version does not work ?

2014-01-27 Thread jannik laval
Hi list, Does anyone try to load Pharoon iPad ? In the past, the version 1.4 worked with XCode 4.4. I just tried to recompile it with the new XCode (5.0.2). The VM seems to work, but the pharo 1.4 image freezes. Any idea ? -- ~~Jannik Laval~~ École des Mines de Douai Enseignant-chercheur

Re: [Pharo-dev] iPad version does not work ?

2014-01-27 Thread Esteban Lorenzano
1.4 and 2.0 worked out of the box… and after my latest integration, 3.0 should work too. I will take a look as soon as I have half and hour to spare. Esteban On 27 Jan 2014, at 14:27, jannik laval jannik.la...@gmail.com wrote: Hi list, Does anyone try to load Pharoon iPad ? In the past,

Re: [Pharo-dev] iPad version does not work ?

2014-01-27 Thread Hilaire Fernandes
Hi Jannik, I would really love to hear about your progress on Pratch on iPad because I will soon test iStoa on iPad: the constraints are more like yours than with previous Dr.Geo. It is more about moving bitmap block arround and I remenber you told me the reactivity was really terrible on your

Re: [Pharo-dev] iPad version does not work ?

2014-01-27 Thread jannik laval
Hum, have I the correct repository ? I used this one: https://git.gitorious.org/cogvm/cog-osx.git But, I just saw that this one exists: https://github.com/pharo-project/pharo-vm I should use it no? Jannik 2014-01-27 Esteban Lorenzano esteba...@gmail.com 1.4 and 2.0 worked out of the box… and

Re: [Pharo-dev] iPad version does not work ?

2014-01-27 Thread jannik laval
Another thing, I use the package iPhone from squeaksource: === Gofer it squeaksource: 'iPhone'; package: 'ConfigurationOfIPhone'; load. (Smalltalk at: #ConfigurationOfIPhone) loadBleedingEdge. === Is there a more recent repository ? Thank you Jannik 2014-01-27 jannik laval

Re: [Pharo-dev] iPad version does not work ?

2014-01-27 Thread Alexandre Bergel
Let us know about your progresses Jannik… Alexandre On Jan 27, 2014, at 6:09 PM, jannik laval jannik.la...@gmail.com wrote: Another thing, I use the package iPhone from squeaksource: === Gofer it squeaksource: 'iPhone'; package: 'ConfigurationOfIPhone'; load.