similar to: 0.0.39 etc

Displaying 20 results from an estimated 900 matches similar to: "0.0.39 etc"

2011 May 08
2
Device context (get_dc) Question from printing.rb in wxRuby samples
I am using Windows XP SP 3 but want to stay general. Below is a method within printing.rb. I have added comments marked by #--. My question is about get_dc. The device context is obviously created and the code works as presented. It also works as documented below. Why does just get_dc satisfy the linkage? When does one use the Wx:: or the Wx::PrintOut format? How does one decide to use
2006 Oct 23
2
patch for rake install
The attached patch fixes the task for non-gem installation. It adds installation of the version and class ruby files, and puts things in the right place (wx.rb was previously going into sitearchdir). It also adds an uninstall task. I plan to overhaul the rake system at some point soon as I think it could be declared more simply, and to avoid launching a new process for each of the cpp
2007 Mar 19
0
wxruby2-preview 0.0.39 is released
Hi all You''ve probably already clicked that 0.0.39 is available now in source and binaries for all the major platforms. This recommended upgrade is at: http://rubyforge.org/frs/?group_id=35&release_id=10372 = MAJOR CHANGES * lots of big and small bugfixes * New widget classes: ScrollBar, PasswordEntryDialog, MultiChoiceDialog * New misc classes: GridBagSizer, AcceleratorTable,
2006 Oct 21
5
0.0.37 release?
I would like to tag and release 0.0.37 soon. I''m thinking of the next few days. We have good new stuff (Printing, Scintilla on OS X, other new classes) and have fixed some bugs. Also, would be good to put the early build probs with the last release behind us. Here''s the patches I think are outstanding: - Wx::App cleanup - rake HTML docs publishing - Scintilla OS X -
2007 Feb 12
7
MSW segfaults II
Hi Think I tracked down why Windows suddenly went horrible crashy - the newest SWIG release generates slightly different code for object tracking, so our fixmodule.rb wasn''t picking up the broken line, so we got a nasty regression. Anyway, the patch (SVN:862) gives me a major improvement in stability Windows. Please could you let me know how SVN HEAD is working for you; if no major
2007 Mar 09
0
[877] trunk/wxruby2/Changelog: Update with 0.0.39 changes; correct last version number
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2007 Mar 15
0
[ wxruby-Patches-9297 ] Patch to compile wxruby 0.0.39 on windows (vc2003, swig 1.3.31, wxwidgets 2.8.0)
Patches item #9297, was opened at 2007-03-15 00:46 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=220&aid=9297&group_id=35 Category: None Group: None Status: Open Resolution: None Priority: 3 Submitted By: Nobody (None) Assigned to: Nobody (None) Summary: Patch to compile wxruby 0.0.39 on windows (vc2003,swig 1.3.31,wxwidgets 2.8.0) Initial Comment:
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 :
2007 Mar 17
5
Fix for crash at exit
Hi This is a very small patch that seems to solve that "Exit the app and get a segfault in return" problem. Another thing: bigdemo.rb:395 does item = event.get_item() if item.is_ok but get_item typemaps TreeItemId into a plain integer, so it doesn''t have is_ok method anymore, is there any wxruby2''yish solution to this kind of problem ? A.K. In case
2007 May 21
13
First drop of new memory management
Hi Just a quick update on memory leaks etc. I''ve just dropped a bunch of patches with a new approach to linking ruby''s GC to Wx''s memory handling. Still some work to do - eg bigdemo.rb falls over quite quickly - but working well for me on other samples. Briefly, it disposes of fixdeleting. For almost all objects that aren''t Windows, they should now be
2007 Mar 16
2
General segfaulting
I''m having issues with WxRuby segfaulting when it''s dealing with external data in one form or another. I can reliably force WxRuby to crash by a) Parsing a file with Hpricot into an internal array of objects and assigning that to an instance variable on a Wx::Frame b) Running my script in Eclipse in "debug" mode and merely mousing over the
2006 Dec 18
3
getting url from evt_text_url event
paul.allton at uk.bnpparibas.com wrote: > TextCtrl on windows supports the TE_RICH and TE_AUTO_URL styles, but I cannot seem > to extract the url from the generated evt_text_url event. Is this not supported or am > I just not asking the right question of it? It seems there is a class specifically for this in WxWidgets, called TextUrlEvent, which includes methods for retrieving
2007 Apr 29
8
wxruby unfriendly to other threads?
I''ve seen a few e-mails about multithreading with respect to wxruby but nothing recent. Unless I''m mistaken, and that may be, there still appear to be problems. The following code seems to hang my spawned thread in favor of the wxruby event loop: Thread.new do puts "in thread" loop do sleep 5 puts "looping" end end puts "main
2007 Apr 28
6
XRC Problem
Hello All, I''ve looked back through the wxruby-users archive, and found someone else was having the same problem when it comes to Accessing XRC and getting a GTK Error about GtkPizza. I don''t know what the problem is, as what I''m using, is wxGlade to develop my user interface, and it creates all the controls in what looks like it should be fine, but it''s
2007 Dec 27
4
build problems, part III, and runtime problems, part I
After decoding the unresolved symbols from wxruby2.so using c++filt, and comparing with the symbols provided by wxGTK, it became clear that wxGTK was using wchar_t whereas wxruby2.so was using char. So I rebuilt wxGTK, turning off unicode. That worked. No more unresolved symbols. What gives? Should the wxruby code have been built using wchar_t, and if so, how? However, now I get the
2007 Mar 15
6
Patch to 0.0.39
Hi I''m developing software using wxruby2. At first I tried to use wxruby 0.6 but I couldn''t live without some of those new funky features :) So, instead of writing my own code, I got a bit sidetracked and wrote http://rubyforge.org/tracker/index.php?func=detail&aid=9297&group_id=35&atid=220 instead. Seeing as this is my first foray in to the innards of wxruby2, I
2007 Dec 28
3
more problems with 1.9.2
The files: wx/accessors.rb wx/keyword_ctors.rb wx/keyword_defs.rb do not exist in the tarball: % pwd /home/rwa/Distributions/test/wxruby-1.9.2 % find . -name accessors.rb % but are required in wx.rb: % tail wx.rb Dir.glob(class_files) do | class_file | require ''wx/classes/'' + class_file[/\w+\.rb$/] end # Load in syntax sweetner require ''wx/accessors''
2006 Dec 13
1
0.0.38 tag and release
Hi I tagged 0.0.38 and started a release on rubyforge. I''ll do the doc packages & upload plus gems for OS X ppc and Linux; TIA for gems for Windows and OS X Intel - please upload whenever convenient. Once we have a set of binary gems, I suggest we do an announce to wxruby-users and c.l.r, inc explaining this is still alpha, summarising the new features, and that people should
2007 Jan 08
0
[844] trunk/wxruby2/swig/classes: Added IconBundle class for multi-resolution icons, cleaned comment cruft
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2007 Mar 12
0
[880] tags/wxruby2/0.0.39/: Tagged 0.0.39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding: