FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

GtkD 1.2
Goto page 1, 2, 3  Next
 
Post new topic   Reply to topic     Forum Index -> gtkD
View previous topic :: View next topic  
Author Message
okibi



Joined: 04 Jan 2007
Posts: 170

PostPosted: Tue Apr 14, 2009 5:14 am    Post subject: GtkD 1.2 Reply with quote

GtkD 1.2 is just around the corner! The 1.2 release corrects a few issues present in the 1.1 release. GtkD 1.2 is also now wrapping the latest GTK+ 2.16.x api.

Let's all give a big hand to Mike Wey for all his hard work on the latest versions of GtkD! Thanks Mike!
Back to top
View user's profile Send private message
dragzhb



Joined: 09 Apr 2009
Posts: 1

PostPosted: Mon Apr 20, 2009 9:22 am    Post subject: Reply with quote

very good,thank gtkD team.
Back to top
View user's profile Send private message
samsam698



Joined: 10 Jan 2008
Posts: 63

PostPosted: Wed Apr 22, 2009 10:21 pm    Post subject: Reply with quote

Hello,

Just wanna know whether phobos 2.029 is supported by the latest gtkD1.2.

Thanks and best regards,
Sam
Back to top
View user's profile Send private message
okibi



Joined: 04 Jan 2007
Posts: 170

PostPosted: Thu Apr 23, 2009 3:43 am    Post subject: Reply with quote

GtkD is not yet released, however it will work with D/Phobos 2.029.

The latest in SVN will mostly work with it.
Back to top
View user's profile Send private message
okibi



Joined: 04 Jan 2007
Posts: 170

PostPosted: Fri May 01, 2009 3:15 pm    Post subject: Reply with quote

GtkD 1.2 has now been officially released! Get it on the project page!
Back to top
View user's profile Send private message
samsam698



Joined: 10 Jan 2008
Posts: 63

PostPosted: Fri May 15, 2009 8:42 pm    Post subject: Reply with quote

okibi wrote:
GtkD is not yet released, however it will work with D/Phobos 2.029.

The latest in SVN will mostly work with it.


Hello,

Just wanna double check which version newest of phobos gtkD1.2 support.Thank you very much.

Best Regards,
Sam
Back to top
View user's profile Send private message
samsam698



Joined: 10 Jan 2008
Posts: 63

PostPosted: Fri May 15, 2009 8:42 pm    Post subject: Reply with quote

okibi wrote:
GtkD is not yet released, however it will work with D/Phobos 2.029.

The latest in SVN will mostly work with it.


Hello,

Just wanna double check which version newest of phobos gtkD1.2 support.Thank you very much.

Best Regards,
Sam
Back to top
View user's profile Send private message
Mike Wey



Joined: 07 May 2007
Posts: 428

PostPosted: Sat May 16, 2009 3:41 am    Post subject: Reply with quote

I've tested it with the version that comes with dmd 2.029. and with 2.023.
Back to top
View user's profile Send private message
okibi



Joined: 04 Jan 2007
Posts: 170

PostPosted: Sat May 16, 2009 6:44 am    Post subject: Reply with quote

Yes GtkD 1.2 works with D 2.029 just fine.
Back to top
View user's profile Send private message
samsam698



Joined: 10 Jan 2008
Posts: 63

PostPosted: Sun May 17, 2009 6:45 am    Post subject: Reply with quote

okibi wrote:
Yes GtkD 1.2 works with D 2.029 just fine.


Sorry again.Then which version of DSSS should be fine to build.It says that DSSS.78 is broken in D2.As I tested in DMD2029+DSSS0.78+gtkD1.2+ gtd+-2.16.1-1.exe under winXP:
Environment configured for DMD2028/Phobos

E:\DLang\DTwo\gtkD>dsss build
undemofy

Creating imports for DD-atk

Creating imports for DD-cairo

Creating imports for DD-gdk

Creating imports for DD-gdkpixbuf

Creating imports for DD-gio

Creating imports for DD-glade

Creating imports for DD-glib

Creating imports for DD-gobject

Creating imports for DD-gthread

Creating imports for DD-gtk

Creating imports for DD-gtkc

Creating imports for DD-pango

atk => DD-atk
gobject\ObjectG.d(86): module gc cannot read file 'std\gc.d'
Command E:\DLang\DTwo\dsss\bin\rebuild.exe returned with code 1, aborting.
Error: Command failed, aborting.

E:\DLang\DTwo\gtkD>
Back to top
View user's profile Send private message
Mike Wey



Joined: 07 May 2007
Posts: 428

PostPosted: Sun May 17, 2009 9:28 am    Post subject: Reply with quote

To use dsss with dmd 2.x add:
Code:
version=D_Version2

to the dsss profile you are using.

When trying this myself i noticed that GtkD + D2 needs a few changes on windows, ill try to add these to svn tonight.
Back to top
View user's profile Send private message
Mike Wey



Joined: 07 May 2007
Posts: 428

PostPosted: Sun May 17, 2009 12:11 pm    Post subject: Reply with quote

svn r681 builds with dmd 2.029 on Windows.
Back to top
View user's profile Send private message
samsam698



Joined: 10 Jan 2008
Posts: 63

PostPosted: Sun May 17, 2009 8:20 pm    Post subject: Reply with quote

Mike Wey wrote:
svn r681 builds with dmd 2.029 on Windows.


I just tested.Great!!

While all the other GUI libs seems almost die recently,gtkD is still active and support the latest DMD,wow!!!

Thank you sir!

Regards,
Sam
Back to top
View user's profile Send private message
glennh



Joined: 08 May 2009
Posts: 7

PostPosted: Fri May 29, 2009 8:38 am    Post subject: Tested on linux with dmd 2.030 Reply with quote

I built gtkD-1.2 on debian linux with dmd 2.030 using the GNUmakefile. Three files required the addition of explicit cast(void*) to function arguments. After that, the build completed without any reported errors. I was also able to open and run TestWindow successfully.

The affected files:

src/glib/FileUtils.d:149 (arg: cast(void*)stream)
src/glib/Str.d:603 (arg: cast(void*)file)
src/pango/PgMiscellaneous.d:136 (arg: cast(void*)stream)

If you like, I can supply a diff for these minor changes.

I appreciate the extensive work and the generosity of all who have made this library available.
Back to top
View user's profile Send private message
Mike Wey



Joined: 07 May 2007
Posts: 428

PostPosted: Fri May 29, 2009 1:24 pm    Post subject: Reply with quote

added in svn r683.

Witch compiler/version are you using?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic     Forum Index -> gtkD All times are GMT - 6 Hours
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group