This commit is contained in:
Jarrett Johnson
2024-04-09 12:59:46 -04:00
parent 246e0a4c2d
commit fb4e404202
2 changed files with 34 additions and 2 deletions

View File

@@ -2,6 +2,38 @@
CHANGE LOG
=========================================================================
2024-04-09 Jarrett Johnson, Thomas Stewart, Thomas Holder, Anton Butsev
* 3.0.0
* Panels
- Nucleic Acid Builder supported
- Scenes Panel (Basic version)
- Improved APBS electrostatics plugin integrated
* Distance/Bonding detection
- Halogen-bond detection and display
* Python API
- `fnab` command (sequence to nucleic acid chain)
- Improved CGO builder API
- get_sasa_relative() `subsele` argument added
- new clip modes/API
- iterate() adds `explicit_valence` and `explicit_degree`
- `cell_centered` setting added
- by grid-cell background gradient `bg_gradient=2`
- look_at() added
- experimental `curve_new` / `move_on_curve`
* Developer
- C++17 required
- pymol-testing integrated
- pytest introduced
- Github Actions CI
* And many other fixes and small additions provided by developers
and the community...
2021-05-10 Jarrett Johnson, Thomas Holder, Thomas Stewart
* 2.5.0

View File

@@ -1,12 +1,12 @@
#ifndef _PyMOL_VERSION
#define _PyMOL_VERSION "2.6.0a0"
#define _PyMOL_VERSION "3.0.0"
#endif
/* for session file compatibility */
#ifndef _PyMOL_VERSION_int
// X.Y.Z -> XYYYZZZ
#define _PyMOL_VERSION_int 2004000
#define _PyMOL_VERSION_int 3000000
// Note: There should have never been a "double" version, it's
// the least useful variant to specify a version.
#define _PyMOL_VERSION_double (_PyMOL_VERSION_int / 1000000.)