aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-20Update README, explaining how to use Dokka with Android and how to set ↵porokoro
custom source directories
2016-03-20Provide basic support for Android library projects and make the source ↵porokoro
directories configurable for the user
2016-02-18Add core.iml to VCS. Closes #53Dmitry Jemerov
2016-02-150.9.7Dmitry Jemerov
2016-02-15Add LICENSE. Closes #51Dmitry Jemerov
2016-02-15Dokka for Kotlin 1.0Dmitry Jemerov
2016-02-04update README to point to latest versionDmitry Jemerov
2016-02-040.9.6Dmitry Jemerov
2016-02-041.0.0-rc-1036Dmitry Jemerov
2016-02-02don't create node for Java package if all declarations in it have suppressed ↵Dmitry Jemerov
documentation
2016-02-02restore handling of @suppress tags in javadoc commentsDmitry Jemerov
2016-02-02always use forward slashes in pathsDmitry Jemerov
2016-02-02update for public RCDmitry Jemerov
2016-01-28put the most important information required to identify an element in the ↵Dmitry Jemerov
beginning of the page title
2016-01-28support uploading to EAP repositoryDmitry Jemerov
2016-01-25fix Maven buildDmitry Jemerov
2016-01-25update Gradle librariesDmitry Jemerov
2016-01-25reference EAP repository in build scriptDmitry Jemerov
2016-01-25update Dokka to internal RC: remove usages of kotlin.testDmitry Jemerov
2016-01-14fix resolve of @sample linksDmitry Jemerov
2016-01-13add all source roots as both Java and Kotlin source roots. Resolves #39Dmitry Jemerov
2016-01-12don't sort enum values alphabetically ↵Dmitry Jemerov
(https://github.com/Kotlin/dokka/issues/47)
2016-01-12don't generate index pages in testsDmitry Jemerov
2016-01-12generate all types indexDmitry Jemerov
2016-01-12generate signature-based anchors for overloads; use signature instead of ↵Dmitry Jemerov
name as an anchor for in-page links
2016-01-12fix compilation after mergeDmitry Jemerov
2016-01-12Merge remote-tracking branch 'origin/master'Dmitry Jemerov
# Conflicts: # dokka-gradle-plugin/src/main/kotlin/main.kt
2016-01-12Merge pull request #48 from ingokegel/masterDmitry Jemerov
@Suppress("NOT_DOCUMENTED"), fix for linking to targets with underscores, gradle plugin improvements
2016-01-12allow specifying JDK version to use for JDK linksDmitry Jemerov
2016-01-08link to JDK classes (KT-10452)Dmitry Jemerov
2016-01-08line breaks between parametersDmitry Jemerov
2016-01-08move some more logic into PageBuilder classDmitry Jemerov
2016-01-08support for formatting text into existing StringBuilderDmitry Jemerov
2016-01-08don't generate "Extensions for external classes" pages for classes which are ↵Dmitry Jemerov
part of the documented module but reside in another package
2016-01-08delete a bit of dead codeDmitry Jemerov
2016-01-08include extension function in the list of extensions for a class if the ↵Dmitry Jemerov
class is an upper bound of the receiver type parameter
2016-01-08rewrite propagation of extension functions to subclasses to handle shadowing ↵Dmitry Jemerov
and applicability more correctly
2016-01-06gradle plugin: up-to-date status did not consider include and sample filesingo
2016-01-06gradle plugin: The "includes" and "samples" properties now accept relative ↵ingo
file names and the list-typed properties are now more robust.
2016-01-06Linking to a target with underscores did not workingo
For example, in a link like [MY_VALUE], the link would only try to resolve the text "MY" until the first underscore. Since the markdown parser parses the link label as [TEXT:MY, EMPH:_, TEXT:VALUE], using the first TEXT child node is not sufficient.
2016-01-06Annotating functions or classes `@Suppress("NOT_DOCUMENTED")` will suppress ↵ingo
warnings about missing documentation
2016-01-06mavenLocal() in dependencies can mess up generated gradle libraries in ↵ingo
IntelliJ project
2016-01-05distinguish inherited companion object membersDmitry Jemerov
2016-01-05don't include companion object members inherited from Any in class documentationDmitry Jemerov
2016-01-05render multiple type parameter constraints according to current Kotlin syntaxDmitry Jemerov
2016-01-05always include type parameters in the signature of a typeDmitry Jemerov
2016-01-04separate groups for annotations and exceptions in the members listDmitry Jemerov
2016-01-04StructuredFormatService restructured so that it makes more sense: we're ↵Dmitry Jemerov
either generating a doc for a group of overloads (which have no members) or for a single node (where a list of members can be displayed)
2016-01-04cleanup: DocumentationNode.Kind -> NodeKind, DocumentationReference.Kind -> ↵Dmitry Jemerov
RefKind
2016-01-04kotlin-for-upsource 1.0-beta-5179; update the FQ name of annotation used to ↵Dmitry Jemerov
mark extension function types