Re: [Pharo-dev] GTDebugger variables table

2017-02-04 Thread stepharong
On Thu, 02 Feb 2017 17:16:49 +0100, John Brant wrote: On 02/02/2017 04:22 AM, Denis Kudriashov wrote: Now I think I realized main reason of my confusion. Temps and receiver vars are not just in single table but they are also sorted by name all together. I'm not a fan of this either. While

Re: [Pharo-dev] GTDebugger variables table

2017-02-02 Thread Ben Coman
On Fri, Feb 3, 2017 at 10:21 AM, Ben Coman wrote: > On Fri, Feb 3, 2017 at 12:28 AM, Denis Kudriashov > wrote: > > > > 2017-02-02 17:16 GMT+01:00 John Brant : > >> > >> I think my preference would be to have several tabs for the variables. > In > >> addition to the one tab that we have now that

Re: [Pharo-dev] GTDebugger variables table

2017-02-02 Thread Ben Coman
On Fri, Feb 3, 2017 at 12:28 AM, Denis Kudriashov wrote: > > 2017-02-02 17:16 GMT+01:00 John Brant : >> >> I think my preference would be to have several tabs for the variables. In >> addition to the one tab that we have now that shows all variables, I can >> think of tabs for locals, inst vars, i

Re: [Pharo-dev] GTDebugger variables table

2017-02-02 Thread Denis Kudriashov
2017-02-02 17:16 GMT+01:00 John Brant : > I think my preference would be to have several tabs for the variables. In > addition to the one tab that we have now that shows all variables, I can > think of tabs for locals, inst vars, interesting variables, watched > variables/expressions, and stack va

Re: [Pharo-dev] GTDebugger variables table

2017-02-02 Thread John Brant
On 02/02/2017 04:22 AM, Denis Kudriashov wrote: Now I think I realized main reason of my confusion. Temps and receiver vars are not just in single table but they are also sorted by name all together. I'm not a fan of this either. While I can filter by the type of variable to limit the list, t

Re: [Pharo-dev] GTDebugger variables table

2017-02-02 Thread Ben Coman
> On 02/02/2017 11:22, Denis Kudriashov wrote: > > Hi. > > Finally I force myself to report my bad feeling of merged variable table in > GTDebugger. > By "merged" I mean that debugger join temps and receiver state in one table. > Sometimes I really not like it because it is difficult to find concre

Re: [Pharo-dev] GTDebugger variables table

2017-02-02 Thread Nicolas Anquetil
for what it is worth, Eclipse behaves more or less as described by Denis: you see only local variables (self being one) and if a variable contains an object (such as self), it expands in a three to show the attributes of this object. I sometimes find it a pain to have to expand "self" to see

[Pharo-dev] GTDebugger variables table

2017-02-02 Thread Denis Kudriashov
Hi. Finally I force myself to report my bad feeling of merged variable table in GTDebugger. By "merged" I mean that debugger join temps and receiver state in one table. Sometimes I really not like it because it is difficult to find concrete variable. Now I think I realized main reason of my confu

[Pharo-dev] GTDebugger - class variables

2016-07-03 Thread Ben Coman
I just noticed it seems class variables are not shown in Variables pane of GTDebugger. It confused me for a while, and I expect it would be troubling for newcomers. Is this due to copying the previous Debugger functionality here, or some other design decision?Any reason to not display class v

Re: [Pharo-dev] GTDebugger shortcuts usability

2016-04-18 Thread Tudor Girba
Hi Stef, This would have been our intention, but unfortunately, we cannot have that because most of these are already taken by other keybindings in the text editor. Doru > On Apr 18, 2016, at 8:54 AM, stepharo wrote: > > Would be nice to have > > Ctrl+ C create > Ctrl + P proceed >

Re: [Pharo-dev] GTDebugger shortcuts usability

2016-04-17 Thread stepharo
Would be nice to have Ctrl+ C create Ctrl + P proceed Ctrl + R Restart Ctrl + I into Ctrl + O over Ctrl + T through Stef Le 16/4/16 20:37, Peter Uhnák a écrit : Hi, I'm getting fed-up with GTDebugger shortcuts since they are completely random. Can we have them more

Re: [Pharo-dev] GTDebugger shortcuts usability

2016-04-16 Thread Tudor Girba
Hi Peter, Let’s turn this energy into something positive. Please propose a concrete set of default keybindings that you think would work better. In this process, please take into account all keybindings that are already defined in the code editor (it might not be so easy as it appears). Cheers

[Pharo-dev] GTDebugger shortcuts usability

2016-04-16 Thread Peter Uhnák
Hi, I'm getting fed-up with GTDebugger shortcuts since they are completely random. Can we have them more meaningful and/or somehow visible? For now I ended up overriding the labels so I can at least see them... but doing this is also stupid, because I still have to look at them since I cannot re

Re: [Pharo-dev] GTDebugger missing block parameters?

2016-02-10 Thread Nicolai Hess
@steph,@doru This bug is a good example, why we need to see and be able to interact with 'thisContext' in the Debugger. Am 09.02.2016 8:36 vorm. schrieb "Nicolai Hess" : > > > > 2016-01-31 10:50 GMT+01:00 Nicolai Hess : >> >> >> >> 2016-01-28 1:37 GMT+01:00 Eliot Miranda : >>> >>> Hi Nicolai >>>

Re: [Pharo-dev] GTDebugger missing block parameters?

2016-02-08 Thread Nicolai Hess
2016-01-31 10:50 GMT+01:00 Nicolai Hess : > > > 2016-01-28 1:37 GMT+01:00 Eliot Miranda : > >> Hi Nicolai >> >> On Jan 15, 2016, at 4:57 AM, Nicolai Hess wrote: >> >> >> >> 2016-01-15 13:26 GMT+01:00 Stephan Eggermont : >> >>> When debugging a method containing a block with a parameter, >>> the p

Re: [Pharo-dev] GTDebugger missing block parameters?

2016-01-31 Thread Nicolai Hess
2016-01-28 1:37 GMT+01:00 Eliot Miranda : > Hi Nicolai > > On Jan 15, 2016, at 4:57 AM, Nicolai Hess wrote: > > > > 2016-01-15 13:26 GMT+01:00 Stephan Eggermont : > >> When debugging a method containing a block with a parameter, >> the parameter is missing from the variable list (because it is al

[Pharo-dev] GTDebugger feedback - Setup/TearDown tabs for test cases

2016-01-29 Thread Ben Coman
I really like the SetUp/TearDown tabs when debugging a failed test, however it seems a waste to devote a whole half of window to them causing lines in the Source tab to wrap unnecessarily. Could they be moved adjacent to the Source tab? I guess the Browse button would equally apply to #setUp and

Re: [Pharo-dev] GTDebugger missing block parameters?

2016-01-27 Thread Eliot Miranda
Hi Nicolai > On Jan 15, 2016, at 4:57 AM, Nicolai Hess wrote: > > > > 2016-01-15 13:26 GMT+01:00 Stephan Eggermont : >> When debugging a method containing a block with a parameter, >> the parameter is missing from the variable list (because it is aliased?). > > Yes, this happens with block va

Re: [Pharo-dev] gtdebugger debug actions buttons

2016-01-27 Thread Blondeau Vincent
ist > Objet : [Pharo-dev] gtdebugger debug actions buttons > > Hi, > > I find the new debugger quite but after using it a while, I figure out that > the > placement of debug actions (into, over, etc.) buttons leads to make me > overuse the mouse and loose time. > With

[Pharo-dev] gtdebugger debug actions buttons

2016-01-27 Thread Christophe Demarey
Hi, I find the new debugger quite but after using it a while, I figure out that the placement of debug actions (into, over, etc.) buttons leads to make me overuse the mouse and loose time. With the spec debugger, buttons are huge and easily accessible . With GTDebugger, there are at the top ri

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-18 Thread Ben Coman
On Mon, Jan 18, 2016 at 9:45 PM, Esteban A. Maringolo wrote: > 2016-01-17 11:51 GMT-03:00 Eliot Miranda : >> >> >> On Jan 17, 2016, at 12:05 AM, Tudor Girba wrote: >> >> Hi, >> >> Indeed. See below how it looks like in the latest development version. >> >> We have not yet integrate this one becau

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-18 Thread Esteban A. Maringolo
2016-01-17 11:51 GMT-03:00 Eliot Miranda : > > > On Jan 17, 2016, at 12:05 AM, Tudor Girba wrote: > > Hi, > > Indeed. See below how it looks like in the latest development version. > > We have not yet integrate this one because we still need little changes in > FastTable to be able to resize colum

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread David Allouche
> On 17 Jan 2016, at 16:52, Tudor Girba wrote: > > Hi, > >> On Jan 17, 2016, at 1:18 PM, David Allouche wrote: >> >> Cool. While you are there, could provide a way to separate instance >> variables from local variables (and class shared variables too, maybe)? >> It could be different columns

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread stepharo
I'm going over the pdf descriptions of the lecture and after I will follow the pdfs and record. Stef Le 17/1/16 18:32, Tudor Girba a écrit : Great. That should be enough time to do a couple of iterations. Doru On Jan 17, 2016, at 6:30 PM, stepharo wrote: End of this week else I will just

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Tudor Girba
Great. That should be enough time to do a couple of iterations. Doru > On Jan 17, 2016, at 6:30 PM, stepharo wrote: > > End of this week else I will just do it and people will adapt. > >> Hi, >> >> Indeed, this is the goal. What is the deadline until when we could still do >> something visua

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread stepharo
End of this week else I will just do it and people will adapt. Hi, Indeed, this is the goal. What is the deadline until when we could still do something visual with the debugger? Cheers, Doru On Jan 17, 2016, at 9:55 AM, stepharo wrote: Please publish this change fast because after all

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Tudor Girba
Hi, > On Jan 17, 2016, at 1:18 PM, David Allouche wrote: > > Cool. While you are there, could provide a way to separate instance variables > from local variables (and class shared variables too, maybe)? > It could be different columns, filtering, tabs, I do not really care. > Currently, when d

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Eliot Miranda
> On Jan 17, 2016, at 12:05 AM, Tudor Girba wrote: > > Hi, > > Indeed. See below how it looks like in the latest development version. > > We have not yet integrate this one because we still need little changes in > FastTable to be able to resize columns and not make the column names > click

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Tudor Girba
Hi, > On Jan 17, 2016, at 3:51 PM, Eliot Miranda wrote: > > > > On Jan 17, 2016, at 12:05 AM, Tudor Girba wrote: > >> Hi, >> >> Indeed. See below how it looks like in the latest development version. >> >> We have not yet integrate this one because we still need little changes in >> FastTa

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Cyril Ferlicot D.
Le 17/01/2016 15:51, Eliot Miranda a écrit : > > > I have to say that the column names are entirely redundant. They're > obvious from the information presented (unless empty when no stack frame > is selected). They eat vertical screen real estate and are one more set > of strings to localize.

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread David Allouche
Cool. While you are there, could provide a way to separate instance variables from local variables (and class shared variables too, maybe)? It could be different columns, filtering, tabs, I do not really care. Currently, when debugging classes with lots of instance variables (like morphic stuff

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Tudor Girba
Hi, Indeed, this is the goal. What is the deadline until when we could still do something visual with the debugger? Cheers, Doru > On Jan 17, 2016, at 9:55 AM, stepharo wrote: > > Please publish this change fast because after all the coding videos of the > mooc will be impacted. > > Le 17

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread stepharo
Please publish this change fast because after all the coding videos of the mooc will be impacted. Le 17/1/16 09:05, Tudor Girba a écrit : Hi, Indeed. See below how it looks like in the latest development version. We have not yet integrate this one because we still need little changes in Fast

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-17 Thread Tudor Girba
Hi, Indeed. See below how it looks like in the latest development version. We have not yet integrate this one because we still need little changes in FastTable to be able to resize columns and not make the column names clickable. Cheers, Doru > On Jan 17, 2016, at 8:07 AM, Ben Coman wrote

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-16 Thread Ben Coman
On Sun, Jan 17, 2016 at 9:48 AM, Cyril Ferlicot D. wrote: > > And more, it make the debugger "ventilated" (I don't know if the term > work in English too). I mean that with more space between the classes > and the methods it's better for the eye of the user. Never heard the term used that way in

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-16 Thread Cyril Ferlicot D.
Le 09/01/2016 10:32, Tudor Girba a écrit : > Hi, > > Could you be specific? What exactly do you find less intuitive? To be able to > react, it is useful to get concrete points. > > Cheers, > Doru > > > -- > www.tudorgirba.com > www.feenk.com > > "Value is always contextual." > > Hi, After

Re: [Pharo-dev] GTDebugger missing block parameters?

2016-01-15 Thread Nicolai Hess
2016-01-15 13:26 GMT+01:00 Stephan Eggermont : > When debugging a method containing a block with a parameter, > the parameter is missing from the variable list (because it is aliased?). > Yes, this happens with block vars from optimized blocks (ifNotNil:). The tempvars arent't local to the block,

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-11 Thread Christophe Demarey
Le 9 janv. 2016 à 23:10, Tudor Girba a écrit : > Hi, > >> On Jan 9, 2016, at 3:29 PM, Christophe Demarey >> wrote: >> >> Not yet tested but looks good. > > Thanks. > >> I just noticed it misses the "run to here" action. > > It does not miss it. It is in the context menu of the code (this i

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread stepharo
Yes this is my point On Jan 9, 2016, at 3:29 PM, Christophe Demarey mailto:christophe.dema...@inria.fr>> wrote: Not yet tested but looks good. Thanks. I just noticed it misses the "run to here" action. It does not miss it. It is in the context menu of the code (t

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Tudor Girba
Hi, > On Jan 10, 2016, at 10:51 AM, stepharo wrote: > > - Can we have a setting to remove all the colors from the stack because > sometimes the hilighting > is more confusing than helping and especially for newbies As Mariano said, there is one already. > - the argument about run to here no

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Tudor Girba
Hi, > On Jan 10, 2016, at 11:58 AM, Nicolai Hess wrote: > > > 2016-01-09 23:10 GMT+01:00 Tudor Girba : > Hi, > >> On Jan 9, 2016, at 3:29 PM, Christophe Demarey >> wrote: >> >> Not yet tested but looks good. > > Thanks. > >> I just noticed it misses the "run to here" action. > > It does

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Mariano Martinez Peck
On Sun, Jan 10, 2016 at 5:51 AM, stepharo wrote: > - Can we have a setting to remove all the colors from the stack because > sometimes the hilighting > is more confusing than helping and especially for newbies > > There is a setting for this which allows you to disable it. Maybe we should disable

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Andrei Chis
On Sun, Jan 10, 2016 at 12:54 PM, Stephan Eggermont wrote: > On 10-01-16 06:26, Tudor Girba wrote: > >> - There is no way to close the inspector if we miss click >>> >> >> Indeed, this is a problem. We did not want to have an >> > >extra tab line and that is why we do not have a way to > >> close

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Stephan Eggermont
On 10-01-16 06:26, Tudor Girba wrote: - There is no way to close the inspector if we miss click Indeed, this is a problem. We did not want to have an >extra tab line and that is why we do not have a way to close inspector panes, but you can still scroll back. Also, in the meantime, we made th

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Nicolai Hess
2016-01-10 6:26 GMT+01:00 Tudor Girba : > Hi, > > Thanks for the detailed feedback. See my comments inline. > > > On Jan 10, 2016, at 12:12 AM, Ferlicot D. Cyril < > cyril.ferli...@gmail.com> wrote: > > > > Le 09/01/2016 10:32, Tudor Girba a écrit : > >> Hi, > >> > >> Could you be specific? What e

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread Nicolai Hess
; > > > > > On Sat, Jan 9, 2016 at 12:07 PM, Henrik Nergaard > wrote: > > http://ws.stfx.eu/3KXXDAJ4EUF6 > > > > > > -Original Message- > > From: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] On Behalf Of > Stephan Eggermont > &

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread stepharo
- Can we have a setting to remove all the colors from the stack because sometimes the hilighting is more confusing than helping and especially for newbies - the argument about run to here not being a button is not about logical placement is it about making things easy to use and discover. - I

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread stepharo
I've never used the bytecodes view, but when I see them listed in the inspector on a method I still often think "Wow! You can do that?!" Its cool a hook to let novices peek under the hood and build a sense of mastery. Though I haven't used the GTDebugger for a long time, so I'm not sure wh

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread stepharo
>] On Behalf Of Stephan Eggermont Sent: Saturday, January 9, 2016 3:36 PM To: pharo-dev@lists.pharo.org <mailto:pharo-dev@lists.pharo.org> Subject: Re: [Pharo-dev] gtdebugger in pharo 5.0 On 09-01-16 12:39, Dimitris Chloupis wrote: > there has been

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-10 Thread stepharo
I wanted to say that I also like more the distribution that Esteban built instead of the original one of GT Debugger. So.. +1 for that. And yes, I also like the text besides the buttons since unfortunately the buttons are not extremely intuitive. +1 for that too. For the record I gave this

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Hi, Thanks for the detailed feedback. See my comments inline. > On Jan 10, 2016, at 12:12 AM, Ferlicot D. Cyril > wrote: > > Le 09/01/2016 10:32, Tudor Girba a écrit : >> Hi, >> >> Could you be specific? What exactly do you find less intuitive? To be able >> to react, it is useful to get con

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Thank you, indeed. Doru > On Jan 9, 2016, at 1:23 PM, Sven Van Caekenberghe wrote: > > Thanks for this wonderfully positive message !! That is the spirit. > >> On 09 Jan 2016, at 10:49, Dimitris Chloupis wrote: >> >> Since I am the mainn maintainer of UPBE and pretty much alone, I will have

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Thanks for this. Part of it is now in the repo. We need to work to find a reasonable solution to add text to Glamour. Cheers, Doru > On Jan 9, 2016, at 12:01 PM, Esteban Lorenzano wrote: > > again re-send because of exceed limits with the image (that’s new?) > > with a small tweak, texts (AN

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
ergaard > wrote: > http://ws.stfx.eu/3KXXDAJ4EUF6 > > > -Original Message- > From: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] On Behalf Of > Stephan Eggermont > Sent: Saturday, January 9, 2016 3:36 PM > To: pharo-dev@lists.pharo.org > Subject: Re: [Pharo-dev] gtdeb

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
gt; From: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] On Behalf Of > Stephan Eggermont > Sent: Saturday, January 9, 2016 3:36 PM > To: pharo-dev@lists.pharo.org > Subject: Re: [Pharo-dev] gtdebugger in pharo 5.0 > > On 09-01-16 12:39, Dimitris Chloupis wrote: > >

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Hello everyone, As expected, there was some feedback. Here is a summary: 1. The layout should mirror the classic debugger - The previous layout was chosen to show more of the stack and to make use of the screen real estate. - But, as that is not an essential component of GTDebugger, the current

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Nicolai Hess
e- >> From: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] On Behalf Of >> Stephan Eggermont >> Sent: Saturday, January 9, 2016 3:36 PM >> To: pharo-dev@lists.pharo.org >> Subject: Re: [Pharo-dev] gtdebugger in pharo 5.0 >> >> On 09-01-16 12:39, Dimitri

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Francisco Ortiz Peñaloza
n Eggermont > Sent: Saturday, January 9, 2016 3:36 PM > To: pharo-dev@lists.pharo.org > Subject: Re: [Pharo-dev] gtdebugger in pharo 5.0 > > On 09-01-16 12:39, Dimitris Chloupis wrote: > > there has been around a script to automate the screenshots, but > > personally I neve

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Henrik Nergaard
http://ws.stfx.eu/3KXXDAJ4EUF6 -Original Message- From: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] On Behalf Of Stephan Eggermont Sent: Saturday, January 9, 2016 3:36 PM To: pharo-dev@lists.pharo.org Subject: Re: [Pharo-dev] gtdebugger in pharo 5.0 On 09-01-16 12:39, Dimitris

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Stephan Eggermont
On 09-01-16 12:39, Dimitris Chloupis wrote: there has been around a script to automate the screenshots, but personally I never bother using it because taking a screenshot and inserting in pillar is the easiest thing. AFAIK the hard part is keeping things up to date. That's where automation hel

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Mariano Martinez Peck
I wanted to say that I also like more the distribution that Esteban built instead of the original one of GT Debugger. So.. +1 for that. And yes, I also like the text besides the buttons since unfortunately the buttons are not extremely intuitive. +1 for that too. Stef, as for the bydecode debugg

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Esteban Lorenzano
that’s just an example, default debugger does not have it :) I will commit my changes as soon as I can sit and clean it… the actions need to be changed to make explicit if you want text/icon/both so we can keep all behaviours (and keep compatible). Esteban > On 09 Jan 2016, at 14:08, stepharo

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Dimitris Chloupis
Dont do it for me , what I did with ChronosManager is only the tip of the iceberg, I will be redesigning the whole Pharo GUI from scratch. After I release ChronosManager 0.2 my next victim will be Nautilus, then inspector and finally debugger. So I will be building my own GUI for the debugger anywa

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-09 Thread stepharo
I like that you report bug and not me. Le 8/1/16 22:55, Nicolai Hess a écrit : 2016-01-08 22:48 GMT+01:00 Nicolai Hess >: 2016-01-08 16:43 GMT+01:00 Andrei Chis mailto:chisvasileand...@gmail.com>>: Hi Nicolai, Thanks for the feedback.

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-09 Thread stepharo
Why do we need thisContext? Le 8/1/16 23:16, Nicolai Hess a écrit : 2016-01-08 22:55 GMT+01:00 Nicolai Hess >: 2016-01-08 22:48 GMT+01:00 Nicolai Hess mailto:nicolaih...@gmail.com>>: 2016-01-08 16:43 GMT+01:00 Andrei Chis mailto:chisvas

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-09 Thread stepharo
+1 Stef Le 7/1/16 21:13, Nicolai Hess a écrit : Some feedback on GTDebugger - The inspector pane is great, we can inspect, evaluate code, and easily show/ inspect the code (for thisContext). although the evaluator pane has a bad text mode (for the thisContext). - I think the buttons are too

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Christophe Demarey
Hi, It is impossible to satisfy everyone. What I would suggest is to have text + icons as default and a preference to only have icons. Christophe Le 9 janv. 2016 à 14:30, Dimitris Chloupis a écrit : > Which brings us to my question, where did tooltips go ? Squeak had them and > then they were

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Christophe Demarey
Not yet tested but looks good. I just noticed it misses the "run to here" action. Le 9 janv. 2016 à 11:01, Esteban Lorenzano a écrit : > again re-send because of exceed limits with the image (that’s new?) > > with a small tweak, texts (AND icons :P): > > > > > would that be aceptable for you

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread stepharo
Can you remove this useless _stack top and _thisContext? Who needs that? And also the bytecode and also the Step glamour that freezes by image and the Step petitParser So you see what I mean? Something that normal people can use...

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread stepharo
Le 9/1/16 11:02, Esteban Lorenzano a écrit : you have to confess that with text and icons looks a lot better than the old one :P you mean both old ones GT and Spec. I hated the the GT icons because I was forced to wait for the fly by help I hate this interfaces that looks nice but are not eff

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Dimitris Chloupis
there has been around a script to automate the screenshots, but personally I never bother using it because taking a screenshot and inserting in pillar is the easiest thing.On macos is just CMD+SHIFT+4 and you just choose the area you want to screenshot and thats it, it takes a second. Documentation

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Stephan Eggermont
On 08-01-16 21:22, stepharo wrote: - It looks a lot more complex to me and I do not want to have to redo all the screenshots of our lecture. What do you need to automate the screenshots? Stephan

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Sven Van Caekenberghe
Very nice (also because of the Dark theme ;-) > On 09 Jan 2016, at 11:01, Esteban Lorenzano wrote: > > again re-send because of exceed limits with the image (that’s new?) > > with a small tweak, texts (AND icons :P): > > > > > would that be aceptable for you? > > cheers! > Esteban > >> On

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Sven Van Caekenberghe
Thanks for this wonderfully positive message !! That is the spirit. > On 09 Jan 2016, at 10:49, Dimitris Chloupis wrote: > > Since I am the mainn maintainer of UPBE and pretty much alone, I will have to > disagree, I have expressed my dislike for GT tools in the past, I was quite > vocal about

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Dimitris Chloupis
any idea when that will happen ? On Sat, Jan 9, 2016 at 12:19 PM Tudor Girba wrote: > You get it in the Moose image until it gets integrated :). > > Doru > > > > On Jan 9, 2016, at 12:11 PM, Dimitris Chloupis > wrote: > > > > looks lovely > > > > Is there a way to add the new debugger to my exi

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Nicolai Hess
No one said, dont integrale it. Just not yet as the default Debugger. Am 09.01.2016 10:51 vorm. schrieb "Dimitris Chloupis" : > > Since I am the mainn maintainer of UPBE and pretty much alone, I will have to disagree, I have expressed my dislike for GT tools in the past, I was quite vocal about my

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Nicolai Hess
Am 09.01.2016 11:03 vorm. schrieb "Esteban Lorenzano" : > > you have to confess that with text and icons looks a lot better than the old one :P > Yes alot better >> On 09 Jan 2016, at 11:01, Esteban Lorenzano wrote: >> >> again re-send because of exceed limits with the image (that’s new?) >> >>

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
You get it in the Moose image until it gets integrated :). Doru > On Jan 9, 2016, at 12:11 PM, Dimitris Chloupis wrote: > > looks lovely > > Is there a way to add the new debugger to my existing image ? How I get the > new debugger, I downloaded the latest image and is not in it, > > On Sa

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Hi, Thanks! Could you publish the code and then we can iterate over it? Cheers, Doru > On Jan 9, 2016, at 12:02 PM, Esteban Lorenzano wrote: > > you have to confess that with text and icons looks a lot better than the old > one :P > >> On 09 Jan 2016, at 11:01, Esteban Lorenzano wrote: >>

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Esteban Lorenzano
you have to confess that with text and icons looks a lot better than the old one :P > On 09 Jan 2016, at 11:01, Esteban Lorenzano wrote: > > again re-send because of exceed limits with the image (that’s new?) > > with a small tweak, texts (AND icons :P): > > > > > would that be aceptable f

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Dimitris Chloupis
Bad math, the correct is 35.000 word are: *I repeat 100 UPBE BOOKS ! * On Sat, Jan 9, 2016 at 11:49 AM Dimitris Chloupis wrote: > Since I am the mainn maintainer of UPBE and pretty much alone, I will have > to disagree, I have expressed my dislike for GT tools in the past, I was > quite vo

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Dimitris Chloupis
Since I am the mainn maintainer of UPBE and pretty much alone, I will have to disagree, I have expressed my dislike for GT tools in the past, I was quite vocal about my dislike about GTPlayground and especially the pages interface of GTInspector. Yet even though I am the one that usually ends up k

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Hi, Could you be specific? What exactly do you find less intuitive? To be able to react, it is useful to get concrete points. Cheers, Doru > On Jan 9, 2016, at 4:23 AM, Ferlicot D. Cyril > wrote: > > Le 08/01/2016 21:22, stepharo a écrit : >> I'm sorry but this debugger should not be the de

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-09 Thread Tudor Girba
Hi, > On Jan 9, 2016, at 10:43 AM, Esteban Lorenzano wrote: > > (re-send because I exceeded limit.) > > Hi, > > let’s think positive. Thanks :) > the GTDebugger is a step forward… it allow a lot of better interactions and > of course, it needs some iterations to make it appealing to everyb

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-08 Thread stepharo
Thanks for your testimony. I'm not against GTDebugger per se. I believe that we should have better tools but we should take time for building better tools (even if this is two years that moosers use or not this new debugger). I would appreciate a process where users can give real feedback and w

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-08 Thread Ferlicot D. Cyril
Le 08/01/2016 21:22, stepharo a écrit : > I'm sorry but this debugger should not be the default one. > MONDAY we are filming our mooc and we have to explain the debugger and > personally I do not see the gain: > - It looks a lot more complex to me and I do not want to have to > redo all the scr

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-08 Thread Ben Coman
On Sat, Jan 9, 2016 at 4:22 AM, stepharo wrote: > I'm sorry but this debugger should not be the default one. > MONDAY we are filming our mooc and we have to explain the debugger and > personally I do not see the gain: > - It looks a lot more complex to me and I do not want to have to redo > al

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Tudor Girba
This is a fun one. I think the reason comes from incorrect printing as comment. Please open a bug for this. Cheers, Doru > On Jan 9, 2016, at 12:16 AM, Nicolai Hess wrote: > > > > 2016-01-08 22:55 GMT+01:00 Nicolai Hess : > > > 2016-01-08 22:48 GMT+01:00 Nicolai Hess : > > > 2016-01-08 1

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Nicolai Hess
2016-01-08 22:55 GMT+01:00 Nicolai Hess : > > > 2016-01-08 22:48 GMT+01:00 Nicolai Hess : > >> >> >> 2016-01-08 16:43 GMT+01:00 Andrei Chis : >> >>> Hi Nicolai, >>> >>> Thanks for the feedback. >>> Some issues I'll manage to fix until we integrate. >>> For those that I do not manage please open bu

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-08 Thread Nicolai Hess
2016-01-08 21:22 GMT+01:00 stepharo : > > I think that experts can choose the debugger they want. The newbies don't. > +1 > > Stef > > >

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Nicolai Hess
2016-01-08 22:48 GMT+01:00 Nicolai Hess : > > > 2016-01-08 16:43 GMT+01:00 Andrei Chis : > >> Hi Nicolai, >> >> Thanks for the feedback. >> Some issues I'll manage to fix until we integrate. >> For those that I do not manage please open bug reports. >> >> On Thu, Jan 7, 2016 at 9:13 PM, Nicolai He

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Nicolai Hess
2016-01-08 16:48 GMT+01:00 Esteban Lorenzano : > > On 08 Jan 2016, at 16:43, Andrei Chis wrote: > > Hi Nicolai, > > Thanks for the feedback. > Some issues I'll manage to fix until we integrate. > For those that I do not manage please open bug reports. > > On Thu, Jan 7, 2016 at 9:13 PM, Nicolai H

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Nicolai Hess
2016-01-08 16:43 GMT+01:00 Andrei Chis : > Hi Nicolai, > > Thanks for the feedback. > Some issues I'll manage to fix until we integrate. > For those that I do not manage please open bug reports. > > On Thu, Jan 7, 2016 at 9:13 PM, Nicolai Hess > wrote: > >> Some feedback on GTDebugger >> >> - The

Re: [Pharo-dev] gtdebugger in pharo 5.0

2016-01-08 Thread stepharo
I'm sorry but this debugger should not be the default one. MONDAY we are filming our mooc and we have to explain the debugger and personally I do not see the gain: - It looks a lot more complex to me and I do not want to have to redo all the screenshots of our lecture. - Just that I

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Esteban Lorenzano
> On 08 Jan 2016, at 17:04, Esteban A. Maringolo wrote: > > 2016-01-08 12:48 GMT-03:00 Esteban Lorenzano >: > > > > On 08 Jan 2016, at 16:43, Andrei Chis > > wrote: > > > > Hi Nicolai, > > > > Thanks for the feedback. > > Some issu

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Esteban A. Maringolo
2016-01-08 12:48 GMT-03:00 Esteban Lorenzano : > > On 08 Jan 2016, at 16:43, Andrei Chis wrote: > > Hi Nicolai, > > Thanks for the feedback. > Some issues I'll manage to fix until we integrate. > For those that I do not manage please open bug reports. > > On Thu, Jan 7, 2016 at 9:13 PM, Nicolai He

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Esteban Lorenzano
> On 08 Jan 2016, at 16:43, Andrei Chis wrote: > > Hi Nicolai, > > Thanks for the feedback. > Some issues I'll manage to fix until we integrate. > For those that I do not manage please open bug reports. > > On Thu, Jan 7, 2016 at 9:13 PM, Nicolai Hess > wrote: >

Re: [Pharo-dev] GTDebugger (case 17341 Integrate GTools version 3.3)

2016-01-08 Thread Andrei Chis
Hi Nicolai, Thanks for the feedback. Some issues I'll manage to fix until we integrate. For those that I do not manage please open bug reports. On Thu, Jan 7, 2016 at 9:13 PM, Nicolai Hess wrote: > Some feedback on GTDebugger > > - The inspector pane is great, we can inspect, evaluate code, and

Re: [Pharo-dev] GTDebugger not draggable with latest VM

2015-12-04 Thread Nicolai Hess
se move seems somewhere special, maybe because all Morphs supports to be dragged and move, and therefore some Morphs may not care to install a mouse move eventhandler.) > > > > > Best regards, > > Henrik > > > > > > *From:* Pharo-dev [mailto:pharo-dev

Re: [Pharo-dev] GTDebugger not draggable with latest VM

2015-12-04 Thread Henrik Nergaard
v [mailto:pharo-dev-boun...@lists.pharo.org] On Behalf Of Andrei Chis Sent: Friday, December 4, 2015 4:31 PM To: Pharo Development List Cc: Moose-related development Subject: Re: [Pharo-dev] GTDebugger not draggable with latest VM Seems to happen due to the fix in issue 17178<https://pharo.fogbugz.com/

  1   2   >