I would say bad chances, last time patches were added was in end of november, because Ryan is incredibly busy.<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

(One of the reasons why i decided to stop spamming patches here and made a fork instead that i&#39;m trying to establish as new reference. Sort of. - I will throw in your patch there in a bit.)</blockquote><div><br>Ok, I have now cloned your repository instead since Icculus repo seams to be halted. But perhaps I should still send patches here so that people can see them (and so you can commit them into your repo if you accept them).<br>
<br>Btw I found one small problem with your fork, you include a zlib internal file that is not meant to be used by applications and thus is not part of the normal zlib-dev package, and it seams to be done just to set the default mem level for zlib which according to zlib.h should be 8 anyways so the following patch &quot;fixes&quot; that:<br>
<br>diff -r b98eef2012c1 BBGE/DeflateCompressor.cpp<br>--- a/BBGE/DeflateCompressor.cpp    Mon May 14 15:51:28 2012 +0200<br>+++ b/BBGE/DeflateCompressor.cpp    Sun May 20 22:06:48 2012 +0200<br>@@ -1,6 +1,5 @@<br> #include &quot;Base.h&quot;<br>
 <br>-#include &lt;zutil.h&gt;<br> #include &lt;zlib.h&gt;<br> <br> #include &quot;DeflateCompressor.h&quot;<br>@@ -39,7 +38,7 @@<br>     c_stream.zfree = (free_func)Z_NULL;<br>     c_stream.opaque = (voidpf)Z_NULL;<br> <br>
-    if (Z_OK != deflateInit2(&amp;c_stream, level, Z_DEFLATED, wbits, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY))<br>+    if (Z_OK != deflateInit2(&amp;c_stream, level, Z_DEFLATED, wbits, 8, Z_DEFAULT_STRATEGY))<br>     {<br>         *dst_size = 0;<br>
         return;<br><br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div class="im"><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
One caveat is that the stringbank and ingredients file is part of the<br>
commercial resources, but since BitBlot have published them on the<br>
Aquarium forum so that translators can translate them it would very well<br>
be possible to get BitBlot to relicense those two files so we can add<br>
them to the repository.<br>
</blockquote>
<br></div>
Either make it load a stringbank2.txt file along with the original one that simply adds additional entries, or do it like me and start fixing up resource files as well. I tweeted Alec about it and he seemed to be fine with me releasing updatepacks with updated/missing resource files. Just sayin&#39;.<br>

And imho, these files were published along with a &quot;Here go ahead and make awesome translations&quot;-mentality, so what about just doing it? Unless someone wants to take the time and label each file with either &quot;private&quot;, &quot;GPL 3.14&quot;, &quot;WTFPL&quot;, &quot;Artistic&quot;, &quot;BSD&quot; ... for maximum bullet-proof correctness.</blockquote>
<div>Sounds resonable, so will you accept such patches in the future (i.e adding stringbanks.txt) ?<br><br>/HH<br></div></div>