Skip to content

Commit

Permalink
Merge pull request #16 from divital-coder/master
Browse files Browse the repository at this point in the history
Migration of the package from Rocket's actor subscription mechanism for state management to julia's Base.Channel model.
  • Loading branch information
jakubMitura14 authored Jul 1, 2024
2 parents 6248866 + 25b21eb commit f7d8959
Show file tree
Hide file tree
Showing 32 changed files with 1,528 additions and 2,145 deletions.
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"python.pythonPath": "/home/jakub/.julia/conda/3/bin/python",
"scm.inputFontSize": 10,
"editor.fontSize": 12,
"editor.codeLensFontSize": 12
}
"editor.codeLensFontSize": 12,
"julia.executablePath": "D:/mingw_installation/home/hurtbadly/julia-1.10.4/bin/julia.exe"
}
Empty file removed Manifest.toml
Empty file.
12 changes: 3 additions & 9 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,12 @@ GLFW = "f7f18e0c-5ee9-5ccd-a5bf-e8befd85ed98"
GeometryTypes = "4d00f742-c7ba-57c2-abde-4428a4b178cb"
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
Match = "7eb4fadd-790c-5f42-8a69-bfa0b872bfbf"
MedEval3D = "07fe485e-7252-451c-a484-d20a4cdbbf79"
ModernGL = "66fc600b-dfda-50eb-8b99-91cfa97b1301"
Observables = "510215fc-4207-5dde-b226-833fc4488ee2"
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
Rocket = "df971d30-c9d6-4b37-b8ff-e965b2cb3a40"
Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
MedEval3D = "07fe485e-7252-451c-a484-d20a4cdbbf79"


[compat]
ColorTypes = ">=0.11.4"
Expand All @@ -36,13 +33,10 @@ FreeType = ">=4.1.0"
FreeTypeAbstraction = ">=0.10.0"
GLFW = ">=3.4.1"
GeometryTypes = ">=0.8.5"
Match = "2.0.0"
HDF5 = ">=0.17.1"
ModernGL = ">=1.1.5"
Observables = ">=0.5.4"
Parameters = ">=0.12.3"
Rocket = ">=1.7.2"
Setfield = "0.2.0, 0.5.4,0.8.0 ,0.7.1, 1.0.0, 1.1.1"
HDF5 = ">=0.17.1"
StaticArrays = ">=1.5.0"
MedEval3D = ">=0.2.0"
julia = ">=1.9"
julia = ">=1.9"
137 changes: 72 additions & 65 deletions docs/src/index.md

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions docs/src/loadExampleData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,8 @@ function f()
end

for i in 1:200
@spawn :interactive f()
#@spawn :interactive
f()
end
a

Expand All @@ -551,4 +552,4 @@ a


# apt install -y ubuntu-release-upgrader-core
# do-release-upgrade -d
# do-release-upgrade -d
109 changes: 0 additions & 109 deletions docs/src/test_script.jl

This file was deleted.

122 changes: 0 additions & 122 deletions docs/src/test_script_itk.jl

This file was deleted.

Empty file removed md
Empty file.
Loading

0 comments on commit f7d8959

Please sign in to comment.