Made 2.3.13 development release.

2006-11-23  Sven Neumann  <sven@gimp.org>

        * Made 2.3.13 development release.
This commit is contained in:
Sven Neumann 2006-11-23 23:14:42 +00:00 committed by Sven Neumann
parent 8660ecf2ae
commit 9b9c336ed8
3 changed files with 43 additions and 28 deletions

View File

@ -1,4 +1,8 @@
2006-11-24 Simon Budig <simon@gimp.org> 2006-11-23 Sven Neumann <sven@gimp.org>
* Made 2.3.13 development release.
2006-11-23 Simon Budig <simon@gimp.org>
* plug-ins/common/tiff.c: fix warning about uninitialized variable * plug-ins/common/tiff.c: fix warning about uninitialized variable

View File

@ -39,9 +39,9 @@ Valid properties and their default values are:
(temp-path "${gimp_dir}/tmp") (temp-path "${gimp_dir}/tmp")
Sets the folder for temporary storage. Files will appear here during the Sets the folder for temporary storage. Files will appear here during the
course of running the GIMP. Most files will disappear when the GIMP exits, course of running GIMP. Most files will disappear when GIMP exits, but some
but some files are likely to remain, so it is best if this folder not be one files are likely to remain, so it is best if this folder not be one that is
that is shared by other users. This is a single folder. shared by other users. This is a single folder.
.TP .TP
(swap-path "${gimp_dir}") (swap-path "${gimp_dir}")
@ -71,7 +71,7 @@ in bytes, kilobytes, megabytes or gigabytes. If no suffix is specified the
size defaults to being specified in kilobytes. size defaults to being specified in kilobytes.
.TP .TP
(interpolation-type linear) (interpolation-type cubic)
Sets the level of interpolation used for scaling and other transformations. Sets the level of interpolation used for scaling and other transformations.
Possible values are none, linear, cubic and lanczos. Possible values are none, linear, cubic and lanczos.
@ -308,7 +308,7 @@ Possible values are yes and no.
(min-colors 144) (min-colors 144)
Generally only a concern for 8-bit displays, this sets the minimum number of Generally only a concern for 8-bit displays, this sets the minimum number of
system colors allocated for the GIMP. This is an integer value. system colors allocated for GIMP. This is an integer value.
.TP .TP
(color-management (color-management
@ -320,6 +320,12 @@ system colors allocated for the GIMP. This is an integer value.
Defines the color management behavior. This is a parameter list. Defines the color management behavior. This is a parameter list.
.TP
(color-profile-policy ask)
How to handle embedded color profiles when opening a file. Possible values
are ask, keep and convert.
.TP .TP
(save-document-history yes) (save-document-history yes)
@ -551,8 +557,8 @@ information. This is a float value.
.TP .TP
(monitor-resolution-from-windowing-system yes) (monitor-resolution-from-windowing-system yes)
When enabled, the GIMP will use the monitor resolution from the windowing When enabled, GIMP will use the monitor resolution from the windowing system.
system. Possible values are yes and no. Possible values are yes and no.
.TP .TP
(navigation-preview-size medium) (navigation-preview-size medium)
@ -626,8 +632,8 @@ no.
.TP .TP
(trust-dirty-flag no) (trust-dirty-flag no)
When enabled, the GIMP will not save an image if it has not been changed since When enabled, GIMP will not save an image if it has not been changed since it
it was opened. Possible values are yes and no. was opened. Possible values are yes and no.
.TP .TP
(save-device-status no) (save-device-status no)
@ -638,8 +644,8 @@ Possible values are yes and no.
.TP .TP
(save-session-info yes) (save-session-info yes)
Save the positions and sizes of the main dialogs when the GIMP exits. Save the positions and sizes of the main dialogs when GIMP exits. Possible
Possible values are yes and no. values are yes and no.
.TP .TP
(restore-session yes) (restore-session yes)
@ -650,7 +656,7 @@ values are yes and no.
.TP .TP
(save-tool-options no) (save-tool-options no)
Save the tool options when the GIMP exits. Possible values are yes and no. Save the tool options when GIMP exits. Possible values are yes and no.
.TP .TP
(show-tips yes) (show-tips yes)
@ -679,8 +685,8 @@ and no.
.TP .TP
(save-accels yes) (save-accels yes)
Save changed keyboard shortcuts when the GIMP exits. Possible values are yes Save changed keyboard shortcuts when GIMP exits. Possible values are yes and
and no. no.
.TP .TP
(restore-accels yes) (restore-accels yes)

View File

@ -13,9 +13,9 @@
# relative to your home directory. # relative to your home directory.
# Sets the folder for temporary storage. Files will appear here during the # Sets the folder for temporary storage. Files will appear here during the
# course of running the GIMP. Most files will disappear when the GIMP exits, # course of running GIMP. Most files will disappear when GIMP exits, but
# but some files are likely to remain, so it is best if this folder not be # some files are likely to remain, so it is best if this folder not be one
# one that is shared by other users. This is a single folder. # that is shared by other users. This is a single folder.
# #
# (temp-path "${gimp_dir}/tmp") # (temp-path "${gimp_dir}/tmp")
@ -47,7 +47,7 @@
# Sets the level of interpolation used for scaling and other transformations. # Sets the level of interpolation used for scaling and other transformations.
# Possible values are none, linear, cubic and lanczos. # Possible values are none, linear, cubic and lanczos.
# #
# (interpolation-type linear) # (interpolation-type cubic)
# Sets the plug-in search path. This is a colon-separated list of folders to # Sets the plug-in search path. This is a colon-separated list of folders to
# search. # search.
@ -244,7 +244,7 @@
# (install-colormap no) # (install-colormap no)
# Generally only a concern for 8-bit displays, this sets the minimum number # Generally only a concern for 8-bit displays, this sets the minimum number
# of system colors allocated for the GIMP. This is an integer value. # of system colors allocated for GIMP. This is an integer value.
# #
# (min-colors 144) # (min-colors 144)
@ -257,6 +257,11 @@
# (simulation-rendering-intent perceptual) # (simulation-rendering-intent perceptual)
# (display-module "CdisplayLcms")) # (display-module "CdisplayLcms"))
# How to handle embedded color profiles when opening a file. Possible values
# are ask, keep and convert.
#
# (color-profile-policy ask)
# Add all opened and saved files to the document history on disk. Possible # Add all opened and saved files to the document history on disk. Possible
# values are yes and no. # values are yes and no.
# #
@ -414,7 +419,7 @@
# #
# (monitor-yresolution 72.000000) # (monitor-yresolution 72.000000)
# When enabled, the GIMP will use the monitor resolution from the windowing # When enabled, GIMP will use the monitor resolution from the windowing
# system. Possible values are yes and no. # system. Possible values are yes and no.
# #
# (monitor-resolution-from-windowing-system yes) # (monitor-resolution-from-windowing-system yes)
@ -481,8 +486,8 @@
# #
# (move-tool-changes-active no) # (move-tool-changes-active no)
# When enabled, the GIMP will not save an image if it has not been changed # When enabled, GIMP will not save an image if it has not been changed since
# since it was opened. Possible values are yes and no. # it was opened. Possible values are yes and no.
# #
# (trust-dirty-flag no) # (trust-dirty-flag no)
@ -491,8 +496,8 @@
# #
# (save-device-status no) # (save-device-status no)
# Save the positions and sizes of the main dialogs when the GIMP exits. # Save the positions and sizes of the main dialogs when GIMP exits. Possible
# Possible values are yes and no. # values are yes and no.
# #
# (save-session-info yes) # (save-session-info yes)
@ -501,7 +506,7 @@
# #
# (restore-session yes) # (restore-session yes)
# Save the tool options when the GIMP exits. Possible values are yes and no. # Save the tool options when GIMP exits. Possible values are yes and no.
# #
# (save-tool-options no) # (save-tool-options no)
@ -525,8 +530,8 @@
# #
# (can-change-accels no) # (can-change-accels no)
# Save changed keyboard shortcuts when the GIMP exits. Possible values are # Save changed keyboard shortcuts when GIMP exits. Possible values are yes
# yes and no. # and no.
# #
# (save-accels yes) # (save-accels yes)