Skip to content
Closed
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release notes

## Version 2026.1.1, - 2026-08-06

### Fixed
- Updated ObjCryst++ to provide the correctly spelled `ORTHORHOMBIC`
crystal-system enum while retaining `ORTHOROMBIC` as a backward-compatible
alias.

## Version 2026.1, - 2026-02-05

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/objcryst
Submodule objcryst updated 46 files
+29 −0 .github/workflows/non-gui-tests.yml
+9 −1 ChangeLog.txt
+1 −0 Fox/doc/source/index.rst
+34 −0 Fox/doc/source/testing.rst
+1 −1 ObjCryst/ObjCryst/Crystal.h
+29 −18 ObjCryst/ObjCryst/Indexing.cpp
+11 −3 ObjCryst/ObjCryst/Indexing.h
+6 −2 ObjCryst/ObjCryst/ReflectionProfile.cpp
+2 −2 ObjCryst/ObjCryst/UnitCell.h
+24 −0 ObjCryst/doc/doc-main.h
+1 −1 ObjCryst/gnu.mak
+1 −0 ObjCryst/rules-gnu.mak
+15 −15 ObjCryst/wxCryst/wxPowderPattern.cpp
+21 −0 test/.gitignore
+1 −0 test/Makefile
+74 −0 test/data/cif/PbSO4-COD-1528837.cif
+21 −0 test/data/ground_truth/powder_neutron_pv_gaussian_pbso4.txt
+21 −0 test/data/ground_truth/powder_neutron_pv_lorentzian_pbso4.txt
+21 −0 test/data/ground_truth/powder_xray_anisotropic_pbso4.txt
+21 −0 test/data/ground_truth/powder_xray_pv_gaussian_pbso4.txt
+21 −0 test/data/ground_truth/powder_xray_pv_lorentzian_pbso4.txt
+21 −0 test/data/ground_truth/singlecrystal_neutron_pbso4.txt
+21 −0 test/data/ground_truth/singlecrystal_xray_pbso4.txt
+44 −0 test/gnu.mak
+42 −0 test/integration/fox_nogui_cli.sh
+45 −0 test/integration/gnu.mak
+26 −0 test/integration/run_integration_tests.sh
+301 −0 test/integration/tutorial_cimetidine.cpp
+236 −0 test/integration/tutorial_pbso4.cpp
+37 −0 test/regression/fox_nogui_output_naming.sh
+12 −0 test/regression/gnu.mak
+72 −0 test/scripts/test_runner.sh
+97 −0 test/unit/api_cif.cpp
+124 −0 test/unit/api_crystal.cpp
+207 −0 test/unit/api_indexing.cpp
+101 −0 test/unit/api_molecule.cpp
+173 −0 test/unit/api_optimization.cpp
+304 −0 test/unit/api_powderpattern.cpp
+128 −0 test/unit/api_scattering.cpp
+144 −0 test/unit/api_spacegroup.cpp
+100 −0 test/unit/crystallography_workflow.cpp
+73 −0 test/unit/gnu.mak
+157 −0 test/unit/ground_truth.cpp
+74 −0 test/unit/run_unit_tests.sh
+279 −0 test/unit/test_common.h
+50 −0 test/unit/unit_cell_smoke.cpp