Update docs

This commit is contained in:
Alexander Nozik 2024-06-06 09:30:30 +03:00
parent a2b3157c8a
commit 3446a88b46
20 changed files with 96 additions and 40 deletions

View File

@ -3,11 +3,8 @@
## Unreleased
### Added
- Moved plotly-kt repo inside this one
### Changed
- Kotlin 2.0
- DataForge 0.9
### Deprecated
@ -17,6 +14,17 @@
### Security
## 0.4.2 - 2024-06-06
### Added
- Moved plotly-kt repo inside this one
### Changed
- Kotlin 2.0
- DataForge 0.9
## 0.4.1 - 2024-03-15
### Changed

View File

@ -70,6 +70,10 @@ To learn more about DataForge, please consult the following URLs:
>
> **Maturity**: EXPERIMENTAL
### [plotly](plotly)
>
> **Maturity**: EXPERIMENTAL
### [visionforge-compose-html](visionforge-compose-html)
>
> **Maturity**: EXPERIMENTAL
@ -143,6 +147,26 @@ To learn more about DataForge, please consult the following URLs:
>
> **Maturity**: EXPERIMENTAL
### [plotly/examples](plotly/examples)
>
> **Maturity**: EXPERIMENTAL
### [plotly/plotlykt-core](plotly/plotlykt-core)
>
> **Maturity**: DEVELOPMENT
### [plotly/plotlykt-jupyter](plotly/plotlykt-jupyter)
>
> **Maturity**: EXPERIMENTAL
### [plotly/plotlykt-script](plotly/plotlykt-script)
>
> **Maturity**: EXPERIMENTAL
### [plotly/plotlykt-server](plotly/plotlykt-server)
>
> **Maturity**: EXPERIMENTAL
### [visionforge-jupyter/visionforge-jupyter-common](visionforge-jupyter/visionforge-jupyter-common)
> Jupyter api artifact including all common modules
>
@ -152,6 +176,22 @@ To learn more about DataForge, please consult the following URLs:
>
> **Maturity**: EXPERIMENTAL
### [plotly/examples/compose-demo](plotly/examples/compose-demo)
>
> **Maturity**: EXPERIMENTAL
### [plotly/examples/fx-demo](plotly/examples/fx-demo)
>
> **Maturity**: EXPERIMENTAL
### [plotly/examples/js-demo](plotly/examples/js-demo)
>
> **Maturity**: EXPERIMENTAL
### [plotly/examples/native-demo](plotly/examples/native-demo)
>
> **Maturity**: EXPERIMENTAL
**Class diagram:**

View File

@ -9,18 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
- Plotly moved on top of VisionForge (in the VisionForge repository)
- Geo module merged into core
### Deprecated
### Removed
- Own HtmlFragment replaced by VisionForge Html handling
### Fixed
### Security
## 0.7.2 - 2024-06-06
### Changed
- Plotly moved on top of VisionForge (in the VisionForge repository)
- Geo module merged into core
### Removed
- Own HtmlFragment replaced by VisionForge Html handling
## 0.7.1 - 2024-02-22
### Added

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:plotlykt-core:0.7.1`.
The Maven coordinates of this project are `space.kscience:plotlykt-core:0.7.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:plotlykt-core:0.7.1")
implementation("space.kscience:plotlykt-core:0.7.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:plotlykt-jupyter:0.7.1`.
The Maven coordinates of this project are `space.kscience:plotlykt-jupyter:0.7.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:plotlykt-jupyter:0.7.1")
implementation("space.kscience:plotlykt-jupyter:0.7.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:plotlykt-script:0.7.1`.
The Maven coordinates of this project are `space.kscience:plotlykt-script:0.7.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:plotlykt-script:0.7.1")
implementation("space.kscience:plotlykt-script:0.7.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:plotlykt-server:0.7.1`.
The Maven coordinates of this project are `space.kscience:plotlykt-server:0.7.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:plotlykt-server:0.7.1")
implementation("space.kscience:plotlykt-server:0.7.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-compose-html:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-compose-html:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-compose-html:0.4.1")
implementation("space.kscience:visionforge-compose-html:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-compose-multiplatform:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-compose-multiplatform:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-compose-multiplatform:0.4.1")
implementation("space.kscience:visionforge-compose-multiplatform:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-core:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-core:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-core:0.4.1")
implementation("space.kscience:visionforge-core:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-gdml:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-gdml:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-gdml:0.4.1")
implementation("space.kscience:visionforge-gdml:0.4.2")
}
```

View File

@ -6,7 +6,7 @@ Common visionforge jupyter module
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-jupyter:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-jupyter:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-jupyter:0.4.1")
implementation("space.kscience:visionforge-jupyter:0.4.2")
}
```

View File

@ -6,7 +6,7 @@ Jupyter api artifact including all common modules
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-jupyter-common:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-jupyter-common:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-jupyter-common:0.4.1")
implementation("space.kscience:visionforge-jupyter-common:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-markdown:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-markdown:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-markdown:0.4.1")
implementation("space.kscience:visionforge-markdown:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-plotly:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-plotly:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-plotly:0.4.1")
implementation("space.kscience:visionforge-plotly:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-server:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-server:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-server:0.4.1")
implementation("space.kscience:visionforge-server:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-solid:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-solid:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-solid:0.4.1")
implementation("space.kscience:visionforge-solid:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-tables:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-tables:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-tables:0.4.1")
implementation("space.kscience:visionforge-tables:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-threejs:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-threejs:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-threejs:0.4.1")
implementation("space.kscience:visionforge-threejs:0.4.2")
}
```

View File

@ -6,7 +6,7 @@
## Artifact:
The Maven coordinates of this project are `space.kscience:visionforge-threejs-server:0.4.1`.
The Maven coordinates of this project are `space.kscience:visionforge-threejs-server:0.4.2`.
**Gradle Kotlin DSL:**
```kotlin
@ -16,6 +16,6 @@ repositories {
}
dependencies {
implementation("space.kscience:visionforge-threejs-server:0.4.1")
implementation("space.kscience:visionforge-threejs-server:0.4.2")
}
```