Skip to content

Commit da1ae1b

Browse files
authored
[ci skip] Version/doc update (#106)
1 parent f52a441 commit da1ae1b

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The latest code is always available from the [`master`](https://github.com/doyub
1414
* Level set-based liquid simulator
1515
* PIC, FLIP, and APIC fluid simulators
1616
* Upwind, ENO, and FMM level set solvers
17+
* Jacobi, Gauss-Seidel, SOR, MG, CG, ICCG, and MGPCG linear system solvers
1718
* Converters between signed distance function and triangular mesh
1819
* C++ and Python API
1920

@@ -25,11 +26,11 @@ To learn how to build, test, and install the SDK, please check out [INSTALL.md](
2526

2627
## Documentations
2728

28-
All the documentations for the framework can be found from [the project website](http://doyubkim.github.io/fluid-engine-dev/documentation/) including the API reference.
29+
All the documentations for the framework can be found from [the project website](http://fluidenginedevelopment.org/documentation/) including the API reference.
2930

3031
## Examples
3132

32-
Here are some of the example simulations generated using Jet framework. Corresponding example codes can be found under src/examples. All images are rendered using [Mitsuba renderer](https://www.mitsuba-renderer.org/). Find out more demos from [the project website](http://doyubkim.github.io/fluid-engine-dev/examples/).
33+
Here are some of the example simulations generated using Jet framework. Corresponding example codes can be found under src/examples. All images are rendered using [Mitsuba renderer](https://www.mitsuba-renderer.org/) and the Mitsuba scene files can be found from [the demo repository](https://github.com/doyubkim/fluid-engine-dev-demo/). Find out more demos from [the project website](http://fluidenginedevelopment.org/examples/).
3334

3435
### FLIP Simulation Example
3536

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Adopted from https://github.com/pybind/pybind11/blob/master/.appveyor.yml
22

3-
version: 1.1.0-rc1 ({build})
3+
version: 1.1.0 ({build})
44

55
os:
66
- Visual Studio 2017

doc/doxygen/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = Jet
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v1.1.0-rc1
41+
PROJECT_NUMBER = v1.1.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

doc/doxygen/main.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Jet framework is a fluid simulation engine SDK for computer graphics application
88
* Level set-based liquid simulator
99
* PIC, FLIP, and APIC fluid simulators
1010
* Upwind, ENO, and FMM level set solvers
11+
* Jacobi, Gauss-Seidel, SOR, MG, CG, ICCG, and MGPCG linear system solvers
1112
* Converters between signed distance function and triangular mesh
1213
* C++ and Python API
1314

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def build_extension(self, ext):
6969

7070
setup(
7171
name='pyjet',
72-
version='1.1.0-rc1',
72+
version='1.1.0',
7373
author='Doyub Kim',
7474
author_email='doyubkim@gmail.com',
7575
description='Fluid simulation engine for computer graphics applications',

0 commit comments

Comments
 (0)