Commit a98075aa authored by Yavor Doganov's avatar Yavor Doganov
Browse files

New upstream version 2.55

parent 6773723b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ Fellype do Nascimento <fellypao@yahoo.com.br>
    Brazilian Portugese.
Jeong Jiseong <stopstar@gist.ac.kr>
    Korean.
Julian Hofer <julian.hofer@protonmail.com>
Julian Hofer <julian.public@protonmail.com>
    German.
Sabrina Meindlhumer
    German.
+0 −1
Original line number Diff line number Diff line
@@ -377,7 +377,6 @@ PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PASCAL = @PASCAL@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
PKG_CONFIG = @PKG_CONFIG@
+61 −1
Original line number Diff line number Diff line
2.55 (2019-11-04)
Application:
- Dependencies: GLib 2.32 and GTK+ 2.18 are now required.
- Keyboard shortcuts: F3 shows/hides current tool window.
- Translations updated: Czech, Russian.

Libraries:
- libgwyprocess: Functions to add data field to all brick xy-planes and data
  line to all z-lines were added.
- libgwyprocess: Function for binning into an existing data field was added.
- libgwyapp: Common initialisation function for batch-style programs utilising
  Gwyddion libraries was added: gwy_app_init_nongui().
- libgwyapp: Critical warning in gwy_app_wait_finish() when waiting is disabled
  was fixed.
- libgwyapp: It is no longer necessary to create GwyBrick preview images
  manually; an average value image is added on the fly if necessary.

Modules:
- Resample (new): Resamples image to specified pixel size or to match pixel
  size of another image.
- Volume rephase (new): Cyclically shifts data blocks to correct errorneous
  volume data files.
- Volume equiplane (new): Creates images from isosurfaces in volume data.
- Volume z-pos level (new): Shifts values in z curves to be zero at defined
  position.
- Pixmap: Hue mapping type was added.
- Rotate: Mask handling was made more consistent.
- FFT synthesis: Generalised Gaussian multiplier (arbitrary power) was added.
- Pattern synthesis: New Siemens star shape generator was added.
- Tescan: Can load images split into -png.hdr and .png files.
- SPIP ASC: Import support for profile (1D) data was implemented.
- Surfstand SDF: Can read binary ISO-1.0 version files, with bad value
  handling and tries to recognise Olympus binary files with longer headers.
- Olympus OIR: Physical dimensions and metadata were implemented.  File
  structure is recognised a bit better.  An attempt was made to unmix mixed up
  LSM channels.
- Leica: Can read 12bit images.  Volume data z range was fixed to always
  positive.
- MicroProf: All images in a file should be imported now.  More files can be
  imported thanks to improved file parsing.  Outside pixels are masked.
- LEXT: Calibration parameters are read and applied.  Metadata support was
  added.
- Nanoscope: Force curve pairs are merged to have ZSensor data on the abscissa,
  as for force volume data.
- Dimensions & Units: Reset button no longer resets to inconsistent state when
  units that will be actually set differ from displayed units.
- Grain remove and Spot remove tools: Option to fill data with zero was added.
- Laplace: Function for simply filling masked data with zero was added.
- XYZ Rasterize: Can create mask over empty regions for Average interpolation.
- Fit terraces, Graph terraces: Fit results can be exported.
- Correlation Search: Mask can be used in object mark mode.

Other:
- MS Windows: Packages were built with ZIP support again.
- Compilation: Detection of ZIP libraries works again (version 2.54 always
  reported them as available, but did not actually use them).
- Plug-in proxy: Plug-in examples are now only installed as documentation in
  source code form, not executable into libexec.


2.54 (2019-08-27)
Application:
- Remote control: When Gwyddion is given files to open and is not run from
@@ -61,7 +121,7 @@ Modules:
- Fit terraces (new): Fits step height from terrace structure measurement.
- Graph terraces (new): Fits step height from terrace structure measurement.
- Graph statistical functions (new): One-dimensional statistics from curves.
- Olymputs OIR (new): Imports of OIR and POIR files (experimental).
- Olympus OIR (new): Imports of OIR and POIR files (experimental).
- Gaussian step (new): Step detection by convolution with a Gaussian step.
- Zero crossing (new): Split from Edge to a separate module.
- Corning CSV (new): Imports Corning Tropel UltraSort exported CSV data.
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ Release checklist.
3. Metadata sync and sanity:
- generate on-line module list (run ./make-module-list in utils, may need
  manual filtering of non-released modules)
  docbase=$HOME/Projects/Gwyddion/gwyddion/devel-docs ./gendoc.sh
- check translations, may require actually running Gwyddion in all locales
- check and update NEWS, set release data, generate the HTML version
  ./utils/gen-news.py <NEWS
@@ -33,6 +32,7 @@ Release checklist.
  make rule in data/)
- generate stable API docs for gwyddion.net (using gwyddion.net-doc-build SVN
  module) and upload them
  docbase=$HOME/Projects/Gwyddion/gwyddion/devel-docs ./gendoc.sh

4. Checking the tarballs:
- must build on Linux from svn and tarballs
+2 −2
Original line number Diff line number Diff line
# $Id: Makefile.am 22437 2019-08-27 11:57:54Z yeti-dn $
# $Id: Makefile.am 22639 2019-11-03 11:26:31Z yeti-dn $

libgwyddion = $(top_builddir)/libgwyddion/libgwyddion2.la
libgwymodule = $(top_builddir)/libgwymodule/libgwymodule2.la
@@ -97,7 +97,7 @@ libgwyapp2.def: $(libgwyapp2_la_OBJECTS)
# Any iface change    C++: 0:   A
# Adding ifaces       C:   R:   A++
# Changing ifaces     C:   R:   0
libversion = -version-info 23:0:23
libversion = -version-info 24:0:24
#libversion = -release @LIBRARY_RELEASE@
AM_CFLAGS = @COMMON_CFLAGS@ @GIO_CFLAGS@
AM_LDFLAGS = @GTKGLEXT_LIBS@ @GIO_LIBS@ @BASIC_LIBS@ $(win32_libs) -export-dynamic $(no_undefined) $(export_symbols) $(libversion) $(libgwyapp_libadd)
Loading