June 25, 2014
How about the DGui's status?
June 25, 2014
On Wednesday, 25 June 2014 at 15:16:03 UTC, FrankLike wrote:
> How about the DGui's status?

https://bitbucket.org/dgui/dgui/issues
June 26, 2014
On Wednesday, 25 June 2014 at 17:32:06 UTC, Gary Willoughby wrote:
> On Wednesday, 25 June 2014 at 15:16:03 UTC, FrankLike wrote:
>> How about the DGui's status?
>
> https://bitbucket.org/dgui/dgui/issues

#1to#5,those were built by me.
June 26, 2014
On Thursday, 26 June 2014 at 15:24:17 UTC, FrankLike wrote:
> On Wednesday, 25 June 2014 at 17:32:06 UTC, Gary Willoughby wrote:
>> On Wednesday, 25 June 2014 at 15:16:03 UTC, FrankLike wrote:
>>> How about the DGui's status?
>>
>> https://bitbucket.org/dgui/dgui/issues
>
> #1to#5,those were built by me.

Well done.
June 26, 2014
On Tuesday, 20 May 2014 at 07:20:16 UTC, Denis Shelomovskij wrote:
> DGui is a lightweight graphic library for Windows with API close to .NET's Windows Forms.
>
> The library is written by Trogu Antonio Davide, but he isn't supporting it any longer so you can refer me as a current project manager.
>
> One can get examples and OMF import libraries needed to build executables from "Downloads" section on project page.
>
> Project repo page:
> https://bitbucket.org/dgui/dgui/
>
>
> Note:
>
> The project API should be stable now, but lots of stylistic renames happened recently so if one has a huge codebase using old names and want to upgrade to current version you can contact me and I will prepare autorenaming scripts for you (I used it to do renaming anyway).
>
> Sorry for API breakage, I just couldn't see all those C-style uppercased enums any more.
>
>
> P.S.
>
> I was waiting to be able to do planned API breaking changes before posting here so the announce is half a year later than the project resurrection date.
Hello DGUI team.

My name is Cassio butrico and am new to the "D" language.

I would like to congratulate the great job they have done.
I have studied the codes every day, and realized that some
conversions are not performed by the compiler.

I'm just passing some notifications that would have
analyzed for the team. They are:

============================================
                      \dgui\filebrowserdialog.d
============================================

71 |        if(res)
72 |          {
73 |              this._dlgRes = to!(string)(toUTF8(buffer).ptr);
74 |         }

===============  change to  ===================

71 |        if(res)
72 |          {
73 |             string  namefile;
74 |             foreach(i,c; buffer)
75 |                {
76 |                    if(c != '\0')
77 |                     {
78 |                        namefile ~=  to!string(buffer[i]) ;
79 |                     }
80 |               }
81 |               this._dlgRes = namefile;
82 |           }

============================================
              \dgui\core\dialogs\commondialog.d
============================================

31 |          @property public T2 result()
32 |           {
33 |               return this._dlgRes;
34 |           }

===============  change to  ===================

31 |          @property public T2 result()
32 |           {
33 |               auto autostrFile = this._dlgRes;
34 |               return autostrFile;
35 |            }

============================================

I thank the attention.

July 23, 2014
 How about the DGui's status?

July 23, 2014
On Wednesday, 23 July 2014 at 11:40:01 UTC, FrankLike wrote:
>  How about the DGui's status?

https://bitbucket.org/dgui/dgui/issues
July 23, 2014
On Wednesday, 23 July 2014 at 12:58:46 UTC, Gary Willoughby wrote:
> On Wednesday, 23 July 2014 at 11:40:01 UTC, FrankLike wrote:
>> How about the DGui's status?
>
> https://bitbucket.org/dgui/dgui/issues

déjà vu
October 12, 2014
Hello,Denis Shelomovskij.
How about the DGui's new status?

October 12, 2014
On Sunday, 12 October 2014 at 13:23:33 UTC, Frank Like wrote:
> Hello,Denis Shelomovskij.
> How about the DGui's new status?

You can see all activity here:

https://bitbucket.org/dgui/dgui/