> Ok...I did it. A few remarks:
>
> 1) RecentMessageList >> initialize
>
> you do
>
> SmalltalkImage current addToStartUpList: self class.
>
> but should be SmalltalkImage addToStartUpList: self class.
>just Smalltalk addToStartUpList: self class.
Thank you, it's done ^^
>
>
> (at least in Pharo 1.1)
>
> 2) What is the idea of the Recent Messages? � To see the recent
MODIFIED methods ? isn't it? � If true, maybe would be good to
> 2.1) directly show the diff with the previous version
I do not know how to do that, I'll search :)
> 2.2) Have a button to see the versions of that method
Good idea, but it means having the RecentMessageList already running ^^
>
> 3) Once you press any button, like collapse all or similar, they become blue and neve grey again
I have not this bug :( The collapse and expend button are disabled when the list is empty.
The buttons browse and remove are enabled only when an item is selectioned.
>
> 4) When is the list of recen messages clean ? �how do you know the
recen messages? you store that information somewhere? when is that
cleaned?
The list is empty when you just have initialize the RecentMessageList (ie the first time you launch it) but you can reset the list by sending :
RecentMessageList resetUniqueInstance
Otherwise it's never automatically cleaned (but you can remove each node you want)
I know the recent messages by registering the class in the SystemChangeNotifier, and they are stored in the RecentMessageList uniqueInstance messageList
>
>
> Thank you very much and continue with the good work! �Maybe once we can include it by defult in Pharo.
> yes this is the point.
Thank you both for your advice