release of V.1.0.0
This commit is contained in:
parent
9232d96246
commit
450a5c9d1b
22
ChangeLog
22
ChangeLog
@ -2,7 +2,9 @@
|
||||
# ChangeLog
|
||||
#---------------------------------------------------------------------
|
||||
|
||||
rather than updating this document, the changes can be followed here:
|
||||
The ChangeLog will describe feature changes rather than coding detail changes.
|
||||
|
||||
For detailed information about changes have a look here:
|
||||
|
||||
https://gitlab.psi.ch/nemu/musrfit/activity
|
||||
|
||||
@ -10,6 +12,24 @@ or
|
||||
|
||||
https://bitbucket.org/muonspin/musrfit/commits/all
|
||||
|
||||
Release of V1.0.0, 2017/05/18
|
||||
=============================
|
||||
|
||||
I feel that musrfit has majored enough to lift it to its first full version, i.e. V1.0.0.
|
||||
|
||||
A lot of bug fixing went into it since 0.18.0. It is now also fully ROOT 6 compatible which
|
||||
is also the main supported version now.
|
||||
|
||||
New features:
|
||||
|
||||
* musrWiz: a wizard which will help the user to get started to generate msr-files.
|
||||
* musrStep: a little helper program which allows to reset the step size of a msr-file.
|
||||
This is useful if you deal with a lot of detectors (e.g. HAL-9500 at PSI).
|
||||
* auto-phase correction of Fourier transforms: this is still in its early stage but will
|
||||
eventually provide a real phase corrected Fourier transform, which will allow
|
||||
a real Fourier detector average.
|
||||
* the startup file handling has improved substantially.
|
||||
|
||||
changes since 0.18.0
|
||||
===================================
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
AC_REVISION([m4_esyscmd_s([git describe --always])])
|
||||
|
||||
AC_PREREQ(2.63)
|
||||
AC_INIT([musrfit],[0.18.0],[andreas.suter@psi.ch])
|
||||
AC_INIT([musrfit],[1.0.0],[andreas.suter@psi.ch])
|
||||
AC_CONFIG_AUX_DIR(admin)
|
||||
AC_CANONICAL_HOST
|
||||
#AC_MSG_RESULT([${host} ${host_cpu} ${host_vendor} ${host_os}])
|
||||
@ -34,8 +34,8 @@ dnl -----------------------------------------------
|
||||
|
||||
|
||||
#release versioning
|
||||
MUSR_MAJOR_VERSION=0
|
||||
MUSR_MINOR_VERSION=18
|
||||
MUSR_MAJOR_VERSION=1
|
||||
MUSR_MINOR_VERSION=0
|
||||
MUSR_MICRO_VERSION=0
|
||||
|
||||
#release versioning
|
||||
|
@ -53,7 +53,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (argc == 2) {
|
||||
if (!strcmp(argv[1], "--version") || (!strcmp(argv[1], "-v"))) {
|
||||
std::cout << std::endl << "musrWiz - alpha - git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl;
|
||||
std::cout << std::endl << "musrWiz - git-branch: " << GIT_BRANCH << ", git-rev: " << GIT_CURRENT_SHA1 << std::endl << std::endl;
|
||||
return 0;
|
||||
} else if (!strcmp(argv[1], "--help")) {
|
||||
musrWiz_syntax();
|
||||
|
Loading…
x
Reference in New Issue
Block a user