Skip to content

Commit 16b3fcd

Browse files
committed
Fixed dates on change logs.
1 parent 0beffb3 commit 16b3fcd

10 files changed

+20
-16
lines changed

_changelogs/dipimage_3.0.0.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ porting your old code that used *DIPimage* to the new version.
5252
is the natural way of doing it, as it doesn't require data copy. It also makes the function
5353
consistent with linear indexing (reshaping an image doesn't change the linear index of the
5454
pixels). We presume there are few (if any) programs that depend on the old behavior. See
55-
[this section of the *DIPimage* User Manual](/diplib-docs/sec_dum_dip_image.html#sec_dum_dip_image_reshape)
55+
[this section of the *DIPimage* User Manual](https://diplib.org/diplib-docs/sec_dum_dip_image.html#sec_dum_dip_image_reshape)
5656
for more details).
5757

5858
- The `squeeze` method now might reorder dimensions, for the same reasoning as the change to
5959
`reshape`. The new preference `'CheapSqueeze'` can be used to revert to the old behavior
6060
if necessary. See
61-
[this section of the *DIPimage* User Manual](/diplib-docs/sec_dum_dip_image.html#sec_dum_dip_image_reshape)
61+
[this section of the *DIPimage* User Manual](https://diplib.org/diplib-docs/sec_dum_dip_image.html#sec_dum_dip_image_reshape)
6262
for more details).
6363

6464
- There are slight changes to how array data types are handled when converting to a `dip_image`
@@ -116,7 +116,7 @@ porting your old code that used *DIPimage* to the new version.
116116
applied. The `'GammaGrey'` setting is also no longer applied.
117117

118118
- A new function `viewslice` can be used to display any image (including tensor images and
119-
higher-dimensional images) in [*DIPviewer*](/diplib-docs/dipviewer.html#viewer_ui).
119+
higher-dimensional images) in [*DIPviewer*](https://diplib.org/diplib-docs/dipviewer.html#viewer_ui).
120120
This is an alternative way to examine images, but none of the tools to programmatically
121121
interact with images displayed through `dipshow` will work with this viewer.
122122

@@ -127,26 +127,26 @@ porting your old code that used *DIPimage* to the new version.
127127

128128
- `'CheapSqueeze'` controls the behavior of the `dip_image/squeeze` method. Set it to `'off'`
129129
to mimic the behavior of *DIPimage* versions prior to 3.0 (see the
130-
[*DIPimage* User Manual](/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_cheapsqueeze)
130+
[*DIPimage* User Manual](https://diplib.org/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_cheapsqueeze)
131131
for more details).
132132

133133
- `'DisplayFunction'` can be set to either `'dipshow'` (the default), `'viewslice'`, or
134134
`'view5d'`, and determines which of these functions is invoked by default when the
135135
`dip_image/display` method is invoked (see the
136-
[*DIPimage* User Manual](/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_displayfunction)
136+
[*DIPimage* User Manual](https://diplib.org/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_displayfunction)
137137
for more details).
138138

139139
- `'FtOption'` adds one option to the `ft` and `ift` functions, and allows to configure
140140
*DIPimage* be be compatible with versions prior to 3.0 (see the
141-
[*DIPimage* User Manual](/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_ftoption)
141+
[*DIPimage* User Manual](https://diplib.org/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_ftoption)
142142
for more details).
143143

144144
- Changed settings:
145145

146146
- `'KeepDataType'`, which changes how the output data type for arithmetic operations is
147147
chosen, has the same intent but does not always make the same choice. For example
148148
the result is different when mixing signed and unsigned integers. (see the
149-
[*DIPimage* User Manual](/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_keepdatatype)
149+
[*DIPimage* User Manual](https://diplib.org/diplib-docs/sec_dum_customizing.html#sec_dum_customizing_dippref_keepdatatype)
150150
for details on the current logic).
151151

152152
- `'Gamma'` and `'GammaGrey'` are no longer active, though they haven't (yet) been removed.

_changelogs/diplib_3.0.0.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ this list will help in porting your old code that used *DIPlib* to the new versi
8888

8989
- The *dipIO* library no longer exists. Some `dipio_Xxx` functions are now defined in the
9090
`diplib/file_io.h` header file (reading and writing ICS, TIFF and JPEG files).
91-
`dipio_MeasurementWriteCSV` is is `diplib/measurement.h`.
91+
`dipio_MeasurementWriteCSV` is in `diplib/measurement.h`.
9292
`dipio_Colour2Gray` functionality is replaced (significantly improved) by `dip::ColorSpaceManager`.
9393
Other functionality no longer exists.
9494

@@ -359,10 +359,10 @@ this list will help in porting your old code that used *DIPlib* to the new versi
359359

360360
## New functionality
361361

362-
- New external library *DIPviewer* adds interactive image display, see [its documentation](/diplib-docs/dipviewer.html).
362+
- New external library *DIPviewer* adds interactive image display, see [its documentation](https://diplib.org/diplib-docs/dipviewer.html).
363363

364364
- New external library *DIPjavaio* adds the option to use *Bio-Formats* to read hundreds of image file formats,
365-
see [its documentation](/diplib-docs/dipjavaio.html).
365+
see [its documentation](https://diplib.org/diplib-docs/dipjavaio.html).
366366

367367
- New analysis functions: `dip::AutoCorrelationFT`, `dip::MeanShift`, `dip::FourierMellinMatch2D`, `dip::MonogenicSignal`,
368368
`dip::MonogenicSignalAnalysis`, `dip::Semivariogram`, `dip::Granulometry`, `dip::FractalDimension`.
@@ -466,4 +466,4 @@ this list will help in porting your old code that used *DIPlib* to the new versi
466466
- New transform functions: `dip::OptimalFourierTransformSize`, `dip::RieszTransform`, `dip::StationaryWaveletTransform`.
467467

468468
- There is also a lot of new functionality in the library infrastructure, which we cannot all list here.
469-
See [the library infrastructure documentation](/diplib-docs/infrastructure.html).
469+
See [the library infrastructure documentation](https://diplib.org/diplib-docs/infrastructure.html).

_changelogs/diplib_3.2.0.md

-1
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,3 @@ date: 2022-02-08
198198
## Changes to *DIPjavaio*
199199

200200
None.
201-

_changelogs/diplib_3.4.0.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
title: "Changes DIPlib 3.4.0"
4+
date: 2022-12-08
45
---
56

67
## Changes to *DIPlib*
@@ -226,7 +227,7 @@ None, but see bugfixes to *DIPlib*.
226227
`dip::Polygon::CovarianceMatrixVertices()`.
227228

228229
- Creating a `dip.Image` object around an existing buffer (i.e. converting a *NumPy* array) causes the image
229-
to be [protected](/diplib-docs/dip-Image.html#protect) by default.
230+
to be [protected](https://diplib.org/diplib-docs/dip-Image.html#protect) by default.
230231
It is possible to manually unprotect the image after conversion.
231232

232233
- `dip.Image.TensorElement()` is deprecated and will be removed in a future version of *PyDIP*. Since the first
@@ -263,4 +264,4 @@ None.
263264

264265
## Changes to *DIPjavaio*
265266

266-
None.
267+
None.

_changelogs/diplib_3.4.1.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
title: "Changes DIPlib 3.4.1"
4+
date: 2023-10-13
45
---
56

67
## Changes to *DIPlib*

_changelogs/diplib_3.4.2.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
title: "Changes DIPlib 3.4.2"
4+
date: 2024-03-16
45
---
56

67
## Changes to *DIPlib*

_changelogs/diplib_3.4.3.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
title: "Changes DIPlib 3.4.3"
4+
date: 2024-03-20
45
---
56

67
## Changes to *DIPlib*

_changelogs/diplib_3.5.0.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
layout: post
33
title: "Changes DIPlib 3.5.0"
4+
date: 2024-06-17
45
---
56

67
## Changes to *DIPlib*

_posts/2024-03-17-Release-v3.4.2.md renamed to _posts/2024-03-16-Release-v3.4.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Release 3.4.2"
4-
date: 2024-03-17
4+
date: 2024-03-16
55
categories: news
66
author: "Cris Luengo"
77
---

_posts/2024-03-21-Release-v3.4.3.md renamed to _posts/2024-03-20-Release-v3.4.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: post
33
title: "Release 3.4.3"
4-
date: 2024-03-21
4+
date: 2024-03-20
55
categories: news
66
author: "Cris Luengo"
77
---

0 commit comments

Comments
 (0)