[gnumeric] 1.12.19



commit 66635422130ef47eef235b1e7ca912f30dc7d80a
Author: Morten Welinder <terra gnome org>
Date:   Fri Jan 23 12:54:42 2015 -0500

    1.12.19

 ChangeLog                           |    4 +
 doc/C/ChangeLog                     |    4 +
 doc/C/func.defs                     |   67 ++++++++++++++
 doc/C/functions.xml                 |  166 +++++++++++++++++++++++++++++++++++
 doc/ChangeLog                       |    4 +
 doc/de/ChangeLog                    |    4 +
 plugins/applix/ChangeLog            |    4 +
 plugins/dif/ChangeLog               |    4 +
 plugins/excel/ChangeLog             |    4 +
 plugins/excelplugins/ChangeLog      |    4 +
 plugins/fn-christian-date/ChangeLog |    4 +
 plugins/fn-complex/ChangeLog        |    4 +
 plugins/fn-database/ChangeLog       |    4 +
 plugins/fn-date/ChangeLog           |    4 +
 plugins/fn-derivatives/ChangeLog    |    4 +
 plugins/fn-eng/ChangeLog            |    4 +
 plugins/fn-erlang/ChangeLog         |    4 +
 plugins/fn-financial/ChangeLog      |    4 +
 plugins/fn-hebrew-date/ChangeLog    |    4 +
 plugins/fn-info/ChangeLog           |    4 +
 plugins/fn-logical/ChangeLog        |    4 +
 plugins/fn-lookup/ChangeLog         |    4 +
 plugins/fn-math/ChangeLog           |    4 +
 plugins/fn-numtheory/ChangeLog      |    4 +
 plugins/fn-numtheory/doc/ChangeLog  |    4 +
 plugins/fn-r/ChangeLog              |    4 +
 plugins/fn-random/ChangeLog         |    4 +
 plugins/fn-stat/ChangeLog           |    4 +
 plugins/fn-string/ChangeLog         |    4 +
 plugins/fn-tsa/ChangeLog            |    4 +
 plugins/gda/ChangeLog               |    4 +
 plugins/glpk/ChangeLog              |    4 +
 plugins/gnome-db/ChangeLog          |    4 +
 plugins/gnome-glossary/ChangeLog    |    4 +
 plugins/guile/ChangeLog             |    4 +
 plugins/html/ChangeLog              |    4 +
 plugins/lotus-123/ChangeLog         |    4 +
 plugins/lpsolve/ChangeLog           |    4 +
 plugins/mps/ChangeLog               |    4 +
 plugins/nlsolve/ChangeLog           |    4 +
 plugins/oleo/ChangeLog              |    4 +
 plugins/openoffice/ChangeLog        |    4 +
 plugins/paradox/ChangeLog           |    4 +
 plugins/perl-func/ChangeLog         |    4 +
 plugins/perl-loader/ChangeLog       |    4 +
 plugins/plan-perfect/ChangeLog      |    4 +
 plugins/psiconv/ChangeLog           |    4 +
 plugins/py-func/ChangeLog           |    4 +
 plugins/python-loader/ChangeLog     |    4 +
 plugins/qpro/ChangeLog              |    4 +
 plugins/sample_datasource/ChangeLog |    4 +
 plugins/sc/ChangeLog                |    4 +
 plugins/sylk/ChangeLog              |    4 +
 plugins/uihello/ChangeLog           |    4 +
 plugins/xbase/ChangeLog             |    4 +
 po-functions/ChangeLog              |    4 +
 po/ChangeLog                        |    4 +
 src/dialogs/ChangeLog               |    4 +
 src/tools/ChangeLog                 |    4 +
 src/widgets/ChangeLog               |    4 +
 test/ChangeLog                      |    4 +
 tools/ChangeLog                     |    4 +
 tools/win32/ChangeLog               |    4 +
 63 files changed, 477 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 97f57d0..7e5bddc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-20  Morten Welinder  <terra gnome org>
 
        * src/gui-util.h (gnumeric_filter_modifiers): Drop reserved bits.
diff --git a/doc/C/ChangeLog b/doc/C/ChangeLog
index 9a83d2d..d47586b 100644
--- a/doc/C/ChangeLog
+++ b/doc/C/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/doc/C/func.defs b/doc/C/func.defs
index dcf045c..9200401 100644
--- a/doc/C/func.defs
+++ b/doc/C/func.defs
@@ -6359,3 +6359,70 @@ The distinction between half-width and full-width characters is described in htt
 @EXCEL=This function is Excel compatible.
 @SEEALSO=DOLLAR,FIXED,TEXT
 
+ CATEGORY=Time Series Analysis
+ FUNCTION=FOURIER
+ SHORTDESC=Fourier or inverse Fourier transform
+ SYNTAX=FOURIER(Sequence,Inverse,Separate)
+ ARGUMENTDESCRIPTION=@{Sequence}: the data sequence to be transformed
+ {Inverse}: if true, the inverse Fourier transform is calculated, defaults to false
+ {Separate}: if true, the real and imaginary parts are given separately, defaults to false
+ DESCRIPTION=This array function returns the Fourier or inverse Fourier transform of the given data sequence.
+The output consists of one column of complex numbers if @{Separate} is false and of two columns of real 
numbers if @{Separate} is true.
+If @{Separate} is true the first output column contains the real parts and the second column the imaginary 
parts.
+ NOTE=If @{Sequence} is neither an n by 1 nor 1 by n array, this function returns #VALUE!
+
+ CATEGORY=Time Series Analysis
+ FUNCTION=HPFILTER
+ SHORTDESC=Hodrick Prescott Filter
+ SYNTAX=HPFILTER(Sequence,λ)
+ ARGUMENTDESCRIPTION=@{Sequence}: the data sequence to be transformed
+ {λ}: filter parameter λ, defaults to 1600
+ DESCRIPTION=This array function returns the trend and cyclical components obtained by applying the Hodrick 
Prescott Filter with parameter @{λ} to the given data sequence.
+The output consists of two columns of numbers, the first containing the trend component, the second the 
cyclical component.
+ NOTE=If @{Sequence} is neither an n by 1 nor 1 by n array, this function returns #VALUE! If @{Sequence} 
contains less than 6 numerical values, this function returns #VALUE!
+
+ CATEGORY=Time Series Analysis
+ FUNCTION=INTERPOLATION
+ SHORTDESC=interpolated values corresponding to the given abscissa targets
+ SYNTAX=INTERPOLATION(abscissae,ordinates,targets,interpolation)
+ ARGUMENTDESCRIPTION=@{abscissae}: abscissae of the given data points
+ {ordinates}: ordinates of the given data points
+ {targets}: abscissae of the interpolated data
+ {interpolation}: method of interpolation, defaults to 0 ('linear')
+ DESCRIPTION=The output consists always of one column of numbers.
+Possible interpolation methods are:
+0: linear;
+1: linear with averaging;
+2: staircase;
+3: staircase with averaging;
+4: natural cubic spline;
+5: natural cubic spline with averaging.
+ NOTE=The @{abscissae} should be given in increasing order. If the @{abscissae} is not in increasing order 
the INTERPOLATION function is significantly slower. If any two @{abscissae} values are equal an error is 
returned. If any of interpolation methods 1 ('linear with averaging'), 3 ('staircase with averaging'), and 5 
('natural cubic spline with averaging') is used, the number of returned values is one less than the number of 
targets and the target values must be given in increasing order. The values returned are the average heights 
of the interpolation function on the intervals determined by consecutive target values. Strings and empty 
cells in @{abscissae} and @{ordinates} are ignored. If several target data are provided they must be in the 
same column in consecutive cells.
+ SEEALSO=PERIODOGRAM
+
+ CATEGORY=Time Series Analysis
+ FUNCTION=PERIODOGRAM
+ SHORTDESC=periodogram of the given data
+ SYNTAX=PERIODOGRAM(ordinates,filter,abscissae,interpolation,number)
+ ARGUMENTDESCRIPTION=@{ordinates}: ordinates of the given data
+ {filter}: windowing function to  be used, defaults to no filter
+ {abscissae}: abscissae of the given data, defaults to regularly spaced abscissae
+ {interpolation}: method of interpolation, defaults to none
+ {number}: number of interpolated data points
+ DESCRIPTION=If an interpolation method is used, the number of returned values is one less than the number 
of targets and the targets values must be given in increasing order.
+The output consists always of one column of numbers.
+Possible interpolation methods are:
+0: linear;
+1: linear with averaging;
+2: staircase;
+3: staircase with averaging;
+4: natural cubic spline;
+5: natural cubic spline with averaging.
+Possible window functions are:
+0: no filter (rectangular window)
+1: Bartlett (triangular window)
+2: Hahn (cosine window)
+3: Welch (parabolic window)
+ NOTE=Strings and empty cells in @{abscissae} and @{ordinates} are ignored. If several target data are 
provided they must be in the same column in consecutive cells.
+ SEEALSO=INTERPOLATION
+
diff --git a/doc/C/functions.xml b/doc/C/functions.xml
index 098d5f2..71ec224 100644
--- a/doc/C/functions.xml
+++ b/doc/C/functions.xml
@@ -21912,4 +21912,170 @@
       </refsect1>
     </refentry>
   </sect1>
+  <sect1 id="CATEGORY_Time_Series_Analysis">
+    <title>Time Series Analysis</title>
+    <refentry id="gnumeric-function-FOURIER">
+      <refmeta>
+        <refentrytitle>
+          <function>FOURIER</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>FOURIER</function>
+        </refname>
+        <refpurpose>
+        Fourier or inverse Fourier transform
+      </refpurpose>
+      </refnamediv>
+      <refsynopsisdiv>
+        
<synopsis><function>FOURIER</function>(<parameter>Sequence</parameter>,<parameter>Inverse</parameter>,<parameter>Separate</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Arguments</title>
+        <para><parameter>Sequence</parameter>: the data sequence to be transformed</para>
+        <para><parameter>Inverse</parameter>: if true, the inverse Fourier transform is calculated, defaults 
to false</para>
+        <para><parameter>Separate</parameter>: if true, the real and imaginary parts are given separately, 
defaults to false</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>This array function returns the Fourier or inverse Fourier transform of the given data 
sequence.</para>
+        <para>The output consists of one column of complex numbers if <parameter>Separate</parameter> is 
false and of two columns of real numbers if <parameter>Separate</parameter> is true.</para>
+        <para>If <parameter>Separate</parameter> is true the first output column contains the real parts and 
the second column the imaginary parts.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>Sequence</parameter> is neither an n by 1 nor 1 by n array, this function 
returns #VALUE!</para>
+      </refsect1>
+    </refentry>
+    <refentry id="gnumeric-function-HPFILTER">
+      <refmeta>
+        <refentrytitle>
+          <function>HPFILTER</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>HPFILTER</function>
+        </refname>
+        <refpurpose>
+        Hodrick Prescott Filter
+      </refpurpose>
+      </refnamediv>
+      <refsynopsisdiv>
+        <synopsis><function>HPFILTER</function>(<parameter>Sequence</parameter>,<parameter/>λ)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Arguments</title>
+        <para><parameter>Sequence</parameter>: the data sequence to be transformed</para>
+        <para><parameter>λ</parameter>: filter parameter λ, defaults to 1600</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>This array function returns the trend and cyclical components obtained by applying the Hodrick 
Prescott Filter with parameter <parameter>λ</parameter> to the given data sequence.</para>
+        <para>The output consists of two columns of numbers, the first containing the trend component, the 
second the cyclical component.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>Sequence</parameter> is neither an n by 1 nor 1 by n array, this function 
returns #VALUE! If <parameter>Sequence</parameter> contains less than 6 numerical values, this function 
returns #VALUE!</para>
+      </refsect1>
+    </refentry>
+    <refentry id="gnumeric-function-INTERPOLATION">
+      <refmeta>
+        <refentrytitle>
+          <function>INTERPOLATION</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>INTERPOLATION</function>
+        </refname>
+        <refpurpose>
+        interpolated values corresponding to the given abscissa targets
+      </refpurpose>
+      </refnamediv>
+      <refsynopsisdiv>
+        
<synopsis><function>INTERPOLATION</function>(<parameter>abscissae</parameter>,<parameter>ordinates</parameter>,<parameter>targets</parameter>,<parameter>interpolation</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Arguments</title>
+        <para><parameter>abscissae</parameter>: abscissae of the given data points</para>
+        <para><parameter>ordinates</parameter>: ordinates of the given data points</para>
+        <para><parameter>targets</parameter>: abscissae of the interpolated data</para>
+        <para><parameter>interpolation</parameter>: method of interpolation, defaults to 0 ('linear')</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>The output consists always of one column of numbers.</para>
+        <para>Possible interpolation methods are:</para>
+        <para>0: linear;</para>
+        <para>1: linear with averaging;</para>
+        <para>2: staircase;</para>
+        <para>3: staircase with averaging;</para>
+        <para>4: natural cubic spline;</para>
+        <para>5: natural cubic spline with averaging.</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>The <parameter>abscissae</parameter> should be given in increasing order. If the 
<parameter>abscissae</parameter> is not in increasing order the <function>INTERPOLATION</function> function 
is significantly slower. If any two <parameter>abscissae</parameter> values are equal an error is returned. 
If any of interpolation methods 1 ('linear with averaging'), 3 ('staircase with averaging'), and 5 ('natural 
cubic spline with averaging') is used, the number of returned values is one less than the number of targets 
and the target values must be given in increasing order. The values returned are the average heights of the 
interpolation function on the intervals determined by consecutive target values. Strings and empty cells in 
<parameter>abscissae</parameter> and <parameter>ordinates</parameter> are ignored. If several target data are 
provided they must be in the same column in consecutive cells.</para>
+      </refsect1>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-function-PERIODOGRAM"><function>PERIODOGRAM</function></link>.
+      </para>
+      </refsect1>
+    </refentry>
+    <refentry id="gnumeric-function-PERIODOGRAM">
+      <refmeta>
+        <refentrytitle>
+          <function>PERIODOGRAM</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>PERIODOGRAM</function>
+        </refname>
+        <refpurpose>
+        periodogram of the given data
+      </refpurpose>
+      </refnamediv>
+      <refsynopsisdiv>
+        
<synopsis><function>PERIODOGRAM</function>(<parameter>ordinates</parameter>,<parameter>filter</parameter>,<parameter>abscissae</parameter>,<parameter>interpolation</parameter>,<parameter>number</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Arguments</title>
+        <para><parameter>ordinates</parameter>: ordinates of the given data</para>
+        <para><parameter>filter</parameter>: windowing function to  be used, defaults to no filter</para>
+        <para><parameter>abscissae</parameter>: abscissae of the given data, defaults to regularly spaced 
abscissae</para>
+        <para><parameter>interpolation</parameter>: method of interpolation, defaults to none</para>
+        <para><parameter>number</parameter>: number of interpolated data points</para>
+      </refsect1>
+      <refsect1>
+        <title>Description</title>
+        <para>If an interpolation method is used, the number of returned values is one less than the number 
of targets and the targets values must be given in increasing order.</para>
+        <para>The output consists always of one column of numbers.</para>
+        <para>Possible interpolation methods are:</para>
+        <para>0: linear;</para>
+        <para>1: linear with averaging;</para>
+        <para>2: staircase;</para>
+        <para>3: staircase with averaging;</para>
+        <para>4: natural cubic spline;</para>
+        <para>5: natural cubic spline with averaging.</para>
+        <para>Possible window functions are:</para>
+        <para>0: no filter (rectangular window)</para>
+        <para>1: Bartlett (triangular window)</para>
+        <para>2: Hahn (cosine window)</para>
+        <para>3: Welch (parabolic window)</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>Strings and empty cells in <parameter>abscissae</parameter> and 
<parameter>ordinates</parameter> are ignored. If several target data are provided they must be in the same 
column in consecutive cells.</para>
+      </refsect1>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-function-INTERPOLATION"><function>INTERPOLATION</function></link>.
+      </para>
+      </refsect1>
+    </refentry>
+  </sect1>
 </appendix>
diff --git a/doc/ChangeLog b/doc/ChangeLog
index d1451d6..3c53265 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/doc/de/ChangeLog b/doc/de/ChangeLog
index af96944..2e328c1 100644
--- a/doc/de/ChangeLog
+++ b/doc/de/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/applix/ChangeLog b/plugins/applix/ChangeLog
index 58c7583..24599fc 100644
--- a/plugins/applix/ChangeLog
+++ b/plugins/applix/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/dif/ChangeLog b/plugins/dif/ChangeLog
index 125ff7e..9a3bac9 100644
--- a/plugins/dif/ChangeLog
+++ b/plugins/dif/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/excel/ChangeLog b/plugins/excel/ChangeLog
index 4b8cb1e..094d96c 100644
--- a/plugins/excel/ChangeLog
+++ b/plugins/excel/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-21  Morten Welinder  <terra gnome org>
 
        * xlsx-read-drawing.c (xlsx_read_chart): Reset chart position here
diff --git a/plugins/excelplugins/ChangeLog b/plugins/excelplugins/ChangeLog
index 070ce63..4531cd9 100644
--- a/plugins/excelplugins/ChangeLog
+++ b/plugins/excelplugins/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-christian-date/ChangeLog b/plugins/fn-christian-date/ChangeLog
index 9548bf8..b8fc5c2 100644
--- a/plugins/fn-christian-date/ChangeLog
+++ b/plugins/fn-christian-date/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-complex/ChangeLog b/plugins/fn-complex/ChangeLog
index c7aaae6..3abb1bf 100644
--- a/plugins/fn-complex/ChangeLog
+++ b/plugins/fn-complex/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-database/ChangeLog b/plugins/fn-database/ChangeLog
index 08b32f2..4241ecb 100644
--- a/plugins/fn-database/ChangeLog
+++ b/plugins/fn-database/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-date/ChangeLog b/plugins/fn-date/ChangeLog
index 46b96eb..4fe5b43 100644
--- a/plugins/fn-date/ChangeLog
+++ b/plugins/fn-date/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-derivatives/ChangeLog b/plugins/fn-derivatives/ChangeLog
index 70fe5d1..33ed063 100644
--- a/plugins/fn-derivatives/ChangeLog
+++ b/plugins/fn-derivatives/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-eng/ChangeLog b/plugins/fn-eng/ChangeLog
index f376566..11b83b8 100644
--- a/plugins/fn-eng/ChangeLog
+++ b/plugins/fn-eng/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-erlang/ChangeLog b/plugins/fn-erlang/ChangeLog
index c67b7de..c2d15fe 100644
--- a/plugins/fn-erlang/ChangeLog
+++ b/plugins/fn-erlang/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-financial/ChangeLog b/plugins/fn-financial/ChangeLog
index be1dd79..5a091c6 100644
--- a/plugins/fn-financial/ChangeLog
+++ b/plugins/fn-financial/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-hebrew-date/ChangeLog b/plugins/fn-hebrew-date/ChangeLog
index c8ac16a..73f75f9 100644
--- a/plugins/fn-hebrew-date/ChangeLog
+++ b/plugins/fn-hebrew-date/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-info/ChangeLog b/plugins/fn-info/ChangeLog
index d18fd47..e6aa78e 100644
--- a/plugins/fn-info/ChangeLog
+++ b/plugins/fn-info/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-logical/ChangeLog b/plugins/fn-logical/ChangeLog
index aacc5c0..0a96a05 100644
--- a/plugins/fn-logical/ChangeLog
+++ b/plugins/fn-logical/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-lookup/ChangeLog b/plugins/fn-lookup/ChangeLog
index 2b0bcee..cca9f68 100644
--- a/plugins/fn-lookup/ChangeLog
+++ b/plugins/fn-lookup/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-09  Morten Welinder  <terra gnome org>
 
        * functions.c (gnumeric_address): Fix previous fix.  The sheet we
diff --git a/plugins/fn-math/ChangeLog b/plugins/fn-math/ChangeLog
index a1cc3b3..7771e8a 100644
--- a/plugins/fn-math/ChangeLog
+++ b/plugins/fn-math/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-numtheory/ChangeLog b/plugins/fn-numtheory/ChangeLog
index effeb04..08b570c 100644
--- a/plugins/fn-numtheory/ChangeLog
+++ b/plugins/fn-numtheory/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-numtheory/doc/ChangeLog b/plugins/fn-numtheory/doc/ChangeLog
index b09e54f..dc9f844 100644
--- a/plugins/fn-numtheory/doc/ChangeLog
+++ b/plugins/fn-numtheory/doc/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-r/ChangeLog b/plugins/fn-r/ChangeLog
index 1047bfe..faa605c 100644
--- a/plugins/fn-r/ChangeLog
+++ b/plugins/fn-r/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-random/ChangeLog b/plugins/fn-random/ChangeLog
index e2385c5..d6080d3 100644
--- a/plugins/fn-random/ChangeLog
+++ b/plugins/fn-random/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-stat/ChangeLog b/plugins/fn-stat/ChangeLog
index 22a8e11..9772392 100644
--- a/plugins/fn-stat/ChangeLog
+++ b/plugins/fn-stat/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-string/ChangeLog b/plugins/fn-string/ChangeLog
index 5b6a86f..d8c7175 100644
--- a/plugins/fn-string/ChangeLog
+++ b/plugins/fn-string/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/fn-tsa/ChangeLog b/plugins/fn-tsa/ChangeLog
index db0269e..f372d90 100644
--- a/plugins/fn-tsa/ChangeLog
+++ b/plugins/fn-tsa/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/gda/ChangeLog b/plugins/gda/ChangeLog
index 7240e16..2115d91 100644
--- a/plugins/gda/ChangeLog
+++ b/plugins/gda/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/glpk/ChangeLog b/plugins/glpk/ChangeLog
index 159f71c..1cc6a52 100644
--- a/plugins/glpk/ChangeLog
+++ b/plugins/glpk/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-06  Morten Welinder  <terra gnome org>
 
        * glpk-write.c (glpk_create_program): Fail unless the problem is
diff --git a/plugins/gnome-db/ChangeLog b/plugins/gnome-db/ChangeLog
index 383f776..2672ee8 100644
--- a/plugins/gnome-db/ChangeLog
+++ b/plugins/gnome-db/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/gnome-glossary/ChangeLog b/plugins/gnome-glossary/ChangeLog
index f461439..883689b 100644
--- a/plugins/gnome-glossary/ChangeLog
+++ b/plugins/gnome-glossary/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/guile/ChangeLog b/plugins/guile/ChangeLog
index 5cb860a..ff88645 100644
--- a/plugins/guile/ChangeLog
+++ b/plugins/guile/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/html/ChangeLog b/plugins/html/ChangeLog
index 541f32f..75a9f5e 100644
--- a/plugins/html/ChangeLog
+++ b/plugins/html/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-11-02  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * latex.c (latex_table_file_save_impl): new
diff --git a/plugins/lotus-123/ChangeLog b/plugins/lotus-123/ChangeLog
index 853721c..86dbb7e 100644
--- a/plugins/lotus-123/ChangeLog
+++ b/plugins/lotus-123/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-01  Morten Welinder  <terra gnome org>
 
        * lotus-formula.c (lotus_parse_formula_new): New formulas use
diff --git a/plugins/lpsolve/ChangeLog b/plugins/lpsolve/ChangeLog
index 9a3b419..75582bd 100644
--- a/plugins/lpsolve/ChangeLog
+++ b/plugins/lpsolve/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-06  Morten Welinder  <terra gnome org>
 
        * lpsolve-write.c (lpsolve_create_program): Fail unless the
diff --git a/plugins/mps/ChangeLog b/plugins/mps/ChangeLog
index 22169ec..d612f9b 100644
--- a/plugins/mps/ChangeLog
+++ b/plugins/mps/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/nlsolve/ChangeLog b/plugins/nlsolve/ChangeLog
index 6493289..709525f 100644
--- a/plugins/nlsolve/ChangeLog
+++ b/plugins/nlsolve/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-06  Morten Welinder  <terra gnome org>
 
        * gnm-nlsolve.c (gnm_nlsolve_final): Plug leak.
diff --git a/plugins/oleo/ChangeLog b/plugins/oleo/ChangeLog
index 0cead75..b5d85a9 100644
--- a/plugins/oleo/ChangeLog
+++ b/plugins/oleo/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/openoffice/ChangeLog b/plugins/openoffice/ChangeLog
index 6f8dafa..7e2179f 100644
--- a/plugins/openoffice/ChangeLog
+++ b/plugins/openoffice/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/paradox/ChangeLog b/plugins/paradox/ChangeLog
index 417f1c3..4a1075a 100644
--- a/plugins/paradox/ChangeLog
+++ b/plugins/paradox/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/perl-func/ChangeLog b/plugins/perl-func/ChangeLog
index 4dea5a7..f580431 100644
--- a/plugins/perl-func/ChangeLog
+++ b/plugins/perl-func/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/perl-loader/ChangeLog b/plugins/perl-loader/ChangeLog
index 6c9b01e..b7421b4 100644
--- a/plugins/perl-loader/ChangeLog
+++ b/plugins/perl-loader/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/plan-perfect/ChangeLog b/plugins/plan-perfect/ChangeLog
index b920945..184302a 100644
--- a/plugins/plan-perfect/ChangeLog
+++ b/plugins/plan-perfect/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/psiconv/ChangeLog b/plugins/psiconv/ChangeLog
index 34d238e..be3fa08 100644
--- a/plugins/psiconv/ChangeLog
+++ b/plugins/psiconv/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/py-func/ChangeLog b/plugins/py-func/ChangeLog
index 659e6ca..a26e9d8 100644
--- a/plugins/py-func/ChangeLog
+++ b/plugins/py-func/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/python-loader/ChangeLog b/plugins/python-loader/ChangeLog
index bee9353..1029b07 100644
--- a/plugins/python-loader/ChangeLog
+++ b/plugins/python-loader/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/qpro/ChangeLog b/plugins/qpro/ChangeLog
index a122304..18b5384 100644
--- a/plugins/qpro/ChangeLog
+++ b/plugins/qpro/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/sample_datasource/ChangeLog b/plugins/sample_datasource/ChangeLog
index ba68432..3abf9a7 100644
--- a/plugins/sample_datasource/ChangeLog
+++ b/plugins/sample_datasource/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/sc/ChangeLog b/plugins/sc/ChangeLog
index 81470aa..725b049 100644
--- a/plugins/sc/ChangeLog
+++ b/plugins/sc/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/sylk/ChangeLog b/plugins/sylk/ChangeLog
index 7fea506..f52a60b 100644
--- a/plugins/sylk/ChangeLog
+++ b/plugins/sylk/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/uihello/ChangeLog b/plugins/uihello/ChangeLog
index fadae2c..5901fc2 100644
--- a/plugins/uihello/ChangeLog
+++ b/plugins/uihello/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/plugins/xbase/ChangeLog b/plugins/xbase/ChangeLog
index 1e93d9f..abc226f 100644
--- a/plugins/xbase/ChangeLog
+++ b/plugins/xbase/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/po-functions/ChangeLog b/po-functions/ChangeLog
index ba7b54a..c22a707 100644
--- a/po-functions/ChangeLog
+++ b/po-functions/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/po/ChangeLog b/po/ChangeLog
index eb483e9..a6213b2 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-09-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.18
diff --git a/src/dialogs/ChangeLog b/src/dialogs/ChangeLog
index 0371360..eb654b4 100644
--- a/src/dialogs/ChangeLog
+++ b/src/dialogs/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-19  Morten Welinder  <terra gnome org>
 
        * dialog-printer-setup.c (do_setup_page_info): Load right-down
diff --git a/src/tools/ChangeLog b/src/tools/ChangeLog
index 5198dcc..fe545c6 100644
--- a/src/tools/ChangeLog
+++ b/src/tools/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-06  Morten Welinder  <terra gnome org>
 
        * gnm-solver.c (gnm_sub_solver_finalize): New function to plug
diff --git a/src/widgets/ChangeLog b/src/widgets/ChangeLog
index c1aee57..15b93f7 100644
--- a/src/widgets/ChangeLog
+++ b/src/widgets/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2015-01-05  Morten Welinder  <terra gnome org>
 
        * gnumeric-cell-renderer-toggle.c
diff --git a/test/ChangeLog b/test/ChangeLog
index f029b1a..3838ba4 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-12-29  Morten Welinder  <terra gnome org>
 
        * normalize-gnumeric: Ignore the setting of
diff --git a/tools/ChangeLog b/tools/ChangeLog
index 220b3a2..149177b 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-12-22  Morten Welinder  <terra gnome org>
 
        * handle-conf-options (create_reg): Improve handling of embedded
diff --git a/tools/win32/ChangeLog b/tools/win32/ChangeLog
index 5adeec3..26c7da0 100644
--- a/tools/win32/ChangeLog
+++ b/tools/win32/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-23  Morten Welinder <terra gnome org>
+
+       * Release 1.12.19
+
 2014-12-23  Morten Welinder  <terra gnome org>
 
        * build (archive_dir): Set WINEARCH=win32.  The help compiler is


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]