How to try Bloc?

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

How to try Bloc?

Denis Kudriashov
Hi

I tried image from CI (both stable and dev) and I tried version by loading config in latest Pharo 6. 
Both are not working for me. I run basicExamples:
- ci version said that this is some nil object inside
- config version just crashed.

Do you have instructions how to run it?

I tried it on Sierra Mac.

Best regards,
Denis
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

kilon.alios
No idea how you managed to install it, it gives me a missing ' error 

same setup, macos sierra, pharo 6 latest
ConfigurationOfBloc (Pharo/Bloc repo) loadDevelopment 

On Wed, Oct 26, 2016 at 11:42 AM Denis Kudriashov <[hidden email]> wrote:
Hi

I tried image from CI (both stable and dev) and I tried version by loading config in latest Pharo 6. 
Both are not working for me. I run basicExamples:
- ci version said that this is some nil object inside
- config version just crashed.

Do you have instructions how to run it?

I tried it on Sierra Mac.

Best regards,
Denis
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Denis Kudriashov
In reply to this post by Denis Kudriashov

2016-10-26 10:40 GMT+02:00 Denis Kudriashov <[hidden email]>:

Do you have instructions how to run it?

And if you have one please put also instruction for Brick.
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Denis Kudriashov
In reply to this post by kilon.alios

2016-10-26 11:05 GMT+02:00 Dimitris Chloupis <[hidden email]>:
No idea how you managed to install it, it gives me a missing ' error 

same setup, macos sierra, pharo 6 latest
ConfigurationOfBloc (Pharo/Bloc repo) loadDevelopment 

I use this script:

Gofer it 
smalltalkhubUser: 'Pharo' project: 'Bloc';
configuration;
loadDevelopment 

And examples are working now.
So question is how to open Bloc world? 
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Tudor Girba-2
Hi,

You do not have to switch to a Bloc world anymore. The current solution opens a new SDL window every time you what to open something in Bloc from a Morphic window.

Cheers,
Doru


> On Oct 26, 2016, at 11:19 AM, Denis Kudriashov <[hidden email]> wrote:
>
>
> 2016-10-26 11:05 GMT+02:00 Dimitris Chloupis <[hidden email]>:
> No idea how you managed to install it, it gives me a missing ' error
>
> same setup, macos sierra, pharo 6 latest
> ConfigurationOfBloc (Pharo/Bloc repo) loadDevelopment
>
> I use this script:
>
> Gofer it
> smalltalkhubUser: 'Pharo' project: 'Bloc';
> configuration;
> loadDevelopment
>
> And examples are working now.
> So question is how to open Bloc world?

--
www.tudorgirba.com
www.feenk.com

"In a world where everything is moving ever faster,
one might have better chances to win by moving slower."





Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Denis Kudriashov

2016-10-26 11:21 GMT+02:00 Tudor Girba <[hidden email]>:
Hi,

You do not have to switch to a Bloc world anymore. The current solution opens a new SDL window every time you what to open something in Bloc from a Morphic window.

Ok. 
And now how to activate Halo menu to place with elements on screen?
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Denis Kudriashov

2016-10-26 11:26 GMT+02:00 Denis Kudriashov <[hidden email]>:

2016-10-26 11:21 GMT+02:00 Tudor Girba <[hidden email]>:
Hi,

You do not have to switch to a Bloc world anymore. The current solution opens a new SDL window every time you what to open something in Bloc from a Morphic window.

Ok. 
And now how to activate Halo menu to place with elements on screen?

And where to load Brick? (if it exists for latest Bloc?)
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

kilon.alios
In reply to this post by Denis Kudriashov
it looks like it did not like my custom build image , in a clean on install fines apart from a warning that taskit overwrites its own files, examples work fine. Bloc is really nice, well done people

On Wed, Oct 26, 2016 at 12:20 PM Denis Kudriashov <[hidden email]> wrote:

2016-10-26 11:05 GMT+02:00 Dimitris Chloupis <[hidden email]>:
No idea how you managed to install it, it gives me a missing ' error 

same setup, macos sierra, pharo 6 latest
ConfigurationOfBloc (Pharo/Bloc repo) loadDevelopment 

I use this script:

Gofer it 
smalltalkhubUser: 'Pharo' project: 'Bloc';
configuration;
loadDevelopment 

And examples are working now.
So question is how to open Bloc world? 
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Glenn Cavarlé
In reply to this post by Denis Kudriashov
Hi Denis,
The new version of Brick has no public (ready to use) version right now and only some basic widgets are implemented.
I will finally move it to its "official" SmalltalkHub repository (Pharo/Brick) at the end of the week.
After, you will be able to play with it ;).

Regards,
Glenn.
Glenn Cavarlé
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Glenn Cavarlé
In reply to this post by Denis Kudriashov
Denis Kudriashov wrote
And now how to activate Halo menu to place with elements on screen?
There is no built-in Halo menu because Menu is based on widgets (aka Brick).
But there is a basic kind of Halo with basic tools (move, resize, inspect) that can be use on any elements.
You can find some uses of BlElementSelection in examples.

Regard,
Glenn.
Glenn Cavarlé
Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Denis Kudriashov

2016-10-26 13:48 GMT+02:00 Glenn Cavarlé <[hidden email]>:
Denis Kudriashov wrote
> And now how to activate Halo menu to place with elements on screen?

There is no built-in Halo menu because Menu is based on widgets (aka Brick).
But there is a basic kind of Halo with basic tools (move, resize, inspect)
that can be use on any elements.
You can find some uses of BlElementSelection in examples.

Nice. I found it and some bug (I guess). 
Try example #exampleRectWithElChildren and double click on internal element them try to resize it. You will see wrong size.

Reply | Threaded
Open this post in threaded view
|

Re: How to try Bloc?

Denis Kudriashov

2016-10-26 15:40 GMT+02:00 Denis Kudriashov <[hidden email]>:
2016-10-26 13:48 GMT+02:00 Glenn Cavarlé <[hidden email]>:
Denis Kudriashov wrote
> And now how to activate Halo menu to place with elements on screen?

There is no built-in Halo menu because Menu is based on widgets (aka Brick).
But there is a basic kind of Halo with basic tools (move, resize, inspect)
that can be use on any elements.
You can find some uses of BlElementSelection in examples.

Nice. I found it and some bug (I guess). 
Try example #exampleRectWithElChildren and double click on internal element them try to resize it. You will see wrong size.

Also rotation work strangely. It rotates over left top of selection border. But I think it should be over selection center