Skip to content

Releases: dlang-community/DCD

v0.6.0

04 May 21:53

Choose a tag to compare

https://github.com/Hackerpilot/DCD/issues?q=milestone%3A0.6.0+is%3Aclosed

This release contains several bug fixes and one new feature: function call tips can be displayed after commas within argument lists.

v0.5.1: Objectively disoriented

26 Feb 06:56

Choose a tag to compare

v0.5.1 contains several bug fixes for autocompletion involving classes.

  • #195: Display call tips for super
  • #196: Autocompletion on super doesn't work
  • #197: DCD shows invalid constructor call tips

v0.5.0

11 Feb 23:01

Choose a tag to compare

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 #178
  • Fix #179
  • Fix #176
  • Fix #182
  • Fix #184
  • Modify makefile to allow parallel LDC builds
  • Containers and Libdparse submodule updates
  • Improve handling of command line arguments in the client
  • Fix type deduction on 'auto' variables.
  • Update libdparse to fix issue where ddoc did not display on declarations that started with version(...)
  • Fix issue with autocompletion on foreach loop variables.

v0.5.0-beta5

07 Feb 08:48

Choose a tag to compare

v0.5.0-beta5 Pre-release
Pre-release
  • Update libdparse to fix issue where ddoc did not display on declarations that started with version(...)
  • Fix issue with autocompletion on foreach loop variables.

v0.5.0-beta4

06 Feb 22:12

Choose a tag to compare

v0.5.0-beta4 Pre-release
Pre-release

Changes since beta 3:

  • Modify makefile to allow parallel LDC builds
  • Containers and Libdparse submodule updates
  • Improve handling of command line arguments in the client
  • Fix type deduction on 'auto' variables.

v0.5.0-beta3

31 Jan 02:26

Choose a tag to compare

v0.5.0-beta3 Pre-release
Pre-release

v0.5.0-beta2

30 Jan 22:46

Choose a tag to compare

v0.5.0-beta2 Pre-release
Pre-release

Pull some lexer bug fixes from libdparse.

v0.5.0-beta

30 Jan 09:05

Choose a tag to compare

v0.5.0-beta Pre-release
Pre-release

v0.4.0

14 Nov 08:28

Choose a tag to compare

Changes from 0.4.0-beta2:

  • Fix autocomplete on explicit template instantiation. For example, function call tips are now properly displayed for all four versions of "templated" in this code:

    int templated(T)(int i)
    {
        return 100;
    }
    
    void main(string[] args)
    {
        templated();
        templated!(string)();
        templated!string();
        templated!"str"();
    }
  • Update libdparse dependency to fix various parsing bugs.

  • Fix building with LDC

v0.4.0-beta2

22 Sep 21:09

Choose a tag to compare

v0.4.0-beta2 Pre-release
Pre-release

Very minor changes:

  • Add --version to both the client and server
  • Update man pages
  • Update README
  • Update --help output for client and server