GNUstep apps segfault on AMD64

2008-06-20 Thread Tim Schmielau
I have two quad core 64 bit Xeon machines with SLES 10 sharing the same home directory where a fresh GNUstep installation (startup 0.20.0), gcc-4.2.4 and libffi libraries reside. On one of the machines, GNUstep runs fine, on the other one every GNUstep application I've tried so far segfaults. Fo

Re: GNUstep apps segfault on AMD64 (solved!)

2008-06-28 Thread Tim Schmielau
On 22 Jun 2008, at 20:03, Richard Frith-Macdonald wrote: On 20 Jun 2008, at 23:50, Gregory John Casamento wrote: I used SuSE for a while and had a similar issue. I thought that, by now, SuSE would have resolved it's 64 bit issues, but I see that's not the case. *sighs* GNUstep works fine

Re: Colour Corruption on remote X11 with different endians

2008-08-17 Thread Tim Schmielau
I've wondered for a long time why I always get red text as blue and sometimes also black text as blue. I never realized it could be due to endianness differences. I use the same combination as you, GNUstep on x64 (-64), X server on PPC, art backend. Tim On 16 Aug 2008, at 22:39, David Chis

Nib loading

2010-03-30 Thread Tim Schmielau
I've got an application that I develop both under Cocoa and GNUstep. Since converting the Cocoa .nib to a .gorm file didn't seem to work for more complex cases, I've maintained separate .nib and .gorm file for quite a while. With the recent activities, I thought it's a good time to retry whether I

is there a git or mercurial repository of GNUstep?

2010-04-15 Thread Tim Schmielau
I might start looking into the GNUstep code base more closely. However, I find it really annoying having to work with svn and/or ViewVC. Does anyone maintain a public clone of the GNUstep svn repository in git or mercurial? If not, is there any old clone that one could update? Now I don't want

Re: is there a git or mercurial repository of GNUstep?

2010-04-15 Thread Tim Schmielau
On 15 Apr 2010, at 11:20, Lucas Schnorr wrote: > You can use git-svn for that: > $ git svn clone gnustep_svn_url > > I takes time to re-create the history in the first time, but once that > is finished, you have the benefits of git. Yes. I just wanted to avoid the load this places on the gna ser

Re: is there a git or mercurial repository of GNUstep?

2010-04-15 Thread Tim Schmielau
On 15 Apr 2010, at 14:31, Andrew Ruder wrote: > I have a multiple-syncs-a-day git repository of several of the GNUstep > projects. I can add more if you want, but here is what I have now. > The nice thing about what I have is that Jeff Teunissen took the time > to do all of the mappings of svn na

Re: open recent in renaissance?

2010-05-11 Thread Tim Schmielau
What exactly made it working? My own application (not based on NSDocument) never had open recent working, although the exactly same code works with Cocoa. Tim On 11 May 2010, at 09:45, David Wetzel wrote: > Hi, > > it works now, it was the plist. > > David > > ___

Re: open recent in renaissance?

2010-05-13 Thread Tim Schmielau
t; > Hi, > > the app is currently developed on snow leopard, but it should work on GS too. > If your app works on OSX, you should debug why it does not on GS and file a > bug report :-) > > Cheers, > > Dave > > Am 11.05.2010 um 03:06 schrieb Tim Schmielau: &

Re: open recent in renaissance?

2010-05-13 Thread Tim Schmielau
On 13 May 2010, at 19:26, Wolfgang Lux wrote: > Tim Schmielau wrote: > >> Now I just have to figure out how to make those menu entries send openFile: >> messages... > > You don't want to do that. The menu is managed by NSDocumentController, so > assuming t

Re: open recent in renaissance?

2010-05-14 Thread Tim Schmielau
On 14 May 2010, at 08:48, Wolfgang Lux wrote: > Tim Schmielau wrote: > >> It works flawlessly on OS X. > > And hopefully now does so on GNUstep as well. Indeed it works flawlessly under GNUstep as well now. Thank you Wolfgang! Tim _

Connections in Gorm

2011-05-06 Thread Tim Schmielau
Hi, I am currently trying to recreate a XIB file in Gorm, since importing more complex NIB or XIB files does not yet seem to work (thanks however for starting to implement these!). One thing however is driving me mad: I can't figure out where control-dragged connections will end up. I draw a c

Re: Connections in Gorm

2011-05-06 Thread Tim Schmielau
On 6 May 2011, at 12:17, Tim Schmielau wrote: > I am currently trying to recreate a XIB file in Gorm, since importing more > complex NIB or XIB files does not yet seem to work (thanks however for > starting to implement these!). > > One thing however is driving me mad: I can

group/ungroup in Gorm

2011-05-06 Thread Tim Schmielau
Hi again, so in my adventure to actually use Gorm again after a long while I've come across the next issue: I've used the helpful Edit/Group/In View command to put a number of (optional) controls into a subview that can be shown and hidden on demand. All this is working nicely, and required on

Re: group/ungroup in Gorm

2011-05-06 Thread Tim Schmielau
On 6 May 2011, at 18:30, Banlu Kemiyatorn wrote: > On Fri, May 6, 2011 at 10:55 PM, Tim Schmielau wrote: > >> So is the only available option going back to my last backup, and recreate >> all steps from there? That would probably keep me from using this feature >> ag

Re: group/ungroup in Gorm

2011-05-06 Thread Tim Schmielau
i.e. how the element responds to > clicks) that it would select the NSButton instance. > > The alternative is to better document this behavior so that it doesn't > confuse so many people. But it would be nice if it could do this > since it's more natural. > > Later, GC

Re: Graphics Rounding (was Re: Pixel-aligned autoresizing)

2011-07-11 Thread Tim Schmielau
On 11 Jul 2011, at 08:23, Riccardo Mottola wrote: > To my knowledge, rint() doesn't do any advanced rounding. It doesn't try to > minimize the error by rounding odd numbers down and even up or something like > that, it uses a standard round direction. 16.5 will become 17 as 17.5 will > become

autoresizing in the case of negative flexible space (was Re: Pixel-aligned autoresizing)

2011-07-22 Thread Tim Schmielau
On 8 Jul 2011, at 22:56, Eric Wasylishen wrote: > > > On 2011-07-08, at 2:27 AM, Fred Kiefer wrote: > >> On 08.07.2011 09:34, Eric Wasylishen wrote: >>> Ok, great! I committed a slightly improved version of my rounding patch, >>> and now both tests pass. >>> >>> It looks like switching to the

Re: autoresizing in the case of negative flexible space (was Re: Pixel-aligned autoresizing)

2011-07-23 Thread Tim Schmielau
Thanks! On 23 Jul 2011, at 14:44, Fred Kiefer wrote: > > Thank you, I committed your change. > > On 22.07.2011 21:27, Tim Schmielau wrote: >> >> Hi Eric and Fred, >> >> thanks for the great work you are doing! I'd like to suggest a little chang