Author Topic: The 22 April 2007 build will NOT be out.  (Read 7511 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 22 April 2007 build will NOT be out.
« on: April 22, 2007, 09:11:56 pm »
berlios down

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: The 22 April 2007 build will NOT be out.
« Reply #1 on: April 23, 2007, 10:07:10 am »
Link to check status of Berlios

http://monitor.berlios.de/berlios-status/index.php

Tim S
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

cybik

  • Guest
Re: The 22 April 2007 build will NOT be out.
« Reply #2 on: April 23, 2007, 01:54:22 pm »
oh JOY...

Offline raph

  • Almost regular
  • **
  • Posts: 242
Re: The 22 April 2007 build will NOT be out.
« Reply #3 on: April 23, 2007, 02:01:31 pm »
Why not put nightlies on sf.net?

Offline byo

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 837
Re: The 22 April 2007 build will NOT be out.
« Reply #4 on: April 23, 2007, 02:43:43 pm »
Why not put nightlies on sf.net?

SVN doesn't work too, so we can not commit source changes.

BYO

Offline raph

  • Almost regular
  • **
  • Posts: 242
Re: The 22 April 2007 build will NOT be out.
« Reply #5 on: April 23, 2007, 04:40:55 pm »
Well, that explains it  :(

@byo
Could you add a property to every widget called "Code after widget creation" or something like that, where the user can input code which is placed right after widget creation?
There are some cases when this is useful.
e.g. when you have a wxMenuItem FileSave, you could enter the code
Code
FileSave->SetBitmap(wxArtProvider::GetBitmap(wxArt_FILE_SAVE));
The reason is, that setting a bitmap on WinXP doesn't seem to work after a wxMenuItem is appended to wxMenu.
This is just one case I found recently.

regards raph

Offline byo

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 837
Re: The 22 April 2007 build will NOT be out.
« Reply #6 on: April 23, 2007, 08:09:00 pm »

Could you add a property to every widget called "Code after widget creation" or something like that, where the user can input code which is placed right after widget creation?
There are some cases when this is useful.
e.g. when you have a wxMenuItem FileSave, you could enter the code
Code
FileSave->SetBitmap(wxArtProvider::GetBitmap(wxArt_FILE_SAVE));
The reason is, that setting a bitmap on WinXP doesn't seem to work after a wxMenuItem is appended to wxMenu.
This is just one case I found recently.

regards raph

Sounds interesting :) Of course for this particular case it would be better to add icon into wxMenu items (in development version, wxSmith may have many gaps like this one, but they should be removed before stable version is released). Modifying wxMenu would be much harder than the solution you provided :) And since it may have more advnatages than tuning wxMenu only, It will be added soon (maybe even today ;) ).

Regards

  BYO