Skip to content
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

Multiple state examples et al. #39

Merged
merged 17 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Change Log
All notable changes to this project will be documented in this file, following the suggestions of [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

- Focus node
- Can be on root
- Focus node radius, radius_factor, radius_extent parameters
- Breaking: Change `transparency` to `opacity`
- Multi-state data model tweaks


## [v1.1.0] - 2024-12-09

- Support for multiple states in one `.msvj` file
- Configurable transitions/animations between states
- Configurable transparency of representations
- Configurable opacity of representations
- Add support for additional/custom properties on each node ("vendor-specific properties")
- This allows users to store custom data
- Mol* can be instructed to show non-covalent interactions by providing vendor-specific properties
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,17 @@ will run the server on `localhost:9000` with reload mode on.
- API Docs: `http://localhost:9000/docs`
- Example: `http://localhost:9000/api/v1/examples/load?id=1tqn`

### Testing API examples

Start the server and run

```
cd molviewspec
python test_server.py
```

Will call all API endpoint that can be called without arguments.

### Formatting the Project

```
Expand Down
Loading