September 16, 2011
On 2011-09-16 02:13, Sam Hu wrote:
> Is there a latest update which can get compiled under dmd2.055 under Windows?Thanks.

I have not tested yet if it builds with dmd 2.055. Currently there isn't much developing going on with DWT. I will begin developing on DWT again, eventually.

-- 
/Jacob Carlborg
September 16, 2011
16.09.2011 3:13, Sam Hu пишет:
> Is there a latest update which can get compiled under dmd2.055 under Windows?Thanks.

It compiles with dmd 2.055. So what's the problem?
September 16, 2011
On 2011-09-16 10:57, Denis Shelomovskij wrote:
> 16.09.2011 3:13, Sam Hu пишет:
>> Is there a latest update which can get compiled under dmd2.055 under
>> Windows?Thanks.
>
> It compiles with dmd 2.055. So what's the problem?

That's good to know, thanks.

-- 
/Jacob Carlborg
September 29, 2011
DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053 DMD2.054 DMD2.055, Because of .length  type is ulong on 64Bit system.
September 29, 2011
On 2011-09-29 09:55, raojm wrote:
> DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053 DMD2.054
> DMD2.055, Because of .length  type is ulong on 64Bit system.

Only 32bit platforms are ported in DWT. It does not work on 64bit platforms.

-- 
/Jacob Carlborg
October 03, 2011
Jacob Carlborg Wrote:

> On 2011-09-29 09:55, raojm wrote:
> > DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053 DMD2.054 DMD2.055, Because of .length  type is ulong on 64Bit system.
> 
> Only 32bit platforms are ported in DWT. It does not work on 64bit platforms.
> 
> -- 
> /Jacob Carlborg
May I ask where the latest package is?Thanks.

October 03, 2011
On 2011-10-03 04:29, Sam Hu wrote:
> Jacob Carlborg Wrote:
>
>> On 2011-09-29 09:55, raojm wrote:
>>> DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053 DMD2.054
>>> DMD2.055, Because of .length  type is ulong on 64Bit system.
>>
>> Only 32bit platforms are ported in DWT. It does not work on 64bit platforms.
>>
>> --
>> /Jacob Carlborg
> May I ask where the latest package is?Thanks.
>

There are no pre-compiled packages.

Source code: http://hg.dsource.org/projects/dwt2
Project page: http://www.dsource.org/projects/dwt

-- 
/Jacob Carlborg
October 07, 2011
Jacob Carlborg Wrote:

> On 2011-10-03 04:29, Sam Hu wrote:
> > Jacob Carlborg Wrote:
> >
> >> On 2011-09-29 09:55, raojm wrote:
> >>> DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053 DMD2.054 DMD2.055, Because of .length  type is ulong on 64Bit system.
> >>
> >> Only 32bit platforms are ported in DWT. It does not work on 64bit platforms.
> >>
> >> --
> >> /Jacob Carlborg
> > May I ask where the latest package is?Thanks.
> >
> 
> There are no pre-compiled packages.
> 
> Source code: http://hg.dsource.org/projects/dwt2
> Project page: http://www.dsource.org/projects/dwt
> 
> -- 
> /Jacob Carlborg
Thanks.Then is there any way to support utf8 characters in Text widget,say Chinese characters?
October 07, 2011
On 2011-10-07 04:52, Sam Hu wrote:
> Jacob Carlborg Wrote:
>
>> On 2011-10-03 04:29, Sam Hu wrote:
>>> Jacob Carlborg Wrote:
>>>
>>>> On 2011-09-29 09:55, raojm wrote:
>>>>> DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053 DMD2.054
>>>>> DMD2.055, Because of .length  type is ulong on 64Bit system.
>>>>
>>>> Only 32bit platforms are ported in DWT. It does not work on 64bit platforms.
>>>>
>>>> --
>>>> /Jacob Carlborg
>>> May I ask where the latest package is?Thanks.
>>>
>>
>> There are no pre-compiled packages.
>>
>> Source code: http://hg.dsource.org/projects/dwt2
>> Project page: http://www.dsource.org/projects/dwt
>>
>> --
>> /Jacob Carlborg
> Thanks.Then is there any way to support utf8 characters in Text widget,say Chinese characters?

It should work. I've tested UTF8 characters outside the ASCII table but not Chinese characters. If it doesn't work please file a bug at: http://www.dsource.org/projects/dwt/newticket

-- 
/Jacob Carlborg
October 08, 2011
07.10.2011 9:19, Jacob Carlborg пишет:
> On 2011-10-07 04:52, Sam Hu wrote:
>> Jacob Carlborg Wrote:
>>
>>> On 2011-10-03 04:29, Sam Hu wrote:
>>>> Jacob Carlborg Wrote:
>>>>
>>>>> On 2011-09-29 09:55, raojm wrote:
>>>>>> DWT2 cannot compile right on 64Bit Linux Or Windows with DMD2.053
>>>>>> DMD2.054
>>>>>> DMD2.055, Because of .length type is ulong on 64Bit system.
>>>>>
>>>>> Only 32bit platforms are ported in DWT. It does not work on 64bit
>>>>> platforms.
>>>>>
>>>>> --
>>>>> /Jacob Carlborg
>>>> May I ask where the latest package is?Thanks.
>>>>
>>>
>>> There are no pre-compiled packages.
>>>
>>> Source code: http://hg.dsource.org/projects/dwt2
>>> Project page: http://www.dsource.org/projects/dwt
>>>
>>> --
>>> /Jacob Carlborg
>> Thanks.Then is there any way to support utf8 characters in Text
>> widget,say Chinese characters?
>
> It should work. I've tested UTF8 characters outside the ASCII table but
> not Chinese characters. If it doesn't work please file a bug at:
> http://www.dsource.org/projects/dwt/newticket
>

About win32 version:
widgets.Text doesn't support UTF-8 (I have added two FIXME notes in it's source, and it was at first glance). Use widgets.StyledText instead.

Linux version:
Still unstable. I haven't tested it yet.