December 16, 2012
On Saturday, 15 December 2012 at 18:48:27 UTC, David wrote:
>
> I'd really like to try it :(
> But Windows, meh, only used for compilation.

hmm. looks like i need to do 1.6 branch, so at least old version would be available on linux and everyone would happy again o_O


p.s. thanks to all you guys, this discussion is really helps me with direction on what to fix or what to do.
December 24, 2012
Are you working on a "stable" port (1.6) by any chances?
December 24, 2012
Am 25.12.2012 00:08, schrieb David:
> Are you working on a "stable" port (1.6) by any chances?
> 

Oh wow, I just found out there is an capi, impressive. I never tried it because I thought there was no C-Api...

Still any plans of making D bindings, otherwise I might do it.
December 25, 2012
On Monday, 24 December 2012 at 23:17:08 UTC, David wrote:
> Am 25.12.2012 00:08, schrieb David:
>> Are you working on a "stable" port (1.6) by any chances?
>> 
>
> Oh wow, I just found out there is an capi, impressive. I never tried it
> because I thought there was no C-Api...
>
> Still any plans of making D bindings, otherwise I might do it.

1.6 planned go in parallel with 1.7 when all(well, most) of it's(1.7) features would receive their first implementation. i'm already done with most of the webview callbacks stuff(though i don't tested it much), so the rest is the input passing and some support class interfaces, then i would have to do testing and documentation.

so i'm think i start 1.6 branch this weekend. it also must be much simpler to do, because it has less features, and it has own C API, but it was designed to use for C++ compiler interop.

i need take a look at 1.6 again, can't remember what it has and what's not, and what remains the same in 1.7
December 25, 2012
trying to get xcode project, all fine but i just can't do that damn dylib to work with awesomium.framework within another bundle. either is i am stupid or xcode is really pita to work with.

just losing time...
December 25, 2012
Am 25.12.2012 13:43, schrieb evilrat:
> trying to get xcode project, all fine but i just can't do that damn dylib to work with awesomium.framework within another bundle. either is i am stupid or xcode is really pita to work with.
> 
> just losing time...

I just compiled a awesomium 1.6.5 test app successfully, so let's get to D bindings!
December 25, 2012
Am 25.12.2012 13:46, schrieb David:
> Am 25.12.2012 13:43, schrieb evilrat:
>> trying to get xcode project, all fine but i just can't do that damn dylib to work with awesomium.framework within another bundle. either is i am stupid or xcode is really pita to work with.
>>
>> just losing time...
> 
> I just compiled a awesomium 1.6.5 test app successfully, so let's get to D bindings!
> 

Here are the bindings: 0% tested

https://github.com/Dav1dde/awesomium
December 25, 2012
On Tuesday, 25 December 2012 at 13:57:28 UTC, David wrote:
> Am 25.12.2012 13:46, schrieb David:
>> Am 25.12.2012 13:43, schrieb evilrat:
>>> trying to get xcode project, all fine but i just can't do that damn
>>> dylib to work with awesomium.framework within another bundle. either is
>>> i am stupid or xcode is really pita to work with.
>>>
>>> just losing time...
>> 
>> I just compiled a awesomium 1.6.5 test app successfully, so let's get to
>> D bindings!
>> 
>
> Here are the bindings: 0% tested
>
> https://github.com/Dav1dde/awesomium

i've just created empty 1.6 branch, i'll join later this week.
December 25, 2012
Am 25.12.2012 15:04, schrieb evilrat:
> On Tuesday, 25 December 2012 at 13:57:28 UTC, David wrote:
>> Am 25.12.2012 13:46, schrieb David:
>>> Am 25.12.2012 13:43, schrieb evilrat:
>>>> trying to get xcode project, all fine but i just can't do that damn dylib to work with awesomium.framework within another bundle. either is i am stupid or xcode is really pita to work with.
>>>>
>>>> just losing time...
>>>
>>> I just compiled a awesomium 1.6.5 test app successfully, so let's get to D bindings!
>>>
>>
>> Here are the bindings: 0% tested
>>
>> https://github.com/Dav1dde/awesomium
> 
> i've just created empty 1.6 branch, i'll join later this week.

Oh wow it works!

─[dav1d@ArchBox][~/workspaces/d/awesomium_test]╼ dmd -I../awesomium -L-L. -L-lawesomium-1.6.5 short.d

─[dav1d@ArchBox][~/workspaces/d/awesomium_test]╼ LD_LIBRARY_PATH=. ./short


https://gist.github.com/4373754

that is amzing!
December 26, 2012
On Tuesday, 25 December 2012 at 15:35:02 UTC, David wrote:
>
> Oh wow it works!
>
> ─[dav1d@ArchBox][~/workspaces/d/awesomium_test]╼ dmd -I../awesomium
> -L-L. -L-lawesomium-1.6.5 short.d
>
> ─[dav1d@ArchBox][~/workspaces/d/awesomium_test]╼ LD_LIBRARY_PATH=. ./short
>
>
> https://gist.github.com/4373754
>
> that is amzing!

yeah cool, but we need a OOP wrapper too that mimics C++ API, thats what i'm going to do ;)