<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Liquid Rescale GIMP plugin - new forum posts</title>
		<link>http://liquidrescale.wikidot.com/forum/start</link>
		<description>Posts in forums of the site &quot;Liquid Rescale GIMP plugin&quot; - content-aware resizing for the GIMP</description>
				<copyright></copyright>
		<lastBuildDate>Tue, 14 Feb 2012 07:37:59 +0000</lastBuildDate>
		
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-23989#post-1349956</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-23989/gmsgfmt-empty-in-po-makefile-solved-with-workaround#post-1349956</link>
				<description></description>
				<pubDate>Fri, 13 Jan 2012 19:35:05 +0000</pubDate>
				<wikidot:authorName>Andrei</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I got this error when I forgot to run &quot;ldconfig&quot; after upgrading gettext. Try doing &quot;sudo ldconfig&quot; and then re-running ./configure.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-23989/gmsgfmt-empty-in-po-makefile-solved-with-workaround">$(GMSGFMT) empty in po/Makefile [solved with workaround]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-422108#post-1330693</guid>
				<title>gimp_image_add_layer deprecated in gimp 2.7/2.8</title>
				<link>http://liquidrescale.wikidot.com/forum/t-422108/gimp-image-add-layer-deprecated-in-gimp-2-7-2-8#post-1330693</link>
				<description></description>
				<pubDate>Sun, 18 Dec 2011 20:12:26 +0000</pubDate>
				<wikidot:authorName>Sven Lankes</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I've noticed that gimp 2.7 throws an ugly error-dialog stating that gimp-image-add-layer<br /> is deprecated everytime the plugin tries to add a layer. I've fixed this for the fedora<br /> package of the liquid-rescale-gimp-plugin by replacing the function calls using<br /> the following patch:</p> <div class="code"> <pre> <code>diff --git a/src/io_functions.c b/src/io_functions.c index 20917df..b159ed8 100644 --- a/src/io_functions.c +++ b/src/io_functions.c @@ -227,7 +227,7 @@ write_vmap_to_layer (LqrVMap * vmap, gpointer data) gimp_layer_new (image_ID, name, w, h, GIMP_RGBA_IMAGE, 100, GIMP_NORMAL_MODE); gimp_drawable_fill (seam_layer_ID, GIMP_TRANSPARENT_FILL); - gimp_image_add_layer (image_ID, seam_layer_ID, -1); + gimp_image_insert_layer (image_ID, seam_layer_ID, -1, -1); gimp_layer_translate (seam_layer_ID, x_off, y_off); if (seam_layer_p) { diff --git a/src/layers_combo.c b/src/layers_combo.c index 10d810e..e032eed 100644 --- a/src/layers_combo.c +++ b/src/layers_combo.c @@ -199,7 +199,7 @@ callback_new_mask_button (GtkWidget * button, gpointer data) gimp_layer_new (p_data-&gt;image_ID, nl_data-&gt;name, p_data-&gt;old_width, p_data-&gt;old_height, image_type, 50, GIMP_NORMAL_MODE); - gimp_image_add_layer (p_data-&gt;image_ID, layer_ID, -1); + gimp_image_insert_layer (p_data-&gt;image_ID, layer_ID, -1, -1); gimp_drawable_fill (layer_ID, GIMP_TRANSPARENT_FILL); gimp_layer_translate (layer_ID, p_data-&gt;x_off, p_data-&gt;y_off); gimp_image_undo_group_end (p_data-&gt;image_ID); diff --git a/src/render.c b/src/render.c index f50fc8c..b7e8c7e 100644 --- a/src/render.c +++ b/src/render.c @@ -172,7 +172,7 @@ render_init_carver (PlugInImageVals * image_vals, { g_snprintf (new_layer_name, LQR_MAX_NAME_LENGTH, &quot;%s LqR&quot;, layer_name); layer_ID = gimp_layer_copy (layer_ID); - gimp_image_add_layer (image_ID, layer_ID, -1); + gimp_image_insert_layer (image_ID, layer_ID, -1, -1); gimp_drawable_set_name (layer_ID, new_layer_name); gimp_drawable_set_visible (layer_ID, FALSE); } @@ -181,7 +181,7 @@ render_init_carver (PlugInImageVals * image_vals, image_ID = gimp_image_new (old_width, old_height, gimp_image_base_type(image_ID)); gimp_image_undo_group_start(image_ID); layer_ID = gimp_layer_new_from_drawable (layer_ID, image_ID); - gimp_image_add_layer (image_ID, layer_ID, -1); + gimp_image_insert_layer (image_ID, layer_ID, -1, -1); gimp_layer_translate(layer_ID, -x_off, -y_off); gimp_drawable_set_visible (layer_ID, TRUE); if (vals-&gt;resize_aux_layers) @@ -858,7 +858,7 @@ static gboolean copy_aux_layer_to_new_image (gint32 image_ID, gint32 * layer_ID_ if (old_layer_ID) { new_layer_ID = gimp_layer_new_from_drawable (old_layer_ID, image_ID); - gimp_image_add_layer (image_ID, new_layer_ID, -1); + gimp_image_insert_layer (image_ID, new_layer_ID, -1, -1); /* gimp_drawable_offsets (old_layer_ID, &amp;aux_x_off, &amp;aux_y_off); */ gimp_layer_translate (new_layer_ID, -x_off, -y_off); }</code> </pre></div> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-422108/gimp-image-add-layer-deprecated-in-gimp-2-7-2-8">gimp_image_add_layer deprecated in gimp 2.7/2.8</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-410790#post-1304165</guid>
				<title>Re: Trying to update my X11</title>
				<link>http://liquidrescale.wikidot.com/forum/t-410790/trying-to-update-my-x11#post-1304165</link>
				<description></description>
				<pubDate>Sat, 12 Nov 2011 12:24:42 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Sorry, this forum is specific for a GIMP plug-in, not for GIMP in general and even less for X11. Plus, I don't own a mac so I cannot help in any way (other than suggesting you to find an X11-specific forum). I'll remove this thread in a while.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18436">Hidden / Deleted threads</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-410790/trying-to-update-my-x11">Trying to update my X11</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-410790#post-1304164</guid>
				<title>Trying to update my X11</title>
				<link>http://liquidrescale.wikidot.com/forum/t-410790/trying-to-update-my-x11#post-1304164</link>
				<description></description>
				<pubDate>Sat, 12 Nov 2011 12:19:40 +0000</pubDate>
				<wikidot:authorName>Debra Girard</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I have an older version of X11&#160;2.3.6, on my iMac OSX Snow Leopard, and I think it is contributing to Gimp's crashing on me. I upgraded from a Tiger to Snow Leopard, and I guess forgot to install the upgraded version of X11. How do I do this? I went to Apple support and even joined Apple Developer and they mentioned an X code- I tried to download it but no go. is that the same as X11? I really would appreciate a response, because I'm tying to download GIMP, and I have a project coming up.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18436">Hidden / Deleted threads</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-410790/trying-to-update-my-x11">Trying to update my X11</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-370027#post-1192699</guid>
				<title>Re: Broken Link</title>
				<link>http://liquidrescale.wikidot.com/forum/t-370027/broken-link-fixed#post-1192699</link>
				<description></description>
				<pubDate>Sun, 03 Jul 2011 17:57:41 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have corrected the links with the updated locations, thanks for reporting.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-370027/broken-link-fixed">Broken Link [fixed]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-370027#post-1192694</guid>
				<title>Broken Link</title>
				<link>http://liquidrescale.wikidot.com/forum/t-370027/broken-link-fixed#post-1192694</link>
				<description></description>
				<pubDate>Sun, 03 Jul 2011 17:41:31 +0000</pubDate>
				<wikidot:authorName>Stefan</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I apologise if this is an incorrect place to put this.</p> <p>The link to the paper by Shai Avidan and Ariel Shamir that can be found <a href="http://liquidrescale.wikidot.com/">here</a> or <a href="http://liblqr.wikidot.com/">here</a> are both broken.</p> <p>The broken link points to here:<br /> <a href="http://www.faculty.idc.ac.il/arik/imret.pdf">http://www.faculty.idc.ac.il/arik/imret.pdf</a></p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-370027/broken-link-fixed">Broken Link [fixed]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-366950#post-1180374</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved#post-1180374</link>
				<description></description>
				<pubDate>Fri, 17 Jun 2011 13:20:31 +0000</pubDate>
				<wikidot:authorName>hanciong</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>IT WORKS!! thanx very much for your help!!</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved">how to change language?? [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-366950#post-1180371</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved#post-1180371</link>
				<description></description>
				<pubDate>Fri, 17 Jun 2011 13:18:27 +0000</pubDate>
				<wikidot:authorName>hanciong</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>thanx, I will try</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved">how to change language?? [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-366950#post-1179518</guid>
				<title>Re: how to change language??</title>
				<link>http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved#post-1179518</link>
				<description></description>
				<pubDate>Thu, 16 Jun 2011 11:25:49 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I assume you are working on Windows. My advice, which is based on my lack of knowledge of that operationg system, is:</p> <ol> <li>open the file explorer</li> <li>go to the folder <tt>C:\Programmi\GIMP-2.0\share\locale\it\LC_MESSAGES</tt> or something similar<sup class="footnoteref"><a id="footnoteref-301596-1" href="javascript:;" class="footnoteref" >1</a></sup></li> <li>delete the file <tt>gimp20-lqr-plugin.mo</tt>, or change its name to something else like <tt>gimp20-lqr-plugin-backup.mo</tt> or whatever</li> </ol> <p>I hope this helps.</p> <div class="footnotes-footer"> <div class="title">Footnotes</div> <div class="footnote-footer" id="footnote-301596-1"><a href="javascript:;" >1</a>. you may need to change C: to something else, and I assume your <tt>Program Files</tt> folder is called <tt>Programmi</tt> and that you have installed GIMP in the default location</div> </div> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved">how to change language?? [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-366950#post-1179490</guid>
				<title>how to change language??</title>
				<link>http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved#post-1179490</link>
				<description></description>
				<pubDate>Thu, 16 Jun 2011 10:14:44 +0000</pubDate>
				<wikidot:authorName>hanciong</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello, I have downloaded the plugin and installed it correctly. but because I bought my laptop in Italy, the plugin uses Italian language! Despite the fact that the GIMP itself uses English language. So my question is, how to change the language of the plugin into English? Thanx a lot</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-366950/how-to-change-language-solved">how to change language?? [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-365651#post-1173325</guid>
				<title>lol</title>
				<link>http://liquidrescale.wikidot.com/forum/t-365651/lol#post-1173325</link>
				<description></description>
				<pubDate>Thu, 09 Jun 2011 04:04:11 +0000</pubDate>
				<wikidot:authorName>tumadam</wikidot:authorName>				<wikidot:authorUserId>984810</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						<p class="comment-removed">Comment removed.</p><br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18436">Hidden / Deleted threads</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-365651/lol">lol</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-1101824</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6 [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-1101824</link>
				<description></description>
				<pubDate>Fri, 01 Apr 2011 15:54:52 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>There is apparently a 64-bit Windows version around now, see the comments in this page:<br /> <a href="http://registry.gimp.org/node/144">http://registry.gimp.org/node/144</a><br /> (I haven't tested it).</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-1087391</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-1087391</link>
				<description></description>
				<pubDate>Sun, 27 Mar 2011 16:33:16 +0000</pubDate>
				<wikidot:authorName>Oceander</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>That would be a big problem, wouldn't it! Thanks, I appreciate it (even though I was looking forward to trying it out).</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-292975#post-954854</guid>
				<title>Re: problems with loading a file</title>
				<link>http://liquidrescale.wikidot.com/forum/t-292975/problems-with-loading-a-file#post-954854</link>
				<description></description>
				<pubDate>Sun, 19 Dec 2010 10:46:40 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>This doesn't seem to have anything to do with the Liquid Rescale plug-in.</p> <p>From what I read, the problem is with the plug-in which is used internally by GIMP to open jpeg files.</p> <p>Therefore, you should better ask for help on the official GIMP channels.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-292975/problems-with-loading-a-file">problems with loading a file</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-292975#post-954849</guid>
				<title>problems with loading a file</title>
				<link>http://liquidrescale.wikidot.com/forum/t-292975/problems-with-loading-a-file#post-954849</link>
				<description></description>
				<pubDate>Sun, 19 Dec 2010 10:29:30 +0000</pubDate>
				<wikidot:authorName>Trevor</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Having problems with loading an existing jpeg file. Message received " file-jpeg.exe has stopped working" Gimp message "Plug-in crashed: "file-jpeg.exe"<br /> (C:\Program Files\Gimp-2.0\lib\gimp\2.0\plug-ins\file-jpeg.exe)"</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-292975/problems-with-loading-a-file">problems with loading a file</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-286003#post-949903</guid>
				<title>Re: Liquid Rescale Changes Image Size</title>
				<link>http://liquidrescale.wikidot.com/forum/t-286003/liquid-rescale-changes-image-size-invalid#post-949903</link>
				<description></description>
				<pubDate>Mon, 13 Dec 2010 12:18:31 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>This is not a bug: there's an option you can untick to prevent this, you find it in the Output tab. Look at the documentation for more help.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-286003/liquid-rescale-changes-image-size-invalid">Liquid Rescale Changes Image Size [INVALID]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-949898</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6 [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-949898</link>
				<description></description>
				<pubDate>Mon, 13 Dec 2010 12:13:59 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I believe that the problem is the incompatibility between 64-bit and 32-bit applications. The plugin is compiled for 32-bit versions only.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-286003#post-930338</guid>
				<title>Liquid Rescale Changes Image Size</title>
				<link>http://liquidrescale.wikidot.com/forum/t-286003/liquid-rescale-changes-image-size-invalid#post-930338</link>
				<description></description>
				<pubDate>Sat, 20 Nov 2010 21:18:39 +0000</pubDate>
				<wikidot:authorName>Ian</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>When using liquid rescale on a layer.</p> <p>Select a layer -&gt;Layer-&gt;Liquid rescale-&gt; Change width-&gt;Click ok</p> <p>The image is now resized to be the size of the changed layer. Big pain.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-286003/liquid-rescale-changes-image-size-invalid">Liquid Rescale Changes Image Size [INVALID]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-875484</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-875484</link>
				<description></description>
				<pubDate>Fri, 17 Sep 2010 19:11:02 +0000</pubDate>
				<wikidot:authorName>Rob</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Bug Report:</p> <p>I have GIMP 2.7.1 (Development Release), it is installed in<br /> "C:\Program Files\GIMP 2.7\" while the _REGULAR_ GIMP (non-development) is in<br /> "C:\Program Files\GIMP-2.7\" (Notice the "-" in the pathname). The dev version<br /> does NOT have intl.dll so I had to copy it from the other directory. I think it may<br /> be optional so the 'Installer' would need to check for it and NOT assume it is present.</p> <p>1. I downloaded <a href="http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.1-liblqr_0.4.1_win32_setup-1.exe">http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.1-liblqr_0.4.1_win32_setup-1.exe</a> .<br /> 2. First the "Installer" said that GIMP was not installed but I could continue ONLY if I specified the Folder, I said it was in "C:\Program Files\GIMP 2.7" and the "Installer" completed properly.<br /> 3. When I started GIMP the 'pyconsole' ran to detect new plugins but ultimatley I got a message that said:</p> <p>"<br /> gimp-lqr-plugin.exe - Unable to Locate Component<br /> (X) This application has failed to start because intl.dll was not found. Re-installing the application may fix this problem.<br /> "</p> <p>After copying the '.dll' from the non-dev to the dev's directory the plug-in shows up in the bottom of the Layer menu.</p> <p>Rob</p> <p>(PS: No reply required, WFM.)</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-263908#post-868140</guid>
				<title>Please help me get rid of this plugin</title>
				<link>http://liquidrescale.wikidot.com/forum/t-263908/message-deleted#post-868140</link>
				<description></description>
				<pubDate>Wed, 08 Sep 2010 22:27:06 +0000</pubDate>
				<wikidot:authorName>hayley3</wikidot:authorName>				<wikidot:authorUserId>560928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Please help!<br /> I uninstalled gimp, reinstalled gimp..I can't think of anything else to do.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18436">Hidden / Deleted threads</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-263908/message-deleted">Message deleted</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-210624#post-854673</guid>
				<title>Re: Incorrect path for locale data on non-Unix systems</title>
				<link>http://liquidrescale.wikidot.com/forum/t-210624/incorrect-path-for-locale-data-on-non-unix-systems#post-854673</link>
				<description></description>
				<pubDate>Sat, 21 Aug 2010 15:59:59 +0000</pubDate>
				<wikidot:authorName>Nick</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi Carlo,<br /> your answer to Torstens suggestion isn't correct.<br /> Every plugin automatically initiates those functions.<br /> See: <a href="http://developer.gimp.org/api/2.0/libgimpbase/libgimpbase-gimpenv.html">http://developer.gimp.org/api/2.0/libgimpbase/libgimpbase-gimpenv.html</a><br /> Regards, Nick</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-210624/incorrect-path-for-locale-data-on-non-unix-systems">Incorrect path for locale data on non-Unix systems</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-853039</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6 [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-853039</link>
				<description></description>
				<pubDate>Thu, 19 Aug 2010 01:25:02 +0000</pubDate>
				<wikidot:authorName>Oceander</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>This seems like the right subject-matter thread for my question, although it's not quite the same as the OP's original question.</p> <p>My problem is this: I am running the x64 version of GIMP 2.6.8 on the 64-bit version of Vista. My registry does contain the entry "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\WinGimp-2.0_is1\InstallLocation" and the value is the one listed: "C:\Program Files\GIMP-2.0\" however, here is what happens when I tried to install the .71 version of the plug-in.</p> <p>First, the installer said that it couldn't find the installed copy of GIMP, and that I would have to manually point to the folder where GIMP was installed. I did that, and then the installer appeared to work. However, when then tried to fire up GIMP, I got several errors stating that the plugin had terminated; I got the error dialogue window twice, clicked through it, and then when GIMP had finished starting up, the plugin entry on the Layers menu was not there.</p> <p>The error log entry that I found in the Vista event viewer says this: "Faulting application plug_in_lqr_iter.exe, version 0.0.0.0, time stamp 0x4c10d2d1, faulting module ntdll.dll, version 6.0.6002.18005, time stamp 0x49e03824, exception code 0xc000007b, fault offset 0x0006f04e, process id 0xdf4, application start time 0x01cb3f3a866ffb55."</p> <p>Is it possible that this is related to the fact that I'm running the x64 version of 2.6.8 (which I understand is considered experimental, so I understand if that applies to this plugin as well), and that the GIMP installation is therefore installed in the Programs file for 64-bit applications instead of being installed to the Programs folder that Vista reserves for 32-bit applications?</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-253317#post-828682</guid>
				<title>Re: compile lqr plugin</title>
				<link>http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved#post-828682</link>
				<description></description>
				<pubDate>Wed, 14 Jul 2010 12:13:42 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You may consider giving the command</p> <div class="code"> <pre> <code>export PKG_CONFIG_PATH=/usr/lib/pkgconfig</code> </pre></div> <br /> before calling configure to avoid setting flags by hand.<br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved">compile lqr plugin [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-253317#post-828680</guid>
				<title>Re: compile lqr plugin</title>
				<link>http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved#post-828680</link>
				<description></description>
				<pubDate>Wed, 14 Jul 2010 11:59:18 +0000</pubDate>
				<wikidot:authorName>BigB</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>first thanks for the fast help</p> <p>works fine</p> <p>the "normal" configure would't find lqr</p> <p>./configure<br /> checking for a BSD-compatible install… /usr/bin/install -c<br /> checking whether build environment is sane… yes<br /> checking for gawk… gawk<br /> checking whether make sets $(MAKE)… yes<br /> checking for gcc… gcc<br /> checking whether the C compiler works… yes<br /> checking for C compiler default output file name… a.out<br /> checking for suffix of executables…<br /> checking whether we are cross compiling… no<br /> checking for suffix of object files… o<br /> checking whether we are using the GNU C compiler… yes<br /> checking whether gcc accepts -g… yes<br /> checking for gcc option to accept ISO C89… none needed<br /> checking for style of include used by make… GNU<br /> checking dependency style of gcc… gcc3<br /> checking for gcc… (cached) gcc<br /> checking whether we are using the GNU C compiler… (cached) yes<br /> checking whether gcc accepts -g… (cached) yes<br /> checking for gcc option to accept ISO C89… (cached) none needed<br /> checking dependency style of gcc… (cached) gcc3<br /> checking how to run the C preprocessor… gcc -E<br /> checking for grep that handles long lines and -e… /usr/bin/grep<br /> checking for egrep… /usr/bin/grep -E<br /> checking for ANSI C header files… yes<br /> checking whether to enable maintainer-specific portions of Makefiles… no<br /> checking for pkg-config… /usr/bin/pkg-config<br /> checking pkg-config is at least version 0.9.0… yes<br /> checking for GIMP… yes<br /> checking for LQR… configure: error: Package requirements (lqr-1 &gt;= 0.4.0) were not met:</p> <p>No package 'lqr-1' found</p> <p>Consider adjusting the PKG_CONFIG_PATH environment variable if you<br /> installed software in a non-standard prefix.</p> <p>Alternatively, you may set the environment variables LQR_CFLAGS<br /> and LQR_LIBS to avoid the need to call pkg-config.<br /> See the pkg-config man page for more details.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved">compile lqr plugin [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-253317#post-828675</guid>
				<title>Re: compile lqr plugin</title>
				<link>http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved#post-828675</link>
				<description></description>
				<pubDate>Wed, 14 Jul 2010 11:47:47 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>this is wrong</p> <div class="code"> <pre> <code>LQR_CFLAGS=/usr/include/lqr-1/lqr.h</code> </pre></div> <br /> it should be <div class="code"> <pre> <code>LQR_CFLAGS=-I/usr/include/lqr-1</code> </pre></div> <br /> If you look at the command line and the error message of make, you'll see that, because of the wrong flag, it's trying to compile 2 files at once, lqr.h and main.c.<br /> (BTW you shouldn't be needing any additional flags normally, ./configure should be able to take care of the liblqr flags.)<br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved">compile lqr plugin [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-253317#post-828667</guid>
				<title>compile lqr plugin</title>
				<link>http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved#post-828667</link>
				<description></description>
				<pubDate>Wed, 14 Jul 2010 11:25:21 +0000</pubDate>
				<wikidot:authorName>BigB</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello</p> <p>1. the configure</p> <p>./configure LQR_LIBS=/usr/lib/liblqr-1.so LQR_CFLAGS=/usr/include/lqr-1/lqr.h<br /> checking for a BSD-compatible install… /usr/bin/install -c<br /> checking whether build environment is sane… yes<br /> checking for gawk… gawk<br /> checking whether make sets $(MAKE)… yes<br /> checking for gcc… gcc<br /> checking whether the C compiler works… yes<br /> checking for C compiler default output file name… a.out<br /> checking for suffix of executables…<br /> checking whether we are cross compiling… no<br /> checking for suffix of object files… o<br /> checking whether we are using the GNU C compiler… yes<br /> checking whether gcc accepts -g… yes<br /> checking for gcc option to accept ISO C89… none needed<br /> checking for style of include used by make… GNU<br /> checking dependency style of gcc… gcc3<br /> checking for gcc… (cached) gcc<br /> checking whether we are using the GNU C compiler… (cached) yes<br /> checking whether gcc accepts -g… (cached) yes<br /> checking for gcc option to accept ISO C89… (cached) none needed<br /> checking dependency style of gcc… (cached) gcc3<br /> checking how to run the C preprocessor… gcc -E<br /> checking for grep that handles long lines and -e… /usr/bin/grep<br /> checking for egrep… /usr/bin/grep -E<br /> checking for ANSI C header files… yes<br /> checking whether to enable maintainer-specific portions of Makefiles… no<br /> checking for pkg-config… /usr/bin/pkg-config<br /> checking pkg-config is at least version 0.9.0… yes<br /> checking for GIMP… yes<br /> checking for LQR… yes<br /> checking whether NLS is requested… yes<br /> checking for intltool-update… /usr/bin/intltool-update<br /> checking for intltool-merge… /usr/bin/intltool-merge<br /> checking for intltool-extract… /usr/bin/intltool-extract<br /> checking for xgettext… /usr/bin/xgettext<br /> checking for msgmerge… /usr/bin/msgmerge<br /> checking for msgfmt… /usr/bin/msgfmt<br /> checking for gmsgfmt… /usr/bin/msgfmt<br /> checking for perl… /usr/bin/perl<br /> checking for perl &gt;= 5.8.1… 5.10.0<br /> checking for XML::Parser… ok<br /> checking for sys/types.h… yes<br /> checking for sys/stat.h… yes<br /> checking for stdlib.h… yes<br /> checking for string.h… yes<br /> checking for memory.h… yes<br /> checking for strings.h… yes<br /> checking for inttypes.h… yes<br /> checking for stdint.h… yes<br /> checking for unistd.h… yes<br /> checking locale.h usability… yes<br /> checking locale.h presence… yes<br /> checking for locale.h… yes<br /> checking for LC_MESSAGES… yes<br /> checking libintl.h usability… yes<br /> checking libintl.h presence… yes<br /> checking for libintl.h… yes<br /> checking for ngettext in libc… yes<br /> checking for dgettext in libc… yes<br /> checking for bind_textdomain_codeset… yes<br /> checking for msgfmt… (cached) /usr/bin/msgfmt<br /> checking for dcgettext… yes<br /> checking if msgfmt accepts -c… yes<br /> checking for gmsgfmt… (cached) /usr/bin/msgfmt<br /> checking for xgettext… (cached) /usr/bin/xgettext<br /> checking for catalogs to be installed… it fr ru pt_BR de eu_ES zh_CN es_AR hu ro_RO sr es_ES nb_NO zh_TW<br /> checking for bind_textdomain_codeset… (cached) yes<br /> checking if GTK+ is version 2.12.0 or newer… yes<br /> checking if GIMP is version 2.4.0 or newer… yes<br /> checking if we are on Win32… no<br /> configure: creating ./config.status<br /> config.status: creating Makefile<br /> config.status: creating src/Makefile<br /> config.status: creating gap/Makefile<br /> config.status: creating batch/Makefile<br /> config.status: creating po/Makefile.in<br /> config.status: creating help/Makefile<br /> config.status: creating help/en/Makefile<br /> config.status: creating help/en/images/Makefile<br /> config.status: creating help/it/Makefile<br /> config.status: creating help/it/images/Makefile<br /> config.status: creating help/ru/Makefile<br /> config.status: creating help/ru/images/Makefile<br /> config.status: creating help/css/Makefile<br /> config.status: creating config.h<br /> config.status: config.h is unchanged<br /> config.status: executing depfiles commands<br /> config.status: executing default-1 commands<br /> config.status: executing po/stamp-it commands</p> <p>2. make</p> <p>make<br /> make all-recursive<br /> make[1]: Entering directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1’<br /> Making all in po<br /> make[2]: Entering directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/po’<br /> make[2]: Für das Ziel »all« ist nichts zu tun.<br /> make[2]: Leaving directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/po’<br /> Making all in src<br /> make[2]: Entering directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/src’<br /> if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\""/usr/local/share/locale"\" -DPLUGIN_DATADIR=\""/usr/local/share/gimp-lqr-plugin"\" -I.. -I/usr/include/gimp-2.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 /usr/include/lqr-1/lqr.h -I/usr/local/include -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -g -O2 -Wall -MT main.o -MD -MP -MF ".deps/main.Tpo" -c -o main.o main.c; then mv -f ".deps/main.Tpo" ".deps/main.Po"; else rm -f ".deps/main.Tpo"; exit 1; fi<br /> gcc:-o can not be specified by -c or -S with multiple files<br /> make[2]: <strong>* [main.o] Error 1<br /> make[2]: Leaving directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1/src’<br /> make[1]: *</strong> [all-recursive] Error 1<br /> make[1]: Leaving directory ‘/home/xxx/downloads/gimp-lqr-plugin-0.7.1’<br /> make: *** [all] Error 2</p> <p>any idea ?</p> <p>thx<br /> regards BigB</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-253317/compile-lqr-plugin-solved">compile lqr plugin [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-249172#post-813230</guid>
				<title>New package available for v0.7.1: Slackware 13.1 i686</title>
				<link>http://liquidrescale.wikidot.com/forum/t-249172/new-package-available-for-v0-7-1:slackware-13-1-i686#post-813230</link>
				<description></description>
				<pubDate>Mon, 21 Jun 2010 16:12:35 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>An updated package for v0.7.1 of the plugin is now available for Slackware 13.1 i686 in the <a href="http://liquidrescale.wikidot.com/en:download-page-linux">Linux download page</a>.<br /> A Slackware package for the latest version of the liblqr library is also available, <a href="http://liblqr.wikidot.com/en:download-page" >here</a>.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18439">General / News</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-249172/new-package-available-for-v0-7-1:slackware-13-1-i686">New package available for v0.7.1: Slackware 13.1 i686</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-25394#post-808202</guid>
				<title>Re: Won&#039;t install with GIMP 2.4 [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-25394/won-t-install-with-gimp-2-4-solved#post-808202</link>
				<description></description>
				<pubDate>Mon, 14 Jun 2010 10:30:11 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>It looks like you've only installed the liblqr library. Install the <a href="http://liquidrescale.wikidot.com/en:download-page-sources">plugin</a> as well and it should show up.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-25394/won-t-install-with-gimp-2-4-solved">Won't install with GIMP 2.4 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-25394#post-808196</guid>
				<title>Re: Won&#039;t install with GIMP 2.4 [solved]</title>
				<link>http://liquidrescale.wikidot.com/forum/t-25394/won-t-install-with-gimp-2-4-solved#post-808196</link>
				<description></description>
				<pubDate>Mon, 14 Jun 2010 10:14:16 +0000</pubDate>
				<wikidot:authorName>newgimp</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I have gimp version</p> <p>GNU Image Manipulation Program version 2.6.8</p> <p>using GEGL version 0.1.2 (compiled against version 0.1.2)<br /> using GLib version 2.24.1 (compiled against version 2.23.6)<br /> using GTK+ version 2.20.1 (compiled against version 2.19.7)<br /> using Pango version 1.28.0 (compiled against version 1.27.1)<br /> using Fontconfig version 2.8.0 (compiled against version 2.8.0)</p> <p>under Fedora 13<br /> and find it hard to install this .</p> <p>I did</p> <p>./autogen.sh</p> <p>output:<br /> &lt;sniffed&gt;<br /> config.status: creating Makefile<br /> config.status: creating lqr/Makefile<br /> config.status: creating man/Makefile<br /> config.status: creating lqr-1.pc<br /> config.status: creating config.h<br /> config.status: config.h is unchanged<br /> config.status: executing depfiles commands<br /> config.status: executing libtool commands<br /> Now type 'make' to compile LiquidRescale library.</p> <ol> <li>make</li> <li>make install</li> </ol> <p>&lt;sniffed&gt;<br /> make[2]: Leaving directory ‘/home/ver/Downloads/liquidscale/liblqr-1-0.4.1/man’<br /> make[1]: Leaving directory ‘/home/ver/Downloads/liquidscale/liblqr-1-0.4.1/man’<br /> make[1]: Entering directory ‘/home/ver/Downloads/liquidscale/liblqr-1-0.4.1’<br /> make[2]: Entering directory ‘/home/ver/Downloads/liquidscale/liblqr-1-0.4.1’<br /> make[2]: Nothing to be done for ‘install-exec-am’.<br /> /bin/sh ./mkinstalldirs /usr/lib/pkgconfig<br /> /usr/bin/install -c -m 644 lqr-1.pc /usr/lib/pkgconfig/lqr-1.pc<br /> make[2]: Leaving directory ‘/home/ver/Downloads/liquidscale/liblqr-1-0.4.1’<br /> make[1]: Leaving directory ‘/home/ver/Downloads/liquidscale/liblqr-1-0.4.1’</p> <p>and launched GIMP. I cant see Liquid Scale Menu there under Layer Main Menu.</p> <p>Am I missing something</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-25394/won-t-install-with-gimp-2-4-solved">Won't install with GIMP 2.4 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-247410#post-806350</guid>
				<title>Re: Palette switching back to black when creating a preservation layer</title>
				<link>http://liquidrescale.wikidot.com/forum/t-247410/palette-switching-back-to-black-when-creating-a-preservation#post-806350</link>
				<description></description>
				<pubDate>Fri, 11 Jun 2010 11:25:55 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The intended behaviour is that the colour changes when entering in mask editing mode and goes back to the previous state when exiting that mode.</p> <p>If this is what you're observing, then it's not a bug (and I believe that this behaviour makes sense).</p> <p>If, however, the behaviour is different from this (and from what you see in the linux version, for example), please be more precise in the description, because I can't reproduce the bug, and I don't know what the problem might be.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-247410/palette-switching-back-to-black-when-creating-a-preservation">Palette switching back to black when creating a preservation layer</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-247410#post-806297</guid>
				<title>Palette switching back to black when creating a preservation layer</title>
				<link>http://liquidrescale.wikidot.com/forum/t-247410/palette-switching-back-to-black-when-creating-a-preservation#post-806297</link>
				<description></description>
				<pubDate>Fri, 11 Jun 2010 08:50:08 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Running lqr 0.7.1 on GIMP 2.6.8 on windows XP.<br /> When I create a new preservation layer, the palette goes green then switches back to black. Unaware users may then paint the layer black instead of green.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-247410/palette-switching-back-to-black-when-creating-a-preservation">Palette switching back to black when creating a preservation layer</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-806296</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-806296</link>
				<description></description>
				<pubDate>Fri, 11 Jun 2010 08:46:23 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thanks, the install worked.</p> <p>Having another bug with the palette color switching back to black with creating a preservation layer, looking for another bug report.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-805595</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-805595</link>
				<description></description>
				<pubDate>Thu, 10 Jun 2010 12:18:06 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>There is a weird bug in the Wikidot upload system, the file doesn't change even if I delete it and upload a new version, or overwrite it.<br /> So I had to change the link name, here it is: <a href="http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.1-liblqr_0.4.1_win32_setup-1.exe">http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.1-liblqr_0.4.1_win32_setup-1.exe</a>.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-805512</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-805512</link>
				<description></description>
				<pubDate>Thu, 10 Jun 2010 08:54:50 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>No luck following this link : <a href="http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.1-liblqr_0.4.1_win32_setup.exe">http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.1-liblqr_0.4.1_win32_setup.exe</a> from the downloads page</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-804897</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-804897</link>
				<description></description>
				<pubDate>Wed, 09 Jun 2010 18:16:43 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I'll try tomorrow @work on a windows machine, running a linux @home ;)</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-804667</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-804667</link>
				<description></description>
				<pubDate>Wed, 09 Jun 2010 13:25:45 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ooops, sorry, I lost the fix in the version change. I have updated the installer for 0.7.1, you may try again now.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-804479</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-804479</link>
				<description></description>
				<pubDate>Wed, 09 Jun 2010 07:31:43 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I'm really sorry, but i'm getting the GIMP path problem again with version 0.7.1 :(</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-802581</guid>
				<title>It Worked!</title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-802581</link>
				<description></description>
				<pubDate>Mon, 07 Jun 2010 08:27:46 +0000</pubDate>
				<wikidot:authorName>David Kettrey</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thankyou so much CarloB!!! Your fix worked! It's great to have your plugin up and running. God Bless you!</p> <p>Dave.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-801683</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-801683</link>
				<description></description>
				<pubDate>Sun, 06 Jun 2010 00:40:32 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thank you all for the feedback, I have found the problem and fixed it. The new release 0.7.1 is now available in the <a href="http://liquidrescale.wikidot.com/en:download-page-windows">Windows download page</a>.</p> <p>Please, let me know if everything goes fine.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-246227#post-801679</guid>
				<title>New release 0.7.1 fixes a bug under Windows</title>
				<link>http://liquidrescale.wikidot.com/forum/t-246227/new-release-0-7-1-fixes-a-bug-under-windows#post-801679</link>
				<description></description>
				<pubDate>Sun, 06 Jun 2010 00:37:23 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>A new release of the plugin is available. It fixes a bug which caused a crash at GIMP startup on Windows. The new Windows installers are also available, <a href="http://liquidrescale.wikidot.com/en:download-page-windows">here</a>.</p> <p>There's no reason to update for non-Windows users at this time.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18439">General / News</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-246227/new-release-0-7-1-fixes-a-bug-under-windows">New release 0.7.1 fixes a bug under Windows</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-801517</guid>
				<title></title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-801517</link>
				<description></description>
				<pubDate>Sat, 05 Jun 2010 19:16:21 +0000</pubDate>
				<wikidot:authorName>David Kettrey</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thankyou Amel. I want to try what you said, but I don't know how to find older versions of the plugin on the website. Could you or CarloB show me where or how I can download vers. 0.6.1? Thankyou very much for all your help!!! Dave.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-800783</guid>
				<title>Re: Mr</title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-800783</link>
				<description></description>
				<pubDate>Fri, 04 Jun 2010 15:00:08 +0000</pubDate>
				<wikidot:authorName>amel</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I tried to install version 0.7.0 on WinXP sp3. And then I have same situation as you. Then I uninstall ver. 0.7.0 and then install version 0.6.1. This version work fine. After that install version 0.7.0 over 0.6.1 and then version 0.7.0 also works fine.</p> <p>I hope so that this help.</p> <p>Sorry for my english.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-800529</guid>
				<title>Mr</title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-800529</link>
				<description></description>
				<pubDate>Fri, 04 Jun 2010 04:50:58 +0000</pubDate>
				<wikidot:authorName>David Kettrey</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi CarloB, No, I never tried version 0.6.1, but I would like to give it a try. My XP Service Pack is 2 on the computer in question. (Although I know there is a newer Service Pack available, I have avoided having to mess with putting the computer on the internet.) Thanks very much for all the work you've accomplished in developing this advanced plugin and making it available for all.<br /> Respectfully, Dave Kettrey</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-799691</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-799691</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 07:58:49 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Well, at least one problem is solved… I'm marking it as such.</p> <p>There is a report about the other issue with ntdll.dll in the bug report section, in <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem" >this thread</a>, you can help me to figure out the problem there.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-799688</guid>
				<title>Re: &quot;gimp-lqr-plugin.exe has encountered a problem.....&quot;</title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-799688</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 07:55:15 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm aware of this problem and I'll try to solve it as soon as possible.<br /> In the meanwhile, avoid sending error reports via Windows, even if you're connected to the internet.</p> <p>Now for some additional questions:</p> <ol> <li>Did you test the previous version of the plugin, 0.6.1? Did it work?</li> <li>What is the service pack version of your Windows XP?</li> </ol> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-245719#post-799681</guid>
				<title>&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot;</title>
				<link>http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed#post-799681</link>
				<description></description>
				<pubDate>Thu, 03 Jun 2010 07:46:20 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm moving this report here:</p> <blockquote> <p>Hello Carlos, I downloaded and installed your latest Windows release of this amazing plugin. I have GIMP 2.6.8 on Windows XP. The installation went well and gimp-lqr-plugin.exe is in the proper place in the plugins folder. But when I start GIMP, and it's "querying new plugins", a Microsoft Error Reporting dialogue pops up saying that "gimp-lqr-plugin.exe has encountered a problem and needs to close." I never send the error report because the computer I use is not connected to the internet, so after clicking "Don't Send", the dialoque closes and GIMP resumes a normal startup, but without Liquid Rescale showing in the Layers Menu. Do you have any ideas what could be causing this error condition? Thanks for your help and ideas!</p> </blockquote> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18441">General / Bug reports</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-245719/gimp-lqr-plugin-exe-has-encountered-a-problem-fixed">&quot;gimp-lqr-plugin.exe has encountered a problem.....&quot; [FIXED]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-798805</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-798805</link>
				<description></description>
				<pubDate>Wed, 02 Jun 2010 07:57:33 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>The error when launching GIMP says gimp-lqr-plugin.exe encountered an error with ModName: ntdll.dll (ModVer: 5.1.2600.2180 Offset: 0002ae22)</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-798804</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-798804</link>
				<description></description>
				<pubDate>Wed, 02 Jun 2010 07:49:31 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>The installer seemed to work. Had an error while launching GIMP, so I'll reinstall everything clean, but the installer should be OK</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793900</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793900</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 13:45:16 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><span style="text-decoration: line-through;">Ok, what about <a href="http://liquidrescale.wikidot.com/local--files/en:download-page-windows/gimp-lqr-plugin_0.7.0-liblqr_0.4.1_win32_setup_2.exe">this version</a> of the installer?</span><br /> Having received no answer, I assumed that the new version fixes the issue and I put it on the download page in place of the old version.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793890</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793890</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 13:28:25 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I see, I'll fix the installer then.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793888</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793888</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 13:23:34 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Found it in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall\WinGimp-2.0_is1</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793872</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793872</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 13:02:41 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have just uninstalled GIMP and installed it again and verified that it indeed writes to that location in the registry. So I'm a bit puzzled.</p> <p>Maybe you have upgraded GIMP from a previous version (like previous to 2.4)? In that case it might be that it's using some old location I'm unaware of.</p> <p>Things you could do to find out (and help others with maybe the same problem):</p> <ul> <li>Search for the correct key: <ol> <li>open the registry again and make sure you're at the top of the tree</li> <li>go to "Edit"-&gt;"Search"</li> <li>type the string "C:\Program Files\GIMP-2.0\" (be careful to add the final backslash) in the search field</li> <li>Untick "Keys" and "Values" and tick "Data" and "Whole string" (I hope those names are correct, I'm translating from Italian here; anyways it's: untick the first two boxes, tick the last two)</li> <li>Hit search and see if it finds an "InstallLocation" entry; if it does, figure out its path and report it here, so that I can fix the installer.</li> </ol> </li> <li>Uninstall GIMP (from the Control Panel, of course, hoping it will clean the registry) and install again the last version, and see if the plugin installs</li> </ul> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793842</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793842</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 12:25:08 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Yes I used the standard installer from gimp.org.<br /> Can't find any GIMP related item in HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall :(</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793767</guid>
				<title>Re: LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793767</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 09:53:17 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Did you install GIMP using the standard Windows installer?<br /> The plugin installer looks in the Windows registry for this entry:</p> <div class="code"> <pre> <code>HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\WinGimp-2.0_is1\InstallLocation</code> </pre></div> <br /> This is based on my installation, and I took it for granted it is standard, but it looks like it doesn't find it in your system. <p>In order to find out for sure, can you please</p> <ol> <li>open up the Windows registry (use "start"-&gt;"run…" then type "regedit" and hit OK)</li> <li>navigate to that position specified above (it's easy, it's just like a big directory tree) and look for that entry?</li> </ol> <p>If you don't find it, do you find at least something similar? (i.e. some GIMP entry inside the "Uninstall" branch)</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243856#post-793742</guid>
				<title>LqR 0.7 won&#039;t install on XP with GIMP 2.6</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved#post-793742</link>
				<description></description>
				<pubDate>Wed, 26 May 2010 08:37:08 +0000</pubDate>
				<wikidot:authorName>Djainette</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It seems the installer can't find the GIMP directory. I get this error when launching it :<br /> "GIMP installation was not found. Please install GIMP before running this installer".</p> <p>GIMP 2.6 directory is C:\Program Files\GIMP-2.0</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18438">General / Help requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243856/lqr-0-7-won-t-install-on-xp-with-gimp-2-6-solved">LqR 0.7 won't install on XP with GIMP 2.6 [solved]</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243632#post-792709</guid>
				<title>New video tutorials</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243632/new-video-tutorials#post-792709</link>
				<description></description>
				<pubDate>Tue, 25 May 2010 01:32:40 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The <a href="http://liquidrescale.wikidot.com/en:tutorial">tutorial</a> section was updated with some videos recored using the latest version of the plugin.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18439">General / News</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243632/new-video-tutorials">New video tutorials</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243478#post-792214</guid>
				<title>Windows version for release 0.7.0 available</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243478/windows-version-for-release-0-7-0-available#post-792214</link>
				<description></description>
				<pubDate>Mon, 24 May 2010 13:11:57 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The latest version of the plugin is now available for Windows.</p> <p>As previously announced, this time the translations and the help files should be working correctly (so you have no more excuses for not <a href="http://liquidrescale.wikidot.com/en:translations">helping with the translations</a>!)</p> <p>Furthermore, the files you download are now true Windows installers, which makes installation (and uninstallation) safer and easier.</p> <p>As always, there are versions for both standard GIMP and for GIMPPortable.</p> <p>You'll find it in the <a href="http://liquidrescale.wikidot.com/en:download-page-windows">Windows download page</a> (<a href="http://liquidrescale.wikidot.com/it:download-page-windows">Italian version here</a>).</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18439">General / News</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243478/windows-version-for-release-0-7-0-available">Windows version for release 0.7.0 available</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-243438#post-792002</guid>
				<title>Version 0.7.0 released</title>
				<link>http://liquidrescale.wikidot.com/forum/t-243438/version-0-7-0-released#post-792002</link>
				<description></description>
				<pubDate>Mon, 24 May 2010 03:47:00 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>After a long time, a new version of the plugin is finally out.<br /> Mainly, it has improvements in the user interface which help the workflow, plus a couple of additional features and some (minor) bugfixes.<br /> Furthermore, the long-standing issue of the localization under Windows should now be finally solved (and a Windows installer will be available very soon).</p> <p>By the way, many <span style="text-decoration: underline;"><strong>translations</strong></span> are now very outdated and <span style="text-decoration: underline;"><strong>need to be updated</strong></span>! Please, consider <a href="http://liquidrescale.wikidot.com/en:translations">helping with this</a> if you can, thanks.</p> <p>Here is the full list of new features:</p> <ul> <li>Added new option: output on new image</li> <li>Added new energy functions based on luma instead of brightness</li> <li>New edit masks mode: <ul> <li>Added edit buttons for aux layers</li> <li>Switch to smaller, always-on-top interface while creating/editing aux layers</li> </ul> </li> <li>Added info icons for aux layers</li> <li>Added text to some buttons</li> <li>No longer use extra layers to create the image thumbnail (this means no more "flashing" in the layers toolbox when staring the plugin or creating a new aux layer)</li> <li>Modified behaviour to make it more consistent: <ul> <li>After creating/editing aux layers the focus goes back to the layer which is to be rescaled</li> <li>If an aux layer is deleted during or between sessions, it is not substitued by another one, and the corresponding setting is made inactive</li> <li>Pressing "Back" in the interactive dialog saves the plugin values for later recalls</li> </ul> </li> <li>Bugfix: finally fixed Windows localization</li> <li>Bugfix: fixed some minor issues arising when working on a new layer and going back and forth through interactive/non-interactive modes</li> </ul> <p>It now requires GIMP 2.6 and the latest version (0.4.1) of the <tt>liblqr</tt> library, which you can find <a href="http://liblqr.wikidot.com" >here</a>.</p> <p>Go get it from the <a href="http://liquidrescale.wikidot.com/en:download-page">Download page</a>!</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18439">General / News</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-243438/version-0-7-0-released">Version 0.7.0 released</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-236034#post-760895</guid>
				<title>Re: Content aware fill</title>
				<link>http://liquidrescale.wikidot.com/forum/t-236034/content-aware-fill#post-760895</link>
				<description></description>
				<pubDate>Wed, 21 Apr 2010 16:13:30 +0000</pubDate>
				<wikidot:authorName>Heho</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Yes but I didnt find something like contact…<br /> I tried to contact the author but he won't answer.</p> <p>yeah image segmentation seems to be the hardest part of it…<br /> You are right. CA-fill is based on patch match and this is the part were my script should work better. Because with patch matching(which will also be used for the subdivided areas - this is the part of the resynthesize plugin) you get horrible artifacts on the edges of these areas. Once I figure out a good balance between much and sparse division the rest should be easy (nearly everything then is done by resynthesize).</p> <p>Thanks for your answer</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18440">General / Feature requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-236034/content-aware-fill">Content aware fill</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://liquidrescale.wikidot.com/forum/t-236034#post-760673</guid>
				<title>Re: Content aware fill</title>
				<link>http://liquidrescale.wikidot.com/forum/t-236034/content-aware-fill#post-760673</link>
				<description></description>
				<pubDate>Wed, 21 Apr 2010 12:10:54 +0000</pubDate>
				<wikidot:authorName>CarloB</wikidot:authorName>				<wikidot:authorUserId>39255</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Actually, I can't see why you're posting this request here: this wiki is about the Liquid Rescale plugin, which is indeed distinct and very different from the Resyntesizer plugin.<br /> Therefore, you should either contact the Resynthesizer author or maybe try the GIMP plug-in registry site (or any other site about extending GIMP functionality, provided it's more general than the present one).</p> <p>Let me just note that dividing images into areas (also called image segmentation) is in general far from being a trivial task.</p> <p>Also, the CA-fill feature is much probably based on something like patch-match (google for it if interested), rather then image segmentation.</p> <br/>Forum category: <a href="http://liquidrescale.wikidot.com/forum/c-18440">General / Feature requests</a><br/>Forum thread: <a href="http://liquidrescale.wikidot.com/forum/t-236034/content-aware-fill">Content aware fill</a>
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>
