Skip to content

Commit

Permalink
0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NataliaDSmirnova committed Nov 11, 2019
1 parent 598afd4 commit 158e310
Show file tree
Hide file tree
Showing 12 changed files with 10,907 additions and 98,711 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.8.4] - 2019-11-11
### Added
- Add parser for MOL2 molecular format
- Add exporter for geometry information into FBX unicode format
- Add button 'Export FBX' in Demo application menu 'Tools'
- Add example of using ImmediateLoader

### Changed
- Change all Miew links to https://miew... instead of http://miew...
- Refactor unit tests for settings.js and logger.js

### Fixed
- Fix rendering of electron density in stereo mode
- Fix rendering of electron density bbox with visual effects
- Fix a crash in modified DNA processing (e.g. 1K1R)

### Internal
- Rafactor normal storage in G-buffer
- Generalize TraceMesh into InstancedMesh
- Refactor the algorithm of simultaneously applying fog and ambient occlusion effects

## [0.8.3] - 2019-09-20
### Added
- Add parsers for GRO molecular formats
Expand Down Expand Up @@ -490,7 +511,8 @@ in [0.7.7+hotfix] and later releases.
- Update dependencies to the latest supported versions.
- Move the project to GitHub.

[Unreleased]: https://github.com/epam/miew/compare/v0.8.3...HEAD
[Unreleased]: https://github.com/epam/miew/compare/v0.8.4...HEAD
[0.8.4]: https://github.com/epam/miew/compare/v0.8.3...v0.8.4
[0.8.3]: https://github.com/epam/miew/compare/v0.8.2...v0.8.3
[0.8.2]: https://github.com/epam/miew/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/epam/miew/compare/v0.8.0...v0.8.1
Expand Down
12 changes: 12 additions & 0 deletions dist/Miew.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@
}
}

@keyframes spinner-line-shrink {
0%, 25%, 100% {
/* minimum scale and opacity */
transform: scale(0.5);
opacity: 0.25;
}
26% {
transform: scale(1);
opacity: 1;
}
}

.miew-canvas > canvas {
display: block;
width: 100%;
Expand Down
Loading

0 comments on commit 158e310

Please sign in to comment.