Skip to content

Next #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 57 commits into from
Mar 7, 2024
Merged

Next #14

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
ac2abe3
schemas
JulienChampagnol Feb 2, 2024
31a0265
rename vtkw_server.py
JulienChampagnol Feb 2, 2024
aecdf1e
import schemas
JulienChampagnol Feb 2, 2024
bd661a8
unit tests
JulienChampagnol Feb 2, 2024
bd78c83
tests
JulienChampagnol Feb 5, 2024
11291b8
feat(unit tests): run server
JulienChampagnol Feb 6, 2024
f599345
class tests
JulienChampagnol Feb 7, 2024
5bb82c0
save create_object_pipeline fail
JulienChampagnol Feb 8, 2024
a3c104a
ENV variables
JulienChampagnol Feb 9, 2024
6013ae8
clean config
JulienChampagnol Feb 12, 2024
75c1ed4
fix some tests
JulienChampagnol Feb 12, 2024
99751e6
test_delete_object_pipeline
JulienChampagnol Feb 13, 2024
dcf7d15
os.mkdir(DATA_FOLDER_PATH)
JulienChampagnol Feb 14, 2024
b4fd9a7
dotenv
JulienChampagnol Feb 14, 2024
1922ae3
import json
SpliiT Feb 16, 2024
a40af27
dynamic args
JulienChampagnol Feb 21, 2024
ceefe04
rpc changes
SpliiT Feb 27, 2024
6088534
feat(schemas): test
SpliiT Feb 27, 2024
53dfa45
feat(schemas): test2
SpliiT Feb 27, 2024
6bacedb
route becomes rpc
JulienChampagnol Feb 27, 2024
c01871b
test
JulienChampagnol Feb 27, 2024
1f62048
schemas
JulienChampagnol Feb 27, 2024
da04546
updates json files
SpliiT Feb 27, 2024
415f263
updates json files
SpliiT Feb 27, 2024
9ce3c0c
added new path into the dockerfile
SpliiT Feb 27, 2024
e45df6a
shemas rpc's
SpliiT Feb 27, 2024
954d2c5
remove print
JulienChampagnol Feb 27, 2024
4da951a
fix schemas
JulienChampagnol Feb 27, 2024
ebd416b
fix(schemas): delete image docker
SpliiT Feb 28, 2024
1c878be
test
SpliiT Feb 29, 2024
e81296a
feat(schemas): remove dockerfile + a few changes
SpliiT Feb 29, 2024
8a9ddc2
edit generate_schemas
SpliiT Feb 29, 2024
ea38690
remove dockerignore
SpliiT Feb 29, 2024
f6e3414
move json imports
JulienChampagnol Feb 29, 2024
8d8a8d5
log
JulienChampagnol Feb 29, 2024
7268b09
tests
JulienChampagnol Feb 29, 2024
b980258
delete
JulienChampagnol Feb 29, 2024
07e9ed7
test_apply_textures working
JulienChampagnol Mar 4, 2024
b704167
Add datas
JulienChampagnol Mar 4, 2024
c244ca4
test_get_point_position
JulienChampagnol Mar 4, 2024
cd3b4a0
Merge pull request #12 from Geode-solutions/json_import_viewer
JulienChampagnol Mar 5, 2024
ea4cf8b
0.1.0-rc.1
invalid-email-address Mar 5, 2024
0e6316d
full from next
JulienChampagnol Mar 5, 2024
41e5ac1
cleanup
JulienChampagnol Mar 5, 2024
ddb87c6
delete penguin
JulienChampagnol Mar 5, 2024
212930c
remove unused datas
JulienChampagnol Mar 6, 2024
b2bbc8c
fix protocols self.render()
JulienChampagnol Mar 6, 2024
48e800f
Merge pull request #13 from Geode-solutions/feat/unit_tests
JulienChampagnol Mar 6, 2024
8426ea4
fix(dependencies): add forgotten dependencies
JulienChampagnol Mar 6, 2024
f27d64c
CC Attribution
JulienChampagnol Mar 6, 2024
bd25d0f
save
JulienChampagnol Mar 7, 2024
c75ef6f
remove log
JulienChampagnol Mar 7, 2024
94516bd
cleanup code
JulienChampagnol Mar 7, 2024
9721838
cleanup code 2
JulienChampagnol Mar 7, 2024
df57ea2
args
JulienChampagnol Mar 7, 2024
4be8888
Merge pull request #15 from Geode-solutions/fix/dependencies
JulienChampagnol Mar 7, 2024
1893dc3
0.1.0-rc.2
invalid-email-address Mar 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .dockerignore

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CD

on:
push:
branches: [master, next, json_import_viewer]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.TOKEN }}
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
id: semantic-release
with:
github_token: ${{ secrets.TOKEN }}
- name: Build
run: |
python3 -m pip install --upgrade build
python3 -m build
- name: Upload PYPI
if: steps.semantic-release.outputs.released == 'true'
run: |
python3 -m pip install twine
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
- name: Setup NODE
uses: actions/setup-node@v3
with:
registry-url: "https://registry.npmjs.org"
node-version: "20.x"
- name: Upload NPM
if: steps.semantic-release.outputs.released == 'true'
run: |
pwd
cd ${{ github.workspace }}
npm i
npm run json
jq '.version="${{steps.semantic-release.outputs.version}}"' package.json > temp && mv temp package.json
cat package.json
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Merge master -> next
if: github.ref == 'refs/heads/master'
uses: devmasx/merge-branch@master
with:
type: now
from_branch: master
target_branch: next
github_token: ${{ github.token }}
13 changes: 0 additions & 13 deletions .github/workflows/docker-images.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ env/
venv/
.vscode/
__pycache__/
.env
data/
/node_modules
latest_logs
schemas.json
6 changes: 6 additions & 0 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[distutils]
index-servers = pypi

[pypi]
username = __token__
password = <PyPI token>
210 changes: 210 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,210 @@
# CHANGELOG



## v0.1.0-rc.2 (2024-03-07)

### Fix

* fix(dependencies): add forgotten dependencies ([`8426ea4`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/8426ea49d0e5b97a42c37292b2e3c48afde27455))

### Unknown

* Merge pull request #15 from Geode-solutions/fix/dependencies

Fix/dependencies ([`4be8888`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/4be888818c48996ad5634306c43016c8bebec1ea))

* args ([`df57ea2`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/df57ea2431743c30acdec5a695488c9803a8f39e))

* cleanup code 2 ([`9721838`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/9721838b87944cd498851dd11c4664b4e0fa5b9a))

* cleanup code ([`94516bd`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/94516bdc2e92701531f04d3b04b94b34388c0506))

* remove log ([`c75ef6f`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/c75ef6f4ff183152eadaa6c6eb7700f126acb1f6))

* save ([`bd25d0f`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/bd25d0f1eea38f90f2728f6fbcb84de80e57fe21))

* CC Attribution ([`f27d64c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/f27d64cf63208bb67e67958d119c14ba883dd735))

* Merge pull request #13 from Geode-solutions/feat/unit_tests

Feat/unit tests ([`48e800f`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/48e800fdac30485df0a9a252be9aff6ff90bfa34))

* fix protocols self.render() ([`b2bbc8c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/b2bbc8c4d2a715d385b084cb4ba43212ef4e3ff4))

* remove unused datas ([`212930c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/212930c5dda15ef51a0f2fd8a8dc7f83391569a5))

* delete penguin ([`ddb87c6`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/ddb87c6971afe104855c92549a8331c2f4e39e1b))

* cleanup ([`41e5ac1`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/41e5ac11e16d3f1491a0f4ddd0425241221812cf))

* full from next ([`0e6316d`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/0e6316d136e3f167454802f938714959444aa67d))


## v0.1.0-rc.1 (2024-03-05)

### Chore

* chore(licence): happy new year 2024 ([`a69cefe`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/a69cefe053e43a170db48ea31bbc3619feb49bc6))

### Feature

* feat(schemas): remove dockerfile + a few changes ([`e81296a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/e81296af2510c975c1d98034f269a5c94e4b89f5))

* feat(schemas): test2 ([`53dfa45`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/53dfa45953b098f8ecda5d8773e37fe064b4e7e3))

* feat(schemas): test ([`6088534`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/6088534e990f44559575f2d4631bc731210e2243))

* feat(unit tests): run server ([`11291b8`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/11291b8e808e52e1f4e6d0ab11b739ffd1542ecb))

* feat(delete_object_pipeline): add rpc

Enables an object to be deleted from the viewer ([`5a4df6a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/5a4df6a5d20451491fe27d89886459d9a38f78cd))

### Fix

* fix(schemas): delete image docker ([`ebd416b`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/ebd416b5eceaecfce61d3c5e136cc3d6ed36184b))

* fix(license): add copyleft file ([`a0cfd33`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/a0cfd3335e0b12913947917b631b5e13889a9107))

### Unknown

* Merge pull request #12 from Geode-solutions/json_import_viewer

Json import viewer ([`cd3b4a0`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/cd3b4a0b8e564b81d15dafac82469c9b4ac974d3))

* test_get_point_position ([`c244ca4`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/c244ca461385d2ad212496cc4ca945ea98c45e96))

* Add datas ([`b704167`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/b70416763096d0b999a5b0c21ba93cc4c524f5f1))

* test_apply_textures working ([`07e9ed7`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/07e9ed736246ddf56907d7e6a40a2be3321ff548))

* delete ([`b980258`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/b9802586c302af7e1248eae71c78848193b8f2d6))

* tests ([`7268b09`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/7268b09f82d820402a7f7a6e8733bb402510aaad))

* log ([`8d8a8d5`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/8d8a8d55aabdfda90a88db160c00179b867652e8))

* move json imports ([`f6e3414`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/f6e3414687bb171f80561c04972c6210fecb830f))

* remove dockerignore ([`ea38690`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/ea386903ac824235764b36e5b38fcb299557ccc1))

* edit generate_schemas ([`8a9ddc2`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/8a9ddc2bca30d8ec58af76fa99c1823cb765c99d))

* test ([`1c878be`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/1c878be022ab96cffb7d146f38ffbd5241d264d2))

* fix schemas ([`4da951a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/4da951a4e1bc11ad3468cecfc00dda94d36f7428))

* remove print ([`954d2c5`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/954d2c53decbcc5cf3419d82263806e63f94357d))

* shemas rpc&#39;s ([`e45df6a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/e45df6a560a5a8d087f72ad6d1070ba003b8f665))

* added new path into the dockerfile ([`9ce3c0c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/9ce3c0cf5f3d143ed6fd10cf4815b80c834d2cfe))

* updates json files ([`415f263`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/415f2630ad2053b51e688b46c133c0e714b16698))

* updates json files ([`da04546`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/da0454656e505f52d3b3570fbb5eb3655baee3c7))

* schemas ([`1f62048`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/1f62048fe00335b7d34c298a09e0c0729b7f2cb2))

* test ([`c01871b`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/c01871b30b7916f057dd36d80a9fc1157611f07a))

* route becomes rpc ([`6bacedb`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/6bacedb228f2cda86a8ea093e82dcfb84558ca42))

* rpc changes ([`ceefe04`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/ceefe04853f4ce96ea7465065a27e0ea3b501758))

* dynamic args ([`a40af27`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/a40af270486d894677ea1cf14a6b4b58acaf6edb))

* import json ([`1922ae3`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/1922ae3887db7a2a4e8c52b7c6b3282c5932bfb2))

* dotenv ([`b4fd9a7`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/b4fd9a7f2a230589219e11af57354b67e1d18771))

* os.mkdir(DATA_FOLDER_PATH) ([`dcf7d15`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/dcf7d156310c4aacb2f186a7fe87bdbdf10da79a))

* test_delete_object_pipeline ([`99751e6`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/99751e6de5f75b164185d74a3c54e68aca83f2db))

* fix some tests ([`75c1ed4`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/75c1ed4d8192feb080586acf9ab3fe59c70cb07b))

* clean config ([`6013ae8`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/6013ae8014319a1c170051ee2c2ea574b6eb123f))

* ENV variables ([`a3c104a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/a3c104a5e209585791a84e92a8d9297788e1c201))

* save create_object_pipeline fail ([`5bb82c0`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/5bb82c02f74d7de349701d9ea7c468ca41067db2))

* class tests ([`f599345`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/f599345018e4aee08bc5a433a57cf47995c7b04a))

* tests ([`bd78c83`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/bd78c83ff6ffe10a9131a0f960b03505995d6781))

* unit tests ([`bd661a8`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/bd661a86445a1442e55e66eae5be7b8c7f2cb8fc))

* import schemas ([`aecdf1e`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/aecdf1e643ed8bf1b53eeb43dc894a9344d245be))

* rename vtkw_server.py ([`31a0265`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/31a0265c4b8786a0007bdf39a21f1d495e841703))

* schemas ([`ac2abe3`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/ac2abe3b392cf91200fe69c94d96cfd5f18e0dc0))

* Merge pull request #10 from Geode-solutions/next

Next ([`7fe2621`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/7fe2621e30cc9d38d3acf60cff61e16946be608f))

* Merge pull request #9 from Geode-solutions/chore/update_licence

Chore/update licence ([`6ab1ce7`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/6ab1ce7eb6c6234bb7a6f74567e90b4cb5190b9b))

* Merge pull request #7 from Geode-solutions/next

Next ([`708f7b0`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/708f7b092c8cac96893b38046ad20a26155c2ff9))

* Merge pull request #6 from Geode-solutions/feat_delete_object_pipeline

Feat delete object pipeline ([`364da90`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/364da90a845d1d7549ba748e521cc43f7c3a321d))

* revert .dockerignore ([`a4d4454`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/a4d4454d8cd4ffdabfd6d3fce4e48ae33772f5de))

* image_name: &#39;opengeodeweb-viewer&#39; ([`129f762`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/129f762db2bab2eabbf1c089835039208916a647))

* Merge pull request #5 from Geode-solutions/next

Next ([`5ee9742`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/5ee97423d576dd2c393fafe5b35726dce2568503))

* Merge pull request #4 from Geode-solutions/add_copyleft

fix(license): add copyleft file ([`8185c9d`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/8185c9d8ac096f2db6b44945b3b79ce6615a9c0b))

* Merge pull request #3 from Geode-solutions/next

Next ([`6f6d6c6`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/6f6d6c63ee268adb731291daa2eab434368d94c6))

* update data and attributes ([`dc1c26d`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/dc1c26d0d0b0990242ae7cc77a8e0484dc276860))

* no marker interaction ([`d1863ba`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/d1863ba610d29f0617c94ebce38419903ce46889))

* add marker ([`4bf740c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/4bf740ced3679b92e9299b3458d8d4befde0a9a2))

* add vertex attribute ([`11f0774`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/11f077451b7b6b7a42f95ca15b8d3d028d45de9e))

* Merge pull request #2 from Geode-solutions/fix/pipeline

composite mapper ([`30c3004`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/30c3004efadb48cb87e1990d34a11c91a6437613))

* composite mapper ([`7e7d79c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/7e7d79c1d8fd5b418f92fd641036ecbb65018426))

* update visibility ([`bf1652a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/bf1652a885dc6c0e605c3da11a84d28afef5cb36))

* removed CD ([`4877be8`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/4877be897a022889b4ba15d181a3b8090d70e9a4))

* Initialisation ([`eeb263c`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/eeb263c85bbdd99bb711557e017cdcde53371db0))

* Merge pull request #1 from Geode-solutions/Clemamolette-patch-1

Update Branch-protection.yml ([`fb00bc3`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/fb00bc33bfa7815f4e6ce40a7f152648c8ec4ac1))

* Update Branch-protection.yml ([`5225e0a`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/5225e0abb283c9216ab8504822eacb2692e5e6a5))

* add vtk_protocols ([`7dc827f`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/7dc827f186033a348e66da463b33dd41e54e48df))

* Add all ([`1cb965b`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/1cb965bf9ff1f7b99298f96ac189b4835ae11f64))

* add branch protection ([`8ef784e`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/8ef784eb4174bb449b084df2ae2a4b5e33ccacb2))

* Initial commit ([`8293eb6`](https://github.com/Geode-solutions/OpenGeodeWeb-Viewer/commit/8293eb6973493de95e9f718554b42728d8271a06))
1 change: 1 addition & 0 deletions COPYLEFT
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

VTK: BSD-3-Clause
Copyright (c) 2008-Present Ken Martin, Will Schroeder, Bill Lorensen.
CC Attribution 2014-present Borgen
11 changes: 0 additions & 11 deletions Dockerfile

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# OpenGeodeWeb-Viewer

OpenSource Python framework for remote visualisation
Loading