[ANN] Idea icon pack now in Configuration Browser
Hi, I made a configuration to install the new Idea Icon Pack from configurations browser for Pharo 4. You can install it and then choose your new icon set in settings. You can also manual install them by: Gofer it smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo40'; configurationOf: 'IdeaIcons'; loadStable. ThemeIcons current: #IdeaUIThemeIcons asClass new. âIn Pharo 4, you might need to execute thisâ AbstractNautilusUI resetIconCaches. This icon pack works also for Pharo 3 If you lost it, here a couple of screenshots:
sorry, answered to fast⦠it was: the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P) Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
The Gofer stanza works. But Then DNU IdeaUIThermeIcons>>icons glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ]. ?? Pharo3.0 Latest update: #30864 Phil On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
Thank you Esteban :) On 30 April 2015 at 12:37, phil@highoctane.be <phil@highoctane.be> wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wow
Nice.
Any way to load that in a 3.0?
Phil
-- Cheers Cyril Ferlicot
oops. sorry, is fixed now⦠can you re-try it? Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote: sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be <mailto:phil@highoctane.be> wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
Works now. Awesome. Yay! Phil On Thu, Apr 30, 2015 at 1:29 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
oops. sorry, is fixed now⦠can you re-try it?
Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
Super cool Esteban. Awesome. So the new build of my Pharo 4.0 images are now like this: "Some custom settings" Deprecation raiseWarning: false. (Smalltalk at: #PolymorphSystemSettings) perform: #uiThemeClass: with: (Pharo3DarkTheme). PolymorphSystemSettings desktopImageFileName: '/Library/Desktop Pictures/Yosemite 3.jpg'. ((Smalltalk at: #UITheme) perform: #currentSettings) perform: #fastDragging: with: (true). (Smalltalk at: #StandardFonts) perform: #codeFont: with: ((LogicalFont familyName: 'Source Code Pro' fallbackFamilyNames: nil pointSize: 9 stretchValue: 5 weightValue: 400 slantValue: 0)). Gofer it smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo40'; configurationOf: 'IdeaIcons'; loadStable. ThemeIcons current: #IdeaUIThemeIcons asClass new. AbstractNautilusUI resetIconCaches. "Load an external tool to increase code quality" Metacello new smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo40'; configuration: 'QualityAssistant'; load. On Thu, Apr 30, 2015 at 8:56 AM, phil@highoctane.be <phil@highoctane.be> wrote:
Works now.
Awesome. Yay!
Phil
On Thu, Apr 30, 2015 at 1:29 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
oops. sorry, is fixed now⦠can you re-try it?
Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
-- Mariano http://marianopeck.wordpress.com
Little glitch: refreshIcon method missing and leading to issues. Put this in: refreshIcon ^ icons at: #'refreshIcon' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self refreshIconContents readStream) ]. Works now. There may be other icons like that. Phil On Thu, Apr 30, 2015 at 1:29 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
oops. sorry, is fixed now⦠can you re-try it?
Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
thanks, I fix it. please keep informing me the problems as they arise, is hard to test all the system to be sure :) Esteban
On 30 Apr 2015, at 15:17, phil@highoctane.be wrote:
Little glitch: refreshIcon method missing and leading to issues.
Put this in:
refreshIcon ^ icons at: #'refreshIcon' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self refreshIconContents readStream) ].
Works now.
There may be other icons like that.
Phil
On Thu, Apr 30, 2015 at 1:29 PM, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote: oops. sorry, is fixed now⦠can you re-try it?
Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be <mailto:phil@highoctane.be> wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote: sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be <mailto:phil@highoctane.be> wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
Phil, can I ask what is the sidebar on the left? It looks interesting. Peter On Thu, Apr 30, 2015 at 3:23 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
thanks, I fix it. please keep informing me the problems as they arise, is hard to test all the system to be sure :)
Esteban
On 30 Apr 2015, at 15:17, phil@highoctane.be wrote:
Little glitch: refreshIcon method missing and leading to issues.
Put this in:
refreshIcon ^ icons at: #'refreshIcon' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self refreshIconContents readStream) ].
Works now.
There may be other icons like that.
Phil
On Thu, Apr 30, 2015 at 1:29 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
oops. sorry, is fixed now⦠can you re-try it?
Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
is the âtiling window managerâ is proved to work on Pharo 3. I donât know what about Pharo 4⦠I suppose it will load. Esteban
On 01 May 2015, at 11:49, Peter Uhnák <i.uhnak@gmail.com> wrote:
Phil,
can I ask what is the sidebar on the left? It looks interesting.
Peter
On Thu, Apr 30, 2015 at 3:23 PM, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote: thanks, I fix it. please keep informing me the problems as they arise, is hard to test all the system to be sure :)
Esteban
On 30 Apr 2015, at 15:17, phil@highoctane.be <mailto:phil@highoctane.be> wrote:
Little glitch: refreshIcon method missing and leading to issues.
Put this in:
refreshIcon ^ icons at: #'refreshIcon' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self refreshIconContents readStream) ].
Works now.
There may be other icons like that.
Phil
On Thu, Apr 30, 2015 at 1:29 PM, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote: oops. sorry, is fixed now⦠can you re-try it?
Esteban
On 30 Apr 2015, at 12:37, phil@highoctane.be <mailto:phil@highoctane.be> wrote:
The Gofer stanza works.
But
Then DNU IdeaUIThermeIcons>>icons
glamorousRight ^ self icons at: #'glamorousRight' ifAbsentPut:[ Form fromBinaryStream: (Base64MimeConverter mimeDecodeToBytes: self glamorousRightIconContents readStream) ].
??
Pharo3.0 Latest update: #30864
Phil
On Thu, Apr 30, 2015 at 12:20 PM, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote: sorry, answered to fast⦠it was:
the same you can execute same script⦠it is proved to work on Pharo 3 without problems (the other Esteban tested it :P)
Esteban
On 30 Apr 2015, at 12:19, Esteban Lorenzano <estebanlm@gmail.com <mailto:estebanlm@gmail.com>> wrote:
the same
On 30 Apr 2015, at 12:18, phil@highoctane.be <mailto:phil@highoctane.be> wrote:
Wowâ
Nice.
Any way to load that in a 3.0?
Phil
What an improvement. Thanks! Norbert
Am 30.04.2015 um 12:11 schrieb Esteban Lorenzano <estebanlm@gmail.com>:
Hi,
I made a configuration to install the new Idea Icon Pack from configurations browser for Pharo 4. You can install it and then choose your new icon set in settings.
You can also manual install them by:
Gofer it smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo40'; configurationOf: 'IdeaIcons'; loadStable.
ThemeIcons current: #IdeaUIThemeIcons asClass new. âIn Pharo 4, you might need to execute thisâ AbstractNautilusUI resetIconCaches.
This icon pack works also for Pharo 3
If you lost it, here a couple of screenshots:
<Screen Shot 2015-04-30 at 12.01.20.png>
<Screen Shot 2015-04-30 at 12.01.57.png>
Very nice and a super clean install procedure, I love it when things come together !
On 30 Apr 2015, at 12:11, Esteban Lorenzano <estebanlm@gmail.com> wrote:
Hi,
I made a configuration to install the new Idea Icon Pack from configurations browser for Pharo 4. You can install it and then choose your new icon set in settings.
You can also manual install them by:
Gofer it smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo40'; configurationOf: 'IdeaIcons'; loadStable.
ThemeIcons current: #IdeaUIThemeIcons asClass new. âIn Pharo 4, you might need to execute thisâ AbstractNautilusUI resetIconCaches.
This icon pack works also for Pharo 3
If you lost it, here a couple of screenshots:
<Screen Shot 2015-04-30 at 12.01.20.png>
<Screen Shot 2015-04-30 at 12.01.57.png>
Fix here: http://smalltalkhub.com/#!/~philippeback/HOExtras/packages/Polymorph-Icons-I... Nice look :-) â On Thu, Apr 30, 2015 at 12:11 PM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
Hi,
I made a configuration to install the new Idea Icon Pack from configurations browser for Pharo 4. You can install it and then choose your new icon set in settings.
You can also manual install them by:
Gofer it smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo40'; configurationOf: 'IdeaIcons'; loadStable.
ThemeIcons current: #IdeaUIThemeIcons asClass new. âIn Pharo 4, you might need to execute thisâ AbstractNautilusUI resetIconCaches.
This icon pack works also for Pharo 3
If you lost it, here a couple of screenshots:
participants (7)
-
Cyril Ferlicot -
Esteban Lorenzano -
Mariano Martinez Peck -
Norbert Hartl -
Peter Uhnák -
phil@highoctane.be -
Sven Van Caekenberghe