similar to: announcement

Displaying 20 results from an estimated 10000 matches similar to: "announcement"

2006 Sep 26
4
tag and release 0.0.36
I''m planning to tag 0.0.36 and release binaries from it. We have lots of good new methods & classes & samples (mainly thanks to Roy), and I would like to get a unicode Windows binary gem out there. TODO are integrate Scintilla on OS X and Linux, and apply Tobias''s patches to rakefiles. These''ll be for early in 0.0.37. Maybe someone with Subversion experience
2008 Nov 01
13
wxRuby 1.9.9 released
Hello I''m happy to announce that wxRuby version 1.9.9 is now available for download and gem installation: http://rubyforge.org/frs/?group_id=35&release_id=27842 gem install wxruby On Linux, the default binary gem is now dynamically linked to wxWidgets. This means you''ll need to install wxWidgets from your package manager. See below for more info. == CHANGES == This
2007 Jan 03
12
instalation problem
Hi Im testing wxRuby. I have a problem when ruby try to load the load wx. Im newbie to ruby, maybe a make a simple mistake : Best regards. Install wxRuby-------------------------------------------------------------- pedro@la-vaca-azul:~$ sudo gem install wxruby2-preview Need to update 2 gems from http://gems.rubyforge.org .. complete Select which gem to install for your platform (i486-linux)
2006 Dec 02
7
Gauge Problem with XRC?
Hi I''ve just started using wxruby2-preview-0.0.36-i386-mswin32 outsourcing layout part to the external XRC file. Almost everything seems to be fine. Only that I can never retrieve Gauge objects in the main script. What I''ve been trying is something like this: class MainFrame < Wx::Frame include Wx def initialize(parent) super(nil,-1, "")
2006 Aug 13
25
wxruby2 alpha status
Hi all, How soon can we do our alpha (binary gem) release? 1. I would like to get the samples working a bit better, but am ok simply documenting most of the current problems. Do the samples crash every few minutes for other people? Or is it just me? I would like to have a copyright/license comment at the top of every sample file before the alpha release. 2. I would like to receive and merge a
2006 Sep 27
11
Installation success, execution failed
Hello, after I wasn''t able to install wxruby via gem (404) I downloaded the file from rubyforge and installed it on my intel mac. No failure the so I tried to start the minimal.rb with ruby -r/r?/ ubegems <path>... This didn''t work so I tried to do it in irb but the same error occured: irb(main):001:0> require ''rubygems'' => true
2007 Aug 21
7
installing on X86_64 - unable to build
hi wxrubiers firstly - im right in understanding there is no gem for x86_64? failing that i''ve been trying to compile, but am failing because ld cant find lwx_gtk2u_aui-2.8 im on ubuntu (gutsy) and have wx-windows2.8 headers installed as well as libwxbase2.8dev and libwxgtk2.8-dev can anyone help? thanks glenn
2006 Oct 02
14
0.0.36 tagged and released
Hi I''m pleased to let you know that wxruby2-preview 0.0.36 is now available on Rubyforge. Binary gems to follow... To check out a clean copy from SVN and build from source: svn co svn://rubyforge.org/var/svn/wxruby/tags/wxruby2/0.0.36 cd 0.0.36 rake gem WXRUBY_VERSION=0.0.36 From my reading of SVN docs it''s probably wise for developers to checkout anonymously as a bit of
2007 Jan 22
4
Adding sizers to other sizers doesn''t work
Hello all, Running this on an Intel Mac OSX 10.4.8 ruby 1.8.4 (2005-12-24) [i686-darwin] wxruby2-preview (0.0.37) using zshell I''m having a heck of a time setting up a GUI with a differing number of widgets per row, resulting in a differing number or widgets per column. At first I tried to simply do something like the following: class CharacterInfoPanel < Wx::Panel def
2006 May 13
4
Status
I''ve been looking in on WxRuby occasionally to see if it''s ready foruse, because I like some of the precepts, esp. native widgets.Finally I decided to ask. How close is it to being easily installable on the three majorplatforms? deb or rpm on linux, binary installers on windows and osx.It has to be that easy for people to want to distribute applicationsto end users that use this
2008 Sep 12
7
embedding wxruby?
Hello, is it possible to code a wxWidgets GUI in C++ and pass the whole wxApp or just single windows to embedded Ruby code? This would be very nice to provide a scriptable plugin system. Greetings, Niklas _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Sep 11
15
ruby method names
Hi Attached is a patch that adds aliases to the API for methods that look like attribute accessors. So a_frame.set_title(''The title'') # currently a_frame.title = ''The title'' # now an alternative textctrl.get_value # currently textctrl.value # now an alternative Also, C++ methods named ''IsXXX'' are now exposed in ruby with
2007 May 01
12
Bitmap memory leaks (Bug 251)?
I see that this problem was noted a while ago (http://rubyforge.org/ tracker/index.php?func=detail&aid=251&group_id=35&atid=218) but it seems not to have received much attention. Any chance that it will be looked at anytime soon? So far, I prefer wxRuby to Ruby/Tk because of that closer coupling with the native window manager. However, the memory leak is just murdering me.
2007 Oct 23
6
wxRuby 1.9.2
I''m happy to announce that wxRuby 1.9.2 is now available from Rubyforge. As usual we''ve got source and binary gems for Win32, OS X and Linux: http://rubyforge.org/frs/?group_id=35 or gem install wxruby == WHAT''S NEW == This release has a mix of new syntax features, new classes, and lots of minor fixes and additions * New shorter syntax for event handlers * New
2006 May 26
8
Advanced text editor developed with WxRuby
I just joined this list, have info to share, and some questions. As background, I happen to be a blind person who uses a screen reader utility to operate the computer. I use the keyboard rather than mouse for input and the screen reader, called JAWS, provides output in synthetic speech. This generally works well for standard or common controls of Windows, which WxWidgets wraps (since they are
2007 Oct 17
19
1.9.2, OpenGL
[third sending attempt...] I''m going to try and test out the samples on MSW over the next few days and if things look good I think we should release 1.9.2. Might try and fix the bugs related to TreeCtrl#get_first_child as these might involve minor API changes. So if anyone has any time to test out SVN HEAD and look for anything funny, please do. Also, we have an anonymous patch
2007 Sep 17
7
Re : syntax II
Alex Fenton wrote : >1) Setting up event handlers > >In most real apps, I think the most normal way to set up event handlers >is for the event to be dealt with by a corresponding method. At the >moment this has to be done using a block: > >evt_button(AN_ID) { on_button_click } >evt_button(my_button.get_id) do | event | > on_button_click(event) >end >evt_size { |
2007 Apr 10
15
Wxruby doesn''t work on my Debian sid ( glibc error )
Hi everyone ! i can''t make wxruby work on my debian box, i installed wxruby2preview with the gem command line tool but when i try to run one of the samples, i get this error message : dialogs.rb:1:in `require'': no such file to load -- wxruby (LoadError) from dialogs.rb:1 i searched this mailing list a bit, i tried with the -rubygem argument, i get this error :
2005 Jan 16
4
wxWidgets 2.5
I''ve just gotten wxruby-swig to compile with wxWidgets 2.5 on Mac OS X. Thankfully, it mostly consists of getting rid of already depricated methods from the widget classes. I need to try with Linux and Win32, but it should be a smooth transition. Nick
2007 Mar 21
4
Bug in TextCtrl constructor
Howdy, I''ve uncovered a bug in the constructor for TextCtrl (originally uncovered while using WxSugar but it appears to apply to WxRuby itself as well). Here''s the output from irb: # ------ irb(main):001:0> require ''wx''; irb(main):002:0* ctl =