Re: DCD 0.5.0

2015-02-12 Thread Brian Schott via Digitalmars-d-announce
On Thursday, 12 February 2015 at 10:00:39 UTC, Russel Winder 
wrote:
Is it still OK to build from master/HEAD or would you prefer 
people to

stay with the tagged version release?


I create the tags mostly for people who want to use a stable
version. If this doesn't matter to you, then feel free to build
from master.


Re: DCD 0.5.0

2015-02-12 Thread Russel Winder via Digitalmars-d-announce
On Thu, 2015-02-12 at 00:22 +, Brian Schott via Digitalmars-d-announce 
wrote:
 Version 0.5.0 of DCD has been tagged on Github.
 
 https://github.com/Hackerpilot/DCD/releases/tag/v0.5.0
 
 DCD is a client/server program used to provide D code
 autocompletion for various text editors and IDEs.

Is it still OK to build from master/HEAD or would you prefer people to 
stay with the tagged version release?

-- 
Russel.
=
Dr Russel Winder  t: +44 20 7585 2200   voip: sip:russel.win...@ekiga.net
41 Buckmaster Roadm: +44 7770 465 077   xmpp: rus...@winder.org.uk
London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder


signature.asc
Description: This is a digitally signed message part


DCD 0.5.0

2015-02-11 Thread Brian Schott via Digitalmars-d-announce

Version 0.5.0 of DCD has been tagged on Github.

https://github.com/Hackerpilot/DCD/releases/tag/v0.5.0

DCD is a client/server program used to provide D code
autocompletion for various text editors and IDEs.


Re: DCD 0.5.0 beta

2015-02-07 Thread Baz via Digitalmars-d-announce

On Saturday, 31 January 2015 at 02:50:27 UTC, Brian Schott wrote:

https://github.com/Hackerpilot/DCD/tree/v0.5.0-beta3

Changes from 0.4.0:
* Include current git commit hash in --version output
* Update libdparse and msgpack dependencies
* Fix several crashes
* Remove Textadept module. It is now at 
https://github.com/Hackerpilot/textadept-d

* Added basic regression testing scripts
* Fix #117
* Fix #177
* Fix #179
* Fix #176
* Fix #178
* Fix #182
* Fix #184


Thx for the fix related to DDoc comments, this feature can be 
used correctly now.


DCD 0.5.0 beta

2015-01-30 Thread Brian Schott via Digitalmars-d-announce

https://github.com/Hackerpilot/DCD/tree/v0.5.0-beta3

Changes from 0.4.0:
* Include current git commit hash in --version output
* Update libdparse and msgpack dependencies
* Fix several crashes
* Remove Textadept module. It is now at 
https://github.com/Hackerpilot/textadept-d

* Added basic regression testing scripts
* Fix #117
* Fix #177
* Fix #179
* Fix #176
* Fix #178
* Fix #182
* Fix #184



Re: DCD 0.5.0 beta

2015-01-30 Thread Brian Schott via Digitalmars-d-announce
I guess I asked for this by leaving out the link to the issue 
tracker.


https://github.com/Hackerpilot/DCD/issues

Can you please file the issue there? I'm not able to reproduce 
this on Windows 7 64-bit.


Re: DCD 0.5.0 beta

2015-01-30 Thread Jussi Jumppanen via Digitalmars-d-announce
I'm not sure if this is a DCD bug or an issue with the DMD 
installer?


The DCD beta code compiled without issue.

But when I started the server I got this error:

  C:\Program Files\Zeusdcd-server.exe -iC:/dmd2/src/phobos
  [info ] Getting symbols for C:/dmd2/src/phobos\etc\c\curl.d
  ...
  [info ] Getting symbols for 
C:/dmd2/src/phobos\std\container\package.d
  [info ] Getting symbols for 
C:/dmd2/src/phobos\std\container\array.d
  [info ] Getting symbols for 
C:/dmd2/src/phobos\std\container\util.d

  [info ] Shutting down sockets...
  [info ] Sockets shut down.
  object.Error@(0): Access Violation

If I remove the C:/dmd2/src/phobos\std\container folder the server
starts fine:

  C:\Program Files\Zeusdcd-server.exe -iC:/dmd2/src/phobos
  [info ] Getting symbols for C:/dmd2/src/phobos\etc\c\curl.d
  ...
  [info ] Getting symbols for C:/dmd2/src/phobos\unittest.d
  [info ] Import directories: [C:/dmd2/src/phobos]
  [info ] 22153 symbols cached.
  [info ] Startup completed in 6677.97 milliseconds.

I was using the DMD v2.066.1 release installed using the zip file.