Martin Nordholts
01113ffeee
app: Handle merge commits for git-version.h
...
Use
git show-ref --hash refs/heads/master
instead of
git log HEAD^..HEAD --pretty=format:%H
so we can handle multi-parent (merge) commits.
2010-07-06 16:02:53 +02:00
Martin Nordholts
9ddbc55a08
libgimpbase: Disable gimp_wire_read() warning
...
Disable gimp_wire_read() warning, most of the time it just gives this
confusing error message when the GIMP core crashes:
(script-fu:28495): LibGimpBase-WARNING **: script-fu: gimp_wire_read(): error
2010-07-06 15:15:29 +02:00
Michael Natterer
b3ee51794d
libgimpwidgets: fix most gtk-doc warnings
2010-07-05 19:04:15 +02:00
Michael Natterer
1f7ff98c45
libgimpwidgets: move docs from template files to inline comments
...
but leave the template file for gimpstock there because its contents
would be too much for gimpstock.h.
2010-07-05 18:01:28 +02:00
Mukund Sivaraman
597b255262
Update Desaturate tool's status text
...
The existing text is poor English and is confusing.
2010-07-05 19:27:44 +05:30
Tor Lillqvist
6bfe88ae17
script-fu build fix for Windows
2010-07-05 09:59:34 +03:00
Michael Natterer
8efe98649e
libgimpthumb: fix all gtk-doc warnings, and reach 100% doc coverage, yay!
2010-07-02 16:01:40 +02:00
Michael Natterer
58dbc8d839
libgimpthumb: move docs from template files to inline comments
2010-07-02 15:53:20 +02:00
Michael Natterer
9d80d8a7cd
libgimpmath: fix all gtk-doc warnings
2010-07-02 14:48:24 +02:00
Michael Natterer
2ce4075eeb
libgimpmath: move docs from template files to inline comments
2010-07-02 14:41:35 +02:00
Michael Natterer
a5e28dec57
libgimpmodule: fix some gtk-doc warnings
2010-07-01 22:33:28 +02:00
Michael Natterer
fcc0a5a424
libgimpmodule: move docs from templates to inline comments
2010-07-01 22:33:28 +02:00
Alexandre Prokoudine
1330ca2ea8
Translation fix by suggestion from Terion
2010-07-01 18:22:38 +04:00
Alexandre Prokoudine
1ab08ade9f
A fix to Russian translation at shimon's suggestion
2010-06-30 19:46:06 +04:00
Michael Natterer
945641232e
libgimpconfig: fix a lot of gtk-doc warnings
2010-06-29 22:19:11 +02:00
Michael Natterer
1af54c7874
libgimpconfig: move docs from template files to inline comments
2010-06-29 20:59:07 +02:00
Sven Neumann
e74989282b
data: add 2.6 splash screen to the splash screen gallery
2010-06-29 20:13:42 +02:00
Michael Natterer
7b335188b6
libgimpcolor: fix most gtk-doc warnings
2010-06-29 20:08:39 +02:00
Michael Natterer
1649241483
libgimpcolor: move docs from template files to inline comments
...
Only added section headers for now, there was nothing else in the
template files.
2010-06-29 19:46:37 +02:00
Michael Natterer
48f54d50f1
devel-docs: really remove the template files
2010-06-29 19:18:52 +02:00
Michael Natterer
3411c7b63a
libgimpbase: move docs from template files to inline comments
...
and remove all template files. Also fixed all gtk-doc warnings
and fixed/added some docs.
2010-06-29 19:16:51 +02:00
Martin Nordholts
81925e424b
app/tests: Prepare test-core.c for other tests
2010-06-29 19:08:59 +02:00
Ulf-D. Ehlert
a09d428c7e
po: Minor fixes to German translations
2010-06-29 18:21:09 +02:00
Marco Ciampa
6ba7aff8e9
Little fix in italian translation.
2010-06-29 18:09:37 +02:00
Martin Nordholts
dd059635d4
app/tests: Rename test-layers to test-core
...
Rename test-layers to test-core so we can put more tests there, like
color processing algorithm tests for example.
2010-06-29 18:08:34 +02:00
Nils Philippsen
04538534fc
Bug 623045 - script-fu: make server IPv6 aware
...
use getnameinfo() instead of inet_ntoa()
use two sockets for IPv4, IPv6
2010-06-29 15:47:01 +02:00
Marco Ciampa
ded69c41a7
Small fix in italian translation.
2010-06-29 12:04:16 +02:00
Michael Natterer
36594d676b
Bump version to 2.7.2
2010-06-29 10:01:53 +02:00
Michael Natterer
f42870648d
app: link ../gimp-debug.o into test-config
2010-06-29 00:25:32 +02:00
Simon Budig
5476b8bdb0
new splash, now scaled to the correct size
2010-06-28 23:47:51 +02:00
Simon Budig
9084fd4316
new splash for the devel version, using the LGM switchboard photo from tml.
2010-06-28 23:07:41 +02:00
Martin Nordholts
f432563be3
And AUTHORS...
2010-06-28 21:55:03 +02:00
Martin Nordholts
47afc71ae2
Update authors.xml for 2.7.1
2010-06-28 21:38:14 +02:00
Martin Nordholts
c59d956d1b
Update NEWS for 2.7.1
...
Update news again with changes up to now.
2010-06-28 18:34:47 +02:00
Michael Natterer
fad6053643
Make cairo code work with newer cairo backends that actually use caching
...
Call cairo_surface_flush() before reading or writing a surface's
pixels directly, and use cairo_surface_mark_dirty() after writing
pixels directly, so we don't read old pixels, and our written pixels
get actually used.
2010-06-28 12:23:31 +02:00
Michael Natterer
d2fd8a8dc8
app: don't call gimp_cell_renderer_viewable_pre_clicked() on a NULL cell
2010-06-28 00:13:19 +02:00
Martin Nordholts
706900c4f6
Bug 589010 - Don't make Alt-Clicked layers active
...
Add a "pre-clicked" signal to GimpCellRendererViewable that can
prevent a selection from happening. Move the Alt-Click code in
GimpLayerTreeView to this signal and if a layer is Alt-Clicked, don't
go ahead and make the layer active. Also add a test for this use case.
2010-06-27 21:46:53 +02:00
Michael Natterer
2b78572604
po-tags: fix charset to fix the build
2010-06-27 21:39:30 +02:00
Marco Ciampa
0092d6cc16
Updated italian translation
2010-06-27 18:20:45 +02:00
Fernando Correia
d7baa20c34
Updated Portuguese translation
2010-06-27 15:15:15 +01:00
Fernando Correia
b85a1efcee
Updated Portuguese translation
2010-06-27 14:53:26 +01:00
Martin Nordholts
4471f0ea4b
Bug 622683 - file export defaults to the wrong directory / folder
...
We were not in sync with the spec:
http://gui.gimp.org/index.php/Save_%2B_export_specification#exporting_files
2010-06-27 14:11:13 +02:00
Martin Nordholts
66e2866a78
app/tests: Make "create_new_image_via_dialog" result more useful
...
Also add a layer in "create_new_image_via_dialog" so the created
image is more useful in following tests.
2010-06-27 13:37:41 +02:00
Martin Nordholts
d8f8acdff3
app/tests: Add convenience macro GIMP_PAUSE()
2010-06-27 13:30:06 +02:00
Martin Nordholts
0258461c9f
app: Format widgets/gimpcellrendererviewable.h
...
Format widgets/gimpcellrendererviewable.h and make room for
gimp_cell_renderer_viewable_pre_select().
2010-06-27 11:51:44 +02:00
Martin Nordholts
1a9eb3e923
app/tests: Use gtk_test_init()
2010-06-27 11:08:42 +02:00
Martin Nordholts
8d0fe6fc4a
app/tests: Output session management test result
...
Output session management test result to be consistent with GLib test
framework test output.
2010-06-27 10:47:30 +02:00
Martin Nordholts
bbfb4b13df
app/tests: Add "gimp-single-image-window" entry to sessionrc
...
Add "gimp-single-image-window" entry to sessionrc. Makes the UI test
behave a bit more nicely.
2010-06-27 10:43:58 +02:00
Martin Nordholts
3f0b473680
app: Don't use actions for Alt-Click on layer
...
Don't use an action based implementation of Alt-Click for "Layer to
selection" since the actions will always use the active drawable,
preventing us from solving bug 589010. Use the tree model and
gimp_channel_select_alpha() instead.
2010-06-27 10:40:56 +02:00
Martin Nordholts
aeed966943
app: Format widgets/gimplayertreeview.c function prototypes
...
Format widgets/gimplayertreeview.c function prototypes with
egtk-format-protos.
2010-06-27 10:40:56 +02:00