February 22, 2014
Thanks for the hard work, Sönke & other DUB contributors. Also, thanks to those who take the time to create DUB packages for their software.

DUB is a large factor in my consistent usage of the D programming language.
February 22, 2014
Am 22.02.2014 13:07, schrieb Sönke Ludwig:
> Am 22.02.2014 12:24, schrieb Paulo Pinto:
>> Am 22.02.2014 10:44, schrieb Sönke Ludwig:
>>
>> The Windows installer seems not to like being installed via UAC as the
>> Administrator gets the PATH configured, not the user that started the
>> installer.
>>
>> --
>> Paulo
>
> Going by the installer script, it should install to the global PATH
> (HKEY_LOCAL_MACHINE) variable, not to the user's (or Adminstrator's)
> one. Are you sure that the latter is the case for you?
>
> There is also a ticket to enable per-user installation from unprivileged
> accounts. I'll try to look into that topic, too, for the next release
> (need to read up on the proper NSIS options/plugins).

Yes, this is how it looks like for my standard user.

Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. Alle Rechte vorbehalten.

PS C:\Users\Alterego> $env:path.split(';')
%SystemRoot%\system32\WindowsPowerShell\v1.0\
C:\Program Files (x86)\PC Connectivity Solution\
C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common
C:\Program Files\Common Files\Microsoft Shared\Windows Live
C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live
C:\Windows\system32
C:\Windows
C:\Windows\System32\Wbem
C:\Windows\System32\WindowsPowerShell\v1.0\
C:\Program Files (x86)\Common Files\DivX Shared\
C:\CUDA\bin
C:\Program Files (x86)\Common Files\Teleca Shared
C:\Program Files\Microsoft Windows Performance Toolkit\
C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\
C:\Program Files\Microsoft SQL Server\100\Tools\Binn\
C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
C:\Program Files\SlikSvn\bin
C:\Program Files (x86)\Windows Live\Shared
C:\Program Files (x86)\GtkSharp\2.12\bin
C:\Program Files (x86)\Calibre2\
C:\cygwin\bin
C:\Program Files (x86)\QuickTime\QTSystem\
C:\dmd\dmd2\windows\bin
C:\dmd\dm\bin


And this is for the Administrator, you will notice dub at the end.



Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. Alle Rechte vorbehalten.

PS C:\Windows\system32> $env:path.split(';')
C:\Windows\system32\WindowsPowerShell\v1.0\
C:\Program Files (x86)\PC Connectivity Solution\
C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common
C:\Program Files\Common Files\Microsoft Shared\Windows Live
C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live
C:\Windows\system32
C:\Windows
C:\Windows\System32\Wbem
C:\Windows\System32\WindowsPowerShell\v1.0\
C:\Program Files (x86)\Common Files\DivX Shared\
C:\CUDA\bin
C:\Program Files (x86)\Common Files\Teleca Shared
C:\Program Files\Microsoft Windows Performance Toolkit\
C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\
C:\Program Files\Microsoft SQL Server\100\Tools\Binn\
C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
C:\Program Files\SlikSvn\bin
C:\Program Files (x86)\Windows Live\Shared
C:\Program Files (x86)\GtkSharp\2.12\bin
C:\Program Files (x86)\Calibre2\
C:\cygwin\bin
C:\Program Files (x86)\QuickTime\QTSystem\
C:\dmd\dmd2\windows\bin
C:\dmd\dm\bin
C:\Program Files (x86)\dub
February 22, 2014
Am 22.02.2014 13:49, schrieb extrawurst:
> On Saturday, 22 February 2014 at 12:07:39 UTC, Sönke Ludwig wrote:
>> Am 22.02.2014 12:24, schrieb Paulo Pinto:
>>> Am 22.02.2014 10:44, schrieb Sönke Ludwig:
>>>
>>> The Windows installer seems not to like being installed via UAC as the
>>> Administrator gets the PATH configured, not the user that started the
>>> installer.
>>>
>>> --
>>> Paulo
>>
>> Going by the installer script, it should install to the global PATH
>> (HKEY_LOCAL_MACHINE) variable, not to the user's (or Adminstrator's)
>> one. Are you sure that the latter is the case for you?
>>
>> There is also a ticket to enable per-user installation from
>> unprivileged accounts. I'll try to look into that topic, too, for the
>> next release (need to read up on the proper NSIS options/plugins).
>
> Just installed on my win7 machine without problems, on win8 on the other
> hand authorization was required... strange

What is the default UAC level on your system? By default it is one notch below authentication for any kind of change.

I always configure it for full authentication no matter what.

--
Paulo

February 23, 2014
Am 22.02.2014 13:07, schrieb Sönke Ludwig:
> Am 22.02.2014 12:24, schrieb Paulo Pinto:
>> Am 22.02.2014 10:44, schrieb Sönke Ludwig:
>>
>> The Windows installer seems not to like being installed via UAC as the
>> Administrator gets the PATH configured, not the user that started the
>> installer.
>>
>> --
>> Paulo
>
> Going by the installer script, it should install to the global PATH
> (HKEY_LOCAL_MACHINE) variable, not to the user's (or Adminstrator's)
> one. Are you sure that the latter is the case for you?
>
> There is also a ticket to enable per-user installation from unprivileged
> accounts. I'll try to look into that topic, too, for the next release
> (need to read up on the proper NSIS options/plugins).

Forget my previous post. Apparently it required a reboot to update the user's environment.

Thanks again for the good work.

--
Paulo
February 26, 2014
On Saturday, 22 February 2014 at 09:44:48 UTC, Sönke Ludwig wrote:
> A new final release is ready. This one took a bit longer and has more changes than usual:
>

After updating, to 0.9.21 "dub generate visuald" no longer generates "release" and "unittest"configurations for VisualD - only "debug" is available. I downgraded to 0.9.20 to make sure and indeed this version generates VisualD projects correctly (with all 3 configurations)
February 26, 2014
On Wednesday, 26 February 2014 at 09:48:36 UTC, Szymon Gatner wrote:
> On Saturday, 22 February 2014 at 09:44:48 UTC, Sönke Ludwig wrote:
>> A new final release is ready. This one took a bit longer and has more changes than usual:
>>
>
> After updating, to 0.9.21 "dub generate visuald" no longer generates "release" and "unittest"configurations for VisualD - only "debug" is available. I downgraded to 0.9.20 to make sure and indeed this version generates VisualD projects correctly (with all 3 configurations)

I whish visualD would support loading dub.json natively just like mono-d does
1 2
Next ›   Last »