2
When is the next official release?
Question asked by Neil S. - 4/3/2024 at 8:09 AM
Unanswered
It's been nearly 2 years since the last release of GhostDoc, there are a couple of things that I'm hoping have been resolved since the last version.
When is the next release coming?

6 Replies

Reply to Thread
0
Misha Zhutov Replied
Employee Post
Hi Neil, 

Yes, we are planning to release a new version this month.
0
Serge B. Replied
Employee Post
Hi Neil,

What are the things you were having and hoping to have been resolved?

Thanks!
Serge Baranovsky
SubMain Software
(800) 936-2134
0
Neil S. Replied
Documenting records properly was something that came up recently.

public record ThisIsARecord(int p1, string p2);
At the moment, p1 & p2 don't get documented.

0
Serge B. Replied
Employee Post
Yes, the record type is supported in the upcoming release - https://support.submain.com/kb/a76/whats-new-in-ghostdoc-v2024.aspx
Serge Baranovsky
SubMain Software
(800) 936-2134
0
Steve Jackson Replied
Sorry to jump in, as the above information does answer the primary question.  However I've been having some back and forth with support over some issues - found two more today :)

I've just submitted a bug regarding the parser collapsing over this kind of line (it does not like the or in the if statement):

try
{
    some code
}
catch (Exception exception)
{
    if (exception is OutOfMemoryException or ApplicationException) throw;

    log other error
}
But also the current version does not correctly template primary constructor classes - understandable as no such thing existed till recently.

By this I mean that it does not add the <param /> tags for primary constructors:

/// <summary>
/// Auto generated summary was here
/// </summary>
public class SomeDataService(
    ILogger<SomeDataService> logger,
    IDbContextFactory<DbContext> contextFactory)
{
}
I didn't notice anything specific in the link provided above regarding C#12 language features - are these already being/have been added or should I raise a separate bug for such issues?

Cheers

Steve
0
Misha Zhutov Replied
Employee Post
Hi Steve, 

We will answer you in the support forum where you submitted the problem.

Reply to Thread