Skip to content

Commit

Permalink
0.7.19
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsmirnov committed Jun 18, 2018
1 parent a94bc8c commit ccfd100
Show file tree
Hide file tree
Showing 12 changed files with 1,159 additions and 1,211 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.7.19] - 2018-06-18
### Changed
- Demo app uses deferred scripts loading and the stylesheet is extracted to a separate file.
- Finishing transparent background mode: fog affects transparency now, FXAA and SSAO effects support transparency too.
Transparent materials are not fully supported in this mode due to limitations in rendering pipeline.
See the [transparent background example](examples/transparent_background.html) for details on proper setup.

### Fixed
- Fix broken spinner after unnoticed package upgrade.
- Pin broken jquery.terminal to version 1.14, will investigate CSS issues later.

### Internal
- Use PostCSS instead of node-sass to get rid of issues with binaries and to make processing faster.

## [0.7.18] - 2018-05-29
### Added
- Add the original patented CPK palette back (`CP` identifier).
Expand Down Expand Up @@ -307,7 +321,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.7.18...HEAD
[Unreleased]: https://github.com/epam/miew/compare/v0.7.19...HEAD
[0.7.19]: https://github.com/epam/miew/compare/v0.7.18...v0.7.19
[0.7.18]: https://github.com/epam/miew/compare/v0.7.17...v0.7.18
[0.7.17]: https://github.com/epam/miew/compare/v0.7.16...v0.7.17
[0.7.16]: https://github.com/epam/miew/compare/v0.7.15...v0.7.16
Expand Down
69 changes: 49 additions & 20 deletions dist/Miew.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
@keyframes spinner-line-fade-more {
0%, 100% {
opacity: 0; /* minimum opacity */
}
1% {
opacity: 1;
}
}

@keyframes spinner-line-fade-quick {
0%, 39%, 100% {
opacity: 0.25; /* minimum opacity */
}
40% {
opacity: 1;
}
}

@keyframes spinner-line-fade-default {
0%, 100% {
opacity: 0.22; /* minimum opacity */
}
1% {
opacity: 1;
}
}

.miew-canvas > canvas {
display: block;
width: 100%;
Expand All @@ -12,19 +39,22 @@
position: relative;
}

/* FIXME: $back-gray */

.miew-message {
/* hack for centered error-reporting*/
background-color: #ccc;
display: table;
width: 100%;
height: 100%;
}

.miew-message p {
display: table-cell;
vertical-align: middle;
text-align: center;
font-size: large;
}
display: table-cell;
vertical-align: middle;
text-align: center;
font-size: large;
}

.mode-message {
position: absolute;
Expand All @@ -49,24 +79,23 @@
}

.theme-dark .label-obj,
.theme-dark .label-fg {
color: #ccc;
background-color: #202020;
}
.theme-dark .label-fg {
color: #ccc;
background-color: #202020;
}

.theme-dark .label-bg {
color: #202020;
background-color: #ccc;
}
color: #202020;
background-color: #ccc;
}

.theme-light .label-obj,
.theme-light .label-fg {
color: #202020;
background-color: #ccc;
}
.theme-light .label-fg {
color: #202020;
background-color: #ccc;
}

.theme-light .label-bg {
color: #ccc;
background-color: #202020;
}
/*# sourceMappingURL=Miew.css.map */
color: #ccc;
background-color: #202020;
}
Loading

0 comments on commit ccfd100

Please sign in to comment.