Re: Surprise - New Post on the GtkD Coding Blog

2021-09-04 Thread Mike Wey via Digitalmars-d-announce
learn about a new gtkD release? Anyway, on the long run, I guess covering GTK 4 will be very welcome. The GTK 4 version still needs work and isn't released yet. I currently don't have the time to work on it, but i hope i am able to resume working on it later this year. -- Mike Wey

Re: gtkDcoding Facelift Launch

2019-07-09 Thread Mike Wey via Digitalmars-d-announce
On 09-07-2019 11:53, Ron Tarrant wrote: Last week, gtkDcoding saw its 50th regularly-scheduled post. Today marks the launch of stage two of the facelift we've been working toward for the last month. The new features are: Looks great, and a big thanks for putting all the effort in. -- Mike

Re: GtkD 3.9.0, A GTK+ D binding.

2019-06-03 Thread Mike Wey via Digitalmars-d-announce
On 02-06-2019 22:19, Adam D. Ruppe wrote: On Wednesday, 29 May 2019 at 22:07:14 UTC, Mike Wey wrote: I was already using that I see you fixed that, but I introduced a regression with my public import thing. So for a while, I had modules with a single class just go straight to that class

Re: GtkD 3.9.0, A GTK+ D binding.

2019-05-30 Thread Mike Wey via Digitalmars-d-announce
On 30-05-2019 11:18, Ron Tarrant wrote: On Wednesday, 29 May 2019 at 20:30:03 UTC, Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. At this point it feels long overdue, but finally there is an GtkD release that is updated for the latest GTK

Re: GtkD 3.9.0, A GTK+ D binding.

2019-05-29 Thread Mike Wey via Digitalmars-d-announce
On 29-05-2019 23:37, Adam D. Ruppe wrote: On Wednesday, 29 May 2019 at 20:30:03 UTC, Mike Wey wrote: And i finally took the time to change the documentation on the website from candydoc to one generated by Adam's adrdox. https://api.gtkd.org A tip: when you generate the code with adrdox, use

Re: GtkD 3.9.0, A GTK+ D binding.

2019-05-29 Thread Mike Wey via Digitalmars-d-announce
On 29-05-2019 22:38, M.M. wrote: So cool! I guess it will be a lot of work to get the bindings and wrapper to the upcoming GTK 4... Hopefully the generator can handle most of it without intervention. -- Mike Wey

GtkD 3.9.0, A GTK+ D binding.

2019-05-29 Thread Mike Wey via Digitalmars-d-announce
to one generated by Adam's adrdox. https://api.gtkd.org Full changelog: https://gtkd.org/changelog.html Download: https://gtkd.org/download.html -- Mike Wey

Re: GtkD Blog Now Up and Running

2019-01-31 Thread Mike Wey via Digitalmars-d-announce
On 31-01-2019 21:33, Ron Tarrant wrote: On Wednesday, 30 January 2019 at 21:21:24 UTC, Mike Wey wrote: This is whats going on: https://issues.dlang.org/show_bug.cgi?id=15418 To work around this you can either build things with "--arch=x86mscoff" or tell dub not to build the deb

Re: GtkD Blog Now Up and Running

2019-01-30 Thread Mike Wey via Digitalmars-d-announce
is you can either build things with "--arch=x86mscoff" or tell dub not to build the debug version with "--build=plain". -- Mike Wey

Re: Blog post: What D got wrong

2018-12-18 Thread Mike Wey via Digitalmars-d-announce
they recorded the lightning talks as a single video, so you'll have to fast forward to my little bit. If you are only interested in the MeTV part, this is the start of that lighting talk: https://gstconf.ubicast.tv/permalink/v125ac3127116gnuo89h/#start=2561 -- Mike Wey

Re: Blog post: What D got wrong

2018-12-11 Thread Mike Wey via Digitalmars-d-announce
n't as bad as the example in the blog post, this also works: ``` range.map!(fun).filter!(gun).join; ``` -- Mike Wey

Re: Dub support was added to Meson

2018-08-08 Thread Mike Wey via Digitalmars-d-announce
to be merged so that support can be extended to the other compilers. So when using ldc or dmd you will currently have to call 'ninja clean && ninja' to compile everything. [1] https://github.com/dlang/dmd/pull/6961 -- Mike Wey

Re: GDB + ddemangle

2018-04-20 Thread Mike Wey via Digitalmars-d-announce
` -- Mike Wey

Re: Gtk-D API Documentation now on dpldocs.info

2018-03-08 Thread Mike Wey via Digitalmars-d-announce
/glib.html) seems to be broken / missing. -- Mike Wey

Re: Bootstrap D template

2018-02-01 Thread Mike Wey via Digitalmars-d-announce
t. https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html#Prerequisite-Types -- Mike Wey

Re: Blog post: using dynamic libraries in dub

2017-12-19 Thread Mike Wey via Digitalmars-d-announce
would make sense to relay on the packages supplied by your distribution. And just list "gtkd-3" in the "libs" section. Avoiding the need for the workaround to build a shared version. -- Mike Wey

GtkD 3.7.0 released, GTK+ with D.

2017-10-15 Thread Mike Wey via Digitalmars-d-announce
/Downloads/sources/GtkD-3.7.0.zip -- Mike Wey

Re: Go Your Own Way (Part One: The Stack)

2017-07-07 Thread Mike Wey via Digitalmars-d-announce
for version DigitalMars and GNU. -- Mike Wey

Re: GtkD 3.5.0, GTK+ with D.

2017-01-07 Thread Mike Wey via Digitalmars-d-announce
On 01/07/2017 02:46 PM, Joakim wrote: On Saturday, 7 January 2017 at 11:06:14 UTC, Mike Wey wrote: On 01/07/2017 08:24 AM, Joakim wrote: Hey Mike, any interest in providing a library for Android? You can try out my ldc cross-compiler for Android: https://github.com/joakim-noah/android

Re: GtkD 3.5.0, GTK+ with D.

2017-01-07 Thread Mike Wey via Digitalmars-d-announce
builds the size difference is smaller, and the best results are with ldc. (-O -release + strip) With ldc the HelloWorld demo is just 2.4MB (2.2MiB) a 0.2MB increase from the previous release. For the library itself this is a bit more with a 30% increase in size. -- Mike Wey

Re: GtkD 3.5.0, GTK+ with D.

2017-01-07 Thread Mike Wey via Digitalmars-d-announce
On 01/07/2017 08:24 AM, Joakim wrote: Hey Mike, any interest in providing a library for Android? You can try out my ldc cross-compiler for Android: https://github.com/joakim-noah/android/releases There would first need to be a GTK version for Android. -- Mike Wey

GtkD 3.5.0, GTK+ with D.

2017-01-06 Thread Mike Wey via Digitalmars-d-announce
/Downloads/sources/GtkD-3.5.0.zip -- Mike Wey

GtkD 3.3.0 released, GTK+ with D.

2016-03-23 Thread Mike Wey via Digitalmars-d-announce
GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. A new version of GTK was released today, and with that comes a new GtkD release so you can use the new features in D. GtkD 3.3.0 is now available on gtkd.org: http://gtkd.org/download.html -- Mike Wey

Re: Terminix 0.51.0 Released

2016-02-28 Thread Mike Wey via Digitalmars-d-announce
in development using GtkD since this might be useful as a real world GtkD program that exercises a significant percentage of the GTK API. Also, if anyone wants to contribute to the effort I'm always looking for help. Terminix can be found here: https://github.com/gnunn1/terminix Great work. -- Mike

Re: GtkD 3.1.0 released, GTK+ with D.

2015-04-19 Thread Mike Wey via Digitalmars-d-announce
On 04/19/2015 02:07 PM, Steve Teale wrote: On Thursday, 26 March 2015 at 22:41:01 UTC, Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. Shortly after the last release, GtkD has been updated for GTK+ 3.16. GtkD 3.1.0 is now available on gtkd.org

Re: GtkD 3.1.0 released, GTK+ with D.

2015-04-10 Thread Mike Wey via Digitalmars-d-announce
On 04/10/2015 12:54 PM, stewarth wrote: On Thursday, 26 March 2015 at 22:41:01 UTC, Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. Shortly after the last release, GtkD has been updated for GTK+ 3.16. GtkD 3.1.0 is now available on gtkd.org

Re: GtkD 3.1.0 released, GTK+ with D.

2015-04-10 Thread Mike Wey via Digitalmars-d-announce
On 04/10/2015 11:34 PM, Mike Wey wrote: On 04/10/2015 12:54 PM, stewarth wrote: On Thursday, 26 March 2015 at 22:41:01 UTC, Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. Shortly after the last release, GtkD has been updated for GTK+ 3.16

Re: GtkD 3.1.0 released, GTK+ with D.

2015-03-29 Thread Mike Wey via Digitalmars-d-announce
On 03/28/2015 08:31 PM, captaindet wrote: On 2015-03-27 16:47, Mike Wey wrote: On 03/27/2015 10:27 PM, captaindet wrote: On 2015-03-26 17:41, Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. Shortly after the last release, GtkD has been updated

Re: GtkD 3.1.0 released, GTK+ with D.

2015-03-27 Thread Mike Wey via Digitalmars-d-announce
On 03/27/2015 10:27 PM, captaindet wrote: On 2015-03-26 17:41, Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. Shortly after the last release, GtkD has been updated for GTK+ 3.16. GtkD 3.1.0 is now available on gtkd.org: http://gtkd.org

Re: GtkD 3.0-beta

2015-03-10 Thread Mike Wey via Digitalmars-d-announce
)' failed any idea how to fix this? cheers, det The CRITICAL errors could be due to changes in the ObjectG memory handling. -- Mike Wey

Re: GtkD 3.0-beta

2015-03-09 Thread Mike Wey via Digitalmars-d-announce
, but you can't use any of the features added in later releases. I don't know a download location for 3.14 for Windows. -- Mike Wey

Re: GtkD 3.0-beta

2015-03-08 Thread Mike Wey via Digitalmars-d-announce
On 03/08/2015 09:08 PM, =?UTF-8?B?IlRow6lv?= Bueno\ mun...@gmx.com\ wrote: On Saturday, 7 March 2015 at 21:14:36 UTC, Mike Wey wrote: I'm glad to announce the first GtkD release that makes use of the new gir based generator. Yeah, thank you for maintaining Gtkd. It is by far the best GUI

GtkD 3.0-beta

2015-03-07 Thread Mike Wey via Digitalmars-d-announce
an list of the breaking changes on the wiki: https://github.com/gtkd-developers/GtkD/wiki/GtkD-2-vs-GtkD-3 Download: http://gtkd.org/Downloads/sources/GtkD-3.0.0-beta.zip -- Mike Wey

GtkD 2.3.0 released, GTK+ with D.

2013-10-07 Thread Mike Wey
is now available on gtkd.org: http://gtkd.org/download.html -- Mike Wey

Re: Arch Linux D news digest

2013-08-26 Thread Mike Wey
, libraries and documentation are included in the regular package. -- Mike Wey

Re: GtkD 2.2 released, GTK+ with D.

2013-05-16 Thread Mike Wey
? Regards, Mike. From the error it looks like the demo was build with an older version of GtkD, while linking with the new one. -- Mike Wey

GtkD 2.2 released, GTK+ with D.

2013-05-15 Thread Mike Wey
by videnews / vibed. -- Mike Wey

GtkD 2.1 released, GTK+ with D.

2012-12-03 Thread Mike Wey
on linux the library file names are post fixed with the major version number so they can be installed side by side. GtkD 2.1 and 1.7 are now available on GitHub: https://github.com/gtkd-developers/GtkD/downloads -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-10-12 Thread Mike Wey
to override this, when set GtkD searches for the dlls in that directory, and only that directory. So GTK_BASEPATH doesn't need to be set but when is it set, it does need to point to the correct location, some old Gtk+ 2.x installers used to set the GTK_BASEPATH variable. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-10-12 Thread Mike Wey
On 10/12/2012 04:15 PM, Jordi Sayol wrote: Al 12/10/12 15:38, En/na Andrej Mitrovic ha escrit: Anyway it's not too shabby. It's great that we have a multiplatform library that's up to date. Thanks GtkD devs! You can say it in singular. There is only one active dev in GtkD project. Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-10-06 Thread Mike Wey
:\Documents\GitHub\GtkD\srcdgen.exe Fatal Error: Out of memory Even though Task Manager shows only negligible increase in memory. I seems that dmd runs out of memory when using the -lib switch with GtkD. I've updated the script posted on the wiki. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-10-04 Thread Mike Wey
release, And a library build with one D compiler cant be used with any of the other compilers. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-10-04 Thread Mike Wey
:\Documents\GitHub\GtkD\srcdgen.exe Fatal Error: Out of memory Even though Task Manager shows only negligible increase in memory. I'll check and see if i can find out whats going on here in the weekend. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-09-27 Thread Mike Wey
On 09/26/2012 08:49 PM, Mike James wrote: Mike Wey wrote in message news:k2isv4$2r67$1...@digitalmars.com... GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. With 2.0 GtkD will wrap Gtk+ version 3, if you need Gtk+ 2 you can use the latest version from the Gtk2

Re: D 1.076 Alpha for Windows 64 bits, works with VS 2010

2012-09-27 Thread Mike Wey
On 09/27/2012 01:56 PM, bearophile wrote: Walter Bright: http://ftp.digitalmars.com/dmd1beta.zip How do I switch from producing a 32 bit to 64 binary? I am looking for a -b64 or -b32 or similar switch... Bye, bearophile -m32 and -m64 ? i'ts what dmd uses on linux. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-09-10 Thread Mike Wey
On 09/10/2012 09:28 AM, Andrea Fontana wrote: Maybe this wikipedia page is out of date: http://en.wikipedia.org/wiki/GTK%2B Yes, it is. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-09-10 Thread Mike Wey
misunderstood though, I don't know. There are some css extensions to access the windows theming API, but i don't know how far that go's. -- Mike Wey

Re: GtkD 2.0 released, Gtk+ 3 with D.

2012-09-10 Thread Mike Wey
now. BTW: Will we get nicer documentation? Not any time soon. -- Mike Wey

Re: DMagick image processing with D.

2012-04-09 Thread Mike Wey
6.7.6, DMD64 and CentOS) It's a bug. -- Mike Wey

Re: Template makefile for your D project

2011-12-11 Thread Mike Wey
was reported for the GtkD MakeFile, See: http://www.dsource.org/projects/gtkd/ticket/90 -- Mike Wey

Re: DMagick image processing with D.

2011-11-04 Thread Mike Wey
it more generic and to avoid buffer reallocations in the code. If you put your project on github I could make a pull, otherwise we can use your webby. https://github.com/MikeWey/DMagick -- Mike Wey

Re: DMagick image processing with D.

2011-11-04 Thread Mike Wey
also work on older Windows versions. -- Mike Wey

Re: DMagick image processing with D.

2011-11-03 Thread Mike Wey
a couple of fixes to the library, so I'm distributing it with the samples. I've merged in the the fixes you added. I see that you have removed the shared static this from Image.d, is initializing ImageMagick unnecessary on Windows? I've never tested without initializing though. -- Mike Wey

Re: DMagick image processing with D.

2011-11-03 Thread Mike Wey
On 11/03/2011 02:31 AM, Andrej Mitrovic wrote: It would be easier not having to register on a custom website just to issue reports. But anyway this line triggers a runtime exception: I've thought about moving to Github, maybe i should finally look take the time to set things up. -- Mike Wey

Re: DMagick image processing with D.

2011-11-03 Thread Mike Wey
adding it to DMagick, so that every windows user can display images easily. -- Mike Wey

DMagick image processing with D.

2011-11-02 Thread Mike Wey
here: http://code.mikewey.eu/p/DMagick/ Downloads: http://code.mikewey.eu/p/DMagick/downloads/ Documentation: http://dmagick.mikewey.eu/docs/ -- Mike Wey

Re: GtkD 1.5 is released.

2011-09-01 Thread Mike Wey
, Mike. The import path for gstreamer is missing from the build file for bud/build. http://www.dsource.org/projects/gtkd/changeset/892 -- Mike Wey

Re: GtkD 1.5 is released.

2011-08-28 Thread Mike Wey
On 08/28/2011 02:29 PM, Anders F Björklund wrote: Mike Wey wrote: GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. ... GtkD 1.4 is now available, get it from dsource: http://www.dsource.org/projects/gtkd/ Should probably say 1.5, rather than 1.4/1.4.1

GtkD 1.5 is released.

2011-08-27 Thread Mike Wey
of the bindings, including 64bits support. GtkD 1.4 is now available, get it from dsource: http://www.dsource.org/projects/gtkd/ -- Mike Wey

Re: GtkD 1.5 is released.

2011-08-27 Thread Mike Wey
= readLine(file); } } } -- Mike Wey

Re: GtkD 1,4 released.

2011-03-29 Thread Mike Wey
should take care of the resources, altough there is still room for improvement. -- Mike Wey

Re: GtkD 1,4 released.

2011-03-29 Thread Mike Wey
On 03/29/2011 01:30 AM, dsimcha wrote: On 3/28/2011 3:58 PM, Mike Wey wrote: Long overdue but finally here, the release of GtkD 1.4. GtkD is a D binding and OO wrapper of Gtk+ and is released on the LGPL license. New in this Release: * wraps GTK+ 2.20.x series api (and relative libraries

Re: GtkD 1,4 released.

2011-03-29 Thread Mike Wey
On 03/29/2011 05:37 PM, Andrei Alexandrescu wrote: On 03/29/2011 01:13 AM, Andrei Alexandrescu wrote: On 03/29/2011 12:47 AM, Andrei Alexandrescu wrote: On 3/28/11 11:47 PM, David Bryant wrote: On 29/03/11 06:28, Mike Wey wrote: Long overdue but finally here, the release of GtkD 1.4. GtkD

GtkD 1,4 released.

2011-03-28 Thread Mike Wey
it from dsource: http://www.dsource.org/projects/gtkd/ -- Mike Wey

GtkD 1.2 is out.

2009-05-02 Thread Mike Wey
-osx.org/) by default, if you must use the X11 version build GtkD with -version=darwinX11 GtkD 1.2 is now available, get it from dsource: http://www.dsource.org/projects/gtkd/ -- Mike Wey