ball
ball copied to clipboard
The Biochemical Algorithms Library
**Reported by akdehof on 28 Jan 39136593 10:40 UTC** There seem to be some problems with the POVRay exporter: - It would be nice to have the option to set...
**Reported by akdehof on 27 Feb 43349775 14:56 UTC** The handling of different view points and camera positions should be much more elaborate to allow for easy creation of PresentaBALL...
**Reported by delagarza on 1 Sep 43714210 04:53 UTC** Obviously, for all platforms!
**Reported by delagarza on 15 Dec 43714212 02:05 UTC** Similar to what OpenMS is doing. Expose CADDSuite as a Community Plug-in in KNIME.
**Reported by nwoetzel on 28 Oct 44094336 05:23 UTC** For PocketOptimizer and Scaffoldselction (http://www.eb.tuebingen.mpg.de/research/research-groups/birte-hoecker/algorithms-and-software.html) we are cross-compiling BALL on Linux for Windows using mingw32 cross compilers (http://mxe.cc) This causes some...
**Reported by nicste on 3 Apr 44253881 00:09 UTC** The transparency slider in the "Material Settings" tab of the ModifyRepresentation dialog does not work. Transparency can only be changed through...
SunRPC has been removed from glibc 2.26+. Thus, `rpc/types.h` and `rpc/xdr.h` are no longer provided by the library. I guess we should just switch to libtirpc and adapt the FindXDR...
Configuration problems on macOS using -std=c++11 concerning finding XDR should be resolved now. This should fix #639.
On macOS, the configuration script ignores additional compiler flags when performing C++ compilation checks, caused explicitly by: https://github.com/BALL-Project/ball/blob/c66bb528461e9e3a772a3be8223eb0f560fba7b9/cmake/BALLConfiguration.cmake#L104-L107 This behavior results in some C++11 language features being disabled on macOS...
`DisplayProperties::rep_` is used as a temporary for both owning (via [1]) and non-owning (via [2]) raw pointers, leaking memory in the first case. [1] https://github.com/BALL-Project/ball/blob/4ee4f0a671a2bf58511f39df9549f732d1c9a532/source/VIEW/DIALOGS/displayProperties.C#L526 [2] https://github.com/BALL-Project/ball/blob/4ee4f0a671a2bf58511f39df9549f732d1c9a532/source/VIEW/DIALOGS/displayProperties.C#L190 ``` Direct leak...