Skip to content

Commit c6258e7

Browse files
authored
Merge pull request #71 from mipt-npm/dev
0.2.0
2 parents 456e01f + db5064f commit c6258e7

File tree

290 files changed

+22704
-4029
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+22704
-4029
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Gradle build
2+
3+
on:
4+
push:
5+
branches: [ dev, master ]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
timeout-minutes: 40
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Set up JDK 11
15+
uses: actions/setup-java@v2.5.0
16+
with:
17+
java-version: 11
18+
distribution: liberica
19+
- name: execute build
20+
uses: gradle/gradle-build-action@v2
21+
with:
22+
arguments: build

.github/workflows/gradle.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/pages.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Dokka publication
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
timeout-minutes: 40
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up JDK 11
14+
uses: actions/setup-java@v2.5.0
15+
with:
16+
java-version: 11
17+
distribution: liberica
18+
- name: execute build
19+
uses: gradle/gradle-build-action@v2
20+
with:
21+
arguments: dokkaHtmlMultiModule
22+
- uses: JamesIves/github-pages-deploy-action@4.1.0
23+
with:
24+
branch: gh-pages
25+
folder: build/dokka/htmlMultiModule

.github/workflows/publish.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Gradle publish
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [ created ]
7+
8+
jobs:
9+
publish:
10+
environment:
11+
name: publish
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up JDK 11
16+
uses: actions/setup-java@v2.5.0
17+
with:
18+
java-version: 11
19+
distribution: liberica
20+
- name: execute build
21+
uses: gradle/gradle-build-action@v2
22+
- name: Publish
23+
shell: bash
24+
run: >
25+
./gradlew release --no-daemon --build-cache -Ppublishing.enabled=true
26+
-Ppublishing.space.user=${{ secrets.SPACE_APP_ID }}
27+
-Ppublishing.space.token=${{ secrets.SPACE_APP_SECRET }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
out/
55
.gradle
66
build/
7+
data/
78

89
!gradle-wrapper.jar

.space.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
job("Build") {
2+
gradlew("openjdk:11", "build")
3+
}
4+

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,29 @@
22

33
## [Unreleased]
44
### Added
5+
6+
### Changed
7+
8+
### Deprecated
9+
10+
### Removed
11+
12+
### Fixed
13+
14+
### Security
15+
16+
## [0.2.0]
17+
### Added
518
- Server module
619
- Change collector
720
- Customizable accessors for colors
821
- SphereLayer solid
922
- Hexagon interface and GenericHexagon implementation (Box inherits Hexagon)
1023
- Increased the default detail level for spheres and cones to 32
1124
- Simple clipping for Solids in ThreeJs
25+
- Markdown module
26+
- Tables module
27+
1228

1329
### Changed
1430
- Vision does not implement ItemProvider anymore. Property changes are done via `getProperty`/`setProperty` and `property` delegate.
@@ -25,12 +41,16 @@
2541
- Property listeners are not triggered if there are no changes.
2642
- Feedback websocket connection in the client.
2743

44+
2845
### Deprecated
2946

3047
### Removed
3148
- Primary modules dependencies on UI
3249

50+
3351
### Fixed
3452
- Version conflicts
3553

54+
3655
### Security
56+

0 commit comments

Comments
 (0)