Browse Source

CHANGELOG.md

Sebastian Bittrich 3 năm trước cách đây
mục cha
commit
6d74c4856a
3 tập tin đã thay đổi với 6 bổ sung1 xóa
  1. 4 0
      CHANGELOG.md
  2. 1 1
      package.json
  3. 1 0
      src/viewer/ui/validation.tsx

+ 4 - 0
CHANGELOG.md

@@ -2,6 +2,10 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [1.10.0] - 2021-11-??
+### Added
+- Dedicated UI for quality assessment & validation reports
+
 ## [1.9.6] - 2021-11-16
 ### General
 - Try to fix packing issues

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
     "name": "@rcsb/rcsb-molstar",
-    "version": "1.9.6",
+    "version": "1.10.0-dev.0",
     "description": "RCSB PDB apps and props based on Mol*.",
     "homepage": "https://github.com/rcsb/rcsb-molstar#readme",
     "repository": {

+ 1 - 0
src/viewer/ui/validation.tsx

@@ -72,6 +72,7 @@ export class ValidationReportControls extends CollapsableControls<{}, Validation
         try {
             await ValidationReportGeometryQualityPreset.apply(this.pivot.cell, Object.create(null), this.plugin);
         } catch (err) {
+            // happens e.g. for 2W4S
             this.setState(({ errorStates }) => {
                 const errors = new Set(errorStates);
                 errors.add(ValidationReportTag);