Legend for the Class blueprint
by Alexandre Bergel
There is a legend now…
How cool is that.
Other things I have done:
Removed GLMRoassal2Easel. GTInspector is the way to go.
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
7 years, 9 months
GTInspector Browse icon (the pencil) is misleading
by Blondeau Vincent
Hi,
I think that the pencil icon in the GTInspector does not describe well the intention of the action, and, I always confuse with the magnifier.
I propose to use the System Browser icon of the World menu instead of the pencil icon.
What do you think ?
Cheers,
Vincent
________________________________
Ce message et les pi?ces jointes sont confidentiels et r?serv?s ? l'usage exclusif de ses destinataires. Il peut ?galement ?tre prot?g? par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir imm?diatement l'exp?diteur et de le d?truire. L'int?grit? du message ne pouvant ?tre assur?e sur Internet, la responsabilit? de Worldline ne pourra ?tre recherch?e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'exp?diteur ne donne aucune garantie ? cet ?gard et sa responsabilit? ne saurait ?tre recherch?e pour tout dommage r?sultant d'un virus transmis.
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
7 years, 9 months
Classes with Moose
by Alexandre Bergel
Hi!
Yesterday I gave a lecture on Moose to a top software company here in Chile. It all went well.
This is a pity that it is so easy to freeze Pharo. Alt-. often does not help. Very frustrating.
However, people enjoyed it very much!
This is cool!
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
7 years, 9 months
Zooming in and out in a Moose panel
by Alexandre Bergel
Hi!
Zoom - in and out does not work anymore in the moose panel.
Anyone has a way to fix this?
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
7 years, 9 months
Finding in a roassal view
by Alexandre Bergel
Hi!
I have worked on the actions available in Glamour during the last few days.
I have just added a find icon (glasses icon):
Clicking on it open a spotter to look for element in the view. Selecting it move the camera to focus on it.
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
7 years, 9 months
Improvement of Layout Builder
by Alexandre Bergel
Hi!
I did some small improvement of the layout builder. For example:
-=-=-=-=-=-=-=-=
b := RTMondrian new.
b nodes: (1 to: 100).
b layout
force;
ifNotConnectedThen: RTGridLayout new.
b edges connectTo: [ :v | v \\ 4 ].
b
-=-=-=-=-=-=-=-=
I have also introduced a null layout to move all elements at the same position. This is a simple way to discard elements.
-=-=-=-=-=-=-=-=
b := RTMondrian new.
b nodes: (1 to: 100).
b layout
force;
ifNotConnectedThen: RTNullLayout new.
b edges connectTo: [ :v | v \\ 4 ].
b
-=-=-=-=-=-=-=-=
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
7 years, 9 months
GTDebugger not draggable with latest VM
by Blondeau Vincent
Hi,
I have a problem on the latest Moose6.0 image.
I was not able to open a Roassal view, I had a NativeBoost Generic failure...
So I updated the VM to last stable, and, now, the GTdebugger and the Moose panel are not draggable anymore...
Can somebody is able to reproduce the problem?
Thanks
Cheers,
Vincent
________________________________
Ce message et les pi?ces jointes sont confidentiels et r?serv?s ? l'usage exclusif de ses destinataires. Il peut ?galement ?tre prot?g? par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir imm?diatement l'exp?diteur et de le d?truire. L'int?grit? du message ne pouvant ?tre assur?e sur Internet, la responsabilit? de Worldline ne pourra ?tre recherch?e quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'exp?diteur ne donne aucune garantie ? cet ?gard et sa responsabilit? ne saurait ?tre recherch?e pour tout dommage r?sultant d'un virus transmis.
This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.
7 years, 9 months
showing a diff on #assert:equals:
by Andrei Chis
Hi,
I updated GTDebugger to automatically show a diff in the debugger when an
#assert:equals: fails.
For example if you execute '(GTSUnitExampleFailingTest selector:
#testMultiValuedStreaming) debug.' you get the debugger below. Also works
when running tests from Nautilus/TestRunner.
The context from where #assert:equals: was called is also automatically
selected.
[image: Inline image 1]
Let me know if you run into any issues.
Cheers,
Andrei
7 years, 9 months
MacroRecorder available in Pharo
by Gustavo Santos
Hello guys,
I would like to present you MacroRecorder, a tool to build custom source
code transformations in Pharo.
The tool is available in the Catalog for some weeks now.
The current version runs in Pharo 5 and there is an old version running in
Pharo 4.
To show how this tool works, I prepared a quick demo video.
Take a look: https://youtu.be/gW3l4O-WEGs
Right now, I'm interested in usage data.
That means, if you face a case of repetitive code transformation in
practice, and I believe this happened to most of you, please:
(i) show me the transformations you did, in case they already happened in
the past, or
(ii) consider using the tool to apply them automatically
And, of course, feel free to ask questions, provide feedback, etc.
Kind regards,
--
Gustavo Santos
http://gustavojss.github.io/
7 years, 9 months