<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Activity for Nikkho</title><link>https://sourceforge.net/p/nikkhokkho/activity/</link><description>Recent activity for Nikkho</description><language>en</language><lastBuildDate>Thu, 19 Mar 2026 16:17:02 -0000</lastBuildDate><item><title>Nikkho committed [r1866] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1866/</link><description>Updated UPX to 5.1.1.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 19 Mar 2026 16:17:02 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1866/</guid></item><item><title>Louis Horvath posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#f306</link><description>Thank you for the response! You are right, I was being a bit naive about the work being put into reading files. THAT BEING SAID ... does the verification need to be done at the moment files are loaded into FO? What if that verification was done at the moment the file is about to be optimized? It would have the benefit of boosting the loading of files initially while not loosing any of the verifications done by FO. I figure, you're gonna work on the file anyways so might as well do most of it in the...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Louis Horvath</dc:creator><pubDate>Sat, 10 Jan 2026 04:47:35 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#f306</guid></item><item><title>Nikkho committed [r1865] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1865/</link><description>Some minor optimizations and code cleanup</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sun, 04 Jan 2026 10:09:44 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1865/</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#f499</link><description>Thank you so much for your analysis Louis Horvath -. In fact the problem is not just adding the files to the list, which as usually implemented is exponential. The problem is the code at FO does a lot more things that your AutoIt sample. You can take a look at the core here: https://sourceforge.net/p/nikkhokkho/code/HEAD/tree/trunk/FileOptimizer/Source/cppMain.cpp#l2827 1) For each file, it reads its attributes in order to be able to recurse. 2) For files it gets its file size. 3) For files it reads...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 27 Dec 2025 09:22:06 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#f499</guid></item><item><title>Louis Horvath posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#d32b</link><description>I did a little script in AutoIT3 that shows how long it takes for an interpreted language to load 4533 files into an array. Full comments so you can figure out what each line does. TLDR : According to AutoIT It takes ~150 miliseconds. ; Create array from a specified folder. Compare with FileOptimizer Opt("MustDeclareVars", 1) ; All variables must be created before they are used. #include &lt;Array.au3&gt; #include &lt;File.au3&gt; #include &lt;Timers.au3&gt; Global $aDir ; Will hold an array to contain filenames Global...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Louis Horvath</dc:creator><pubDate>Fri, 26 Dec 2025 21:49:29 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#d32b</guid></item><item><title>Louis Horvath posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#7e50</link><description>Rebooted my machine, same folder takes ~42 seconds to load. When in cache it takes ~22 seconds to load. Note : dir command is nearly instantaneous. It's not a file system slowdown.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Louis Horvath</dc:creator><pubDate>Fri, 26 Dec 2025 18:56:54 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#7e50</guid></item><item><title>Louis Horvath modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#cbb2</link><description>This is not a bug per se but when I load files into FileOptimizer it looks like a very laborious process I have a folder with ~4500 files and it takes about 15-20 seconds to display the listing of the files During that time FileOptimizer doesn't say anything and the interface is frozen. I'm not noticing any wild CPU usage. I'm assuming FileOptimizer is already using the system cache to accelerate the process I've done programming before and this is a simple 2D array: filename + size. This issue is...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Louis Horvath</dc:creator><pubDate>Fri, 26 Dec 2025 18:44:41 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#cbb2</guid></item><item><title>Louis Horvath posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#cbb2</link><description>This is not a bug per se but when I load files into FileOptimizer it looks like a very laborious process I have a folder with ~4500 files and it takes about 15-20 seconds to display the listing of the files During that time FileOptimizer doesn't say anything and the interface is frozen. I'm not noticing any wild CPU usage. I'm assuming FileOptimizer is already using the system cache to accelerate the process I've done programming before and this is a simple 2D array: filename + size. This issue is...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Louis Horvath</dc:creator><pubDate>Fri, 26 Dec 2025 18:18:54 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/87aaf15e5d/?limit=25#cbb2</guid></item><item><title>kekmacska created ticket #145</title><link>https://sourceforge.net/p/nikkhokkho/tickets/145/</link><description>Possible underflow at bytes saved</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">kekmacska</dc:creator><pubDate>Sat, 06 Dec 2025 16:01:39 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/145/</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#f6be/9992</link><description>Abría que analizar esa fotografía en cuestión, pero es poco probable que los metadatos sean 14 MB. Lo que ocurre es que si quieres conservar metadatos, FileOptimizer no usa todos los plugins disponibles, ya que algunos de ellos no conservan esa información, por lo que además del espacio de los datos, optimiza menos.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 06 Dec 2025 10:32:24 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#f6be/9992</guid></item><item><title>José Luis González Díaz modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#f6be</link><description>Hay algo que no me cuadra. Optimizo una fotografía de 20 MB permitiendo pérdida de datos. Si no mantengo los metadatos me la deja en 6 MB pero si mantengo los metadatos "solo" la deja en 14 MB. ¿Tanto ocupan los metadatos en una fotografía? No soy entendido en informática pero intuitivamente me parece extraño que en una foto de 14MB 8 sean de metadatos.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Luis González Díaz</dc:creator><pubDate>Sat, 06 Dec 2025 10:23:10 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#f6be</guid></item><item><title>José Luis González Díaz posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#f6be</link><description>Hay algo que no me cuadra. Optimizo una fotografía de 20 MB permitiendo pérdida de datos. Si no mantengo los metadatos me la deja en 6 MB pero si mantengo los metadatos "solo" la deja en 14 MB. ¿Tanto ocupan los metadatos en una fotografía? No soy entendido en informática pero intuitivamente me parece extaño que en una foto de 14MB 8 sean de metadatos.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Luis González Díaz</dc:creator><pubDate>Sat, 06 Dec 2025 10:22:08 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#f6be</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#c41a/b5fb</link><description>Efectivamente. La opción es no guardar los metadatos, y entonces los resultados serán equivalentes o incluso mejores a la 17. La trampa es que debido a un problema, la 17.00 no siempre mantenía los metadatos.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 04 Dec 2025 13:46:03 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#c41a/b5fb</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#3a41/8c36/9b66</link><description>Muchas gracias. En lo personal no puedo hacer ningún tipo de reclamación que tu no puedas hacer. No infringe nada de FileOptimizer, aunque sí de Ghostcript y otros.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 04 Dec 2025 13:45:08 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#3a41/8c36/9b66</guid></item><item><title>José Luis González Díaz posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#3a41/8c36</link><description>Sí, eso me pareció. Por eso mandé el mensaje por si no sabías la existencia de este pirata y si podías hacer algún tipo de reclamación. Muchas gracias por tu esfuerzo.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Luis González Díaz</dc:creator><pubDate>Thu, 04 Dec 2025 12:46:22 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#3a41/8c36</guid></item><item><title>José Luis González Díaz modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#c41a</link><description>Cuando permites la pérdida de calidad la version 17.10 comprime menos de la mitad que la version 17.0. A cambio mantiene los metadatos referidos al dispositivo con que fueron tomadas las fotos o la localización que en la version 17.0 se perdían.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Luis González Díaz</dc:creator><pubDate>Thu, 04 Dec 2025 12:42:28 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#c41a</guid></item><item><title>José Luis González Díaz posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#c41a</link><description>Cuando permites la perdida de calidad la version 17.10 comprime menos de la mitad que la version 17.0. A cambio mantiene los metadatos referidos al dispositivo con que fueron tomadas las fotos o la localización que en la version 17.0 se perdían.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Luis González Díaz</dc:creator><pubDate>Thu, 04 Dec 2025 12:41:14 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b8d19027e9/?limit=25#c41a</guid></item><item><title>Nikkho modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#2f9e</link><description>fileoptimizerapp.dezeiraud.com Encontré esto en la tienda de Microsoft. ¿Es la misma aplicación?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 04 Dec 2025 10:23:35 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#2f9e</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#3a41</link><description>No es la misma aplicación José Luis González Díaz. Si descargas su MSIX ( 62041DezeiraudGatan.FileOptimizer_1.8.4.0_x64__jbdvxd7n7677j.Msix ) verás que han tomado la misma idea del FileOptimizer genuino, es decir, este mismo, y la han implementado en un interfaz de .NET mucho más sencillo y con muchos menos plugins incluidos. Todo ello cobrando 1,99€ por su "compra". En realidad eso es algo ilegal, no por mi FileOptimizer, sino porque están rompiendo la licencia de varios plugins, entre ellos Ghostcript...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 04 Dec 2025 10:20:15 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#3a41</guid></item><item><title>José Luis González Díaz posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#2f9e</link><description>https://fileoptimizerapp.dezeiraud.com/ Encontré esto en la tienda de Microsoft. ¿Es la misma aplicación?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Luis González Díaz</dc:creator><pubDate>Thu, 04 Dec 2025 10:05:17 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/362fcc0937/?limit=25#2f9e</guid></item><item><title>Nikkho committed [r1864] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1864/</link><description>Updated to guetzli-cuda-opencl 2.2.1 x64 (Reiner Schweinlin)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 24 Oct 2025 17:11:40 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1864/</guid></item><item><title>Renard Voß posted a comment on ticket #144</title><link>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#ee2c</link><description>There is still something wrong, I think! I added different versions of cjpegli.exe to the plugin folders of V. 17.10 and now I'm sure that V. 17.10 is skipping cjpegli. It doesn't show up under "status" and V. 16.90 is still compressing much better than V. 17.10! But caution: In 16.90 x64 the combination of cjpegli and guetzli is destroying files! With guetzli.exe renamed to guetzli.exe.old V. 16.90 x64 is working, but even with this workaround the results of 16.90 x86 are little better.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Renard Voß</dc:creator><pubDate>Fri, 17 Oct 2025 11:09:54 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#ee2c</guid></item><item><title>Nikkho posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#8d60/c667</link><description>Thank you so much for the testing. I have been reviewing the initialization code, and have not found any problems. So I guess it should be a bug in latest C++ Builder combined with Windows 10. This will also confirm that when patched gets better.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 15 Oct 2025 03:40:23 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#8d60/c667</guid></item><item><title>Nikkho posted a comment on ticket #144</title><link>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#32fc</link><description>Thank you so much Renard Voß. I have restored the Win32 EXE (maybe it was accidentally removed): https://sourceforge.net/p/nikkhokkho/code/1863/ Regarding the changes, in 17.10 I fixed the keep metadata, but probably the change comes from 17.00 when I switched to Google builds. Have reverted it, and now added official ones.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 15 Oct 2025 03:37:06 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#32fc</guid></item><item><title>Nikkho committed [r1863] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1863/</link><description>Fixed missing Win32 cjpegli 0.11.1 (Renard Voß #144)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 15 Oct 2025 03:35:23 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1863/</guid></item><item><title>Nikkho committed [r1862] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1862/</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 15 Oct 2025 03:34:17 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1862/</guid></item><item><title>Renard Voß posted a comment on ticket #144</title><link>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#0649</link><description>...futhermore the compression rates of 16.90 x86 with cjpegli.exe x86 are much higher than the ones of 17.10 x64 without visible differences! Did you change the cjpegli command, Javier?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Renard Voß</dc:creator><pubDate>Tue, 14 Oct 2025 17:58:25 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#0649</guid></item><item><title>Renard Voß posted a comment on ticket #144</title><link>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#f704</link><description>Unfortunately adding cjpegli.exe to the Plugins32 folder didn't help in V. 17.10. It helped in V. 16.90.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Renard Voß</dc:creator><pubDate>Tue, 14 Oct 2025 17:36:48 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/144/?limit=25#f704</guid></item><item><title>Renard Voß created ticket #144</title><link>https://sourceforge.net/p/nikkhokkho/tickets/144/</link><description>cjpegli.exe has 0 KB in Plugins32 folder of FileOptimizer 17.10 and 17.00</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Renard Voß</dc:creator><pubDate>Tue, 14 Oct 2025 17:26:39 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/144/</guid></item><item><title>Lucas Jaksic posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/8c274f1961/?limit=25#5bfd/2c8c/4a76</link><description>I see! Thanks for the quick reply Nikkho. Since I'm mostly working on Android games, I didn't really notice a big difference, they honestly seem the same to me. Still, it would be cool to have an option for some lossy optimization that matches the size and speed of TinyPng.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lucas Jaksic</dc:creator><pubDate>Tue, 14 Oct 2025 08:44:50 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/8c274f1961/?limit=25#5bfd/2c8c/4a76</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/8c274f1961/?limit=25#5bfd/2c8c</link><description>AFAIK, TinyPNG is lossy, and the main focus of FO is to be lossless, even if with the time, some lossy capabilities have been added.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 14 Oct 2025 07:23:22 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/8c274f1961/?limit=25#5bfd/2c8c</guid></item><item><title>Lucas Jaksic posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/8c274f1961/?limit=25#5bfd</link><description>Hello everyone, First I want to say that FileOptimizer is a great program! I used it to optimize over 5000 assets for my game. I just want to know, if there is a way to match the optimize speed of TinyPNG and size? I noticed that even though the program uses a lot of plug-ins and takes longer to finish, the final size is still bigger than when I optimize my assets in TinyPng. Maybe I'm doing something wrong? I really prefer FileOptimizer cause it allows me to optimize a lot of files, without having...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lucas Jaksic</dc:creator><pubDate>Tue, 14 Oct 2025 06:52:54 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/8c274f1961/?limit=25#5bfd</guid></item><item><title>LeTiger posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#8d60</link><description>Tested versions 05092025 and 08102025, started 10 times from icon; older version (FileOptimizer 17.10.2857 (x64) Sep 5 2025) failed 4 times with read and write errors. newer version (FileOptimizer 17.10.2857 (x64) Oct 8 2025) failed 1 time with write error, see attached image. So newer is obviously better with W10. Both versions started w/o problems after I clicked ok to those error-messages. So still no serious issue IMO, but still interesting.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Mon, 13 Oct 2025 13:26:10 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#8d60</guid></item><item><title>rick posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#84b1</link><description>Same conditions, same issues (pls see attached screenshots). Just out of curiosity, what happens around offset 0x410EF (since this is common to otherwise very different environments ~ at least here)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rick</dc:creator><pubDate>Wed, 08 Oct 2025 17:20:31 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#84b1</guid></item><item><title>Nikkho posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#4cda/757e</link><description>I have updated to lastest C++ Builder 13 September Update Patch, and compiled all binaries. Can you test with them? https://sourceforge.net/p/nikkhokkho/code/HEAD/tree/trunk/FileOptimizer/Win64x/Release/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 08 Oct 2025 13:16:45 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#4cda/757e</guid></item><item><title>Nikkho committed [r1861] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1861/</link><description>Upgraded to C++ Builder 13 September Patch</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 08 Oct 2025 13:15:41 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1861/</guid></item><item><title>Nikkho modified a comment on ticket #141</title><link>https://sourceforge.net/p/nikkhokkho/tickets/141/?limit=25#3f11</link><description>Thank you so much. qpdf was already added in FO 17.10: qpdf.exe --compress-streams=y --decode-level=generalized --recompress-flate --compression-level=9 --optimize-images --object-streams=generate Regarding FO, since ads as well as donation are optional, I would say is not commercial. Indeed you can donate to LibreOffice and no one would say it is commercial.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 07 Oct 2025 14:12:54 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/141/?limit=25#3f11</guid></item><item><title>Nikkho posted a comment on ticket #141</title><link>https://sourceforge.net/p/nikkhokkho/tickets/141/?limit=25#3f11</link><description>Thank you so much. I was not aware on qpdf, so I would take a look to it. Regarding FO, since ads as well as donation are optional, I would say is not commercial. Indeed you can donate to LibreOffice and no one would say it is commercial.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 07 Oct 2025 14:05:22 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/141/?limit=25#3f11</guid></item><item><title>Renard Voß posted a comment on ticket #141</title><link>https://sourceforge.net/p/nikkhokkho/tickets/141/?limit=25#6a07</link><description>In fact, pdfsizeopt is "only" a wrapper like FO, but there are some interesting differences: pdfsizeopt produces better results, especially when pdf files contain png images. Then the filesize is usually about 20% smaller. pdfsizeopt doesn't keep file properties pdfsizeopt sometimes destroys contents of pdf files pdfsizeopt uses qpdf instead of cpdf pdfsizeopt and/or qpdf sets pdf file version to version 1 and deletes the file ID (while cpdf keeps the file ID although cpdf sets the pdf file version...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Renard Voß</dc:creator><pubDate>Tue, 07 Oct 2025 13:26:38 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/141/?limit=25#6a07</guid></item><item><title>Oprea Nicolae posted a comment on ticket #128</title><link>https://sourceforge.net/p/nikkhokkho/tickets/128/?limit=25#88ca</link><description>I've seen it. Is Photoshop issue. All other programs open optimised files corectly, only Photoshop display a gray-like image with artefacts (improper decoding). I can confirm it on Photoshop CS6.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Oprea Nicolae</dc:creator><pubDate>Tue, 07 Oct 2025 11:53:48 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/128/?limit=25#88ca</guid></item><item><title>LeTiger posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#4cda</link><description>So it's not Only my problem - kind of happy (or not!) to hear. Because Nikkho just mentioned "FO 17.10 being upgraded to latest C++ Builder 13". Maybe some kind of a compatibility-problem with C++ Builder 13? More error-reports are certainly needed... This might be a problem to someone who tries to automate/script FO. Or they just have to use older versions, no such problem with pre-17 -versions. And even 17.10 seems to be working OK for 99% of users?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Mon, 06 Oct 2025 21:14:29 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#4cda</guid></item><item><title>rick posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#1ec3</link><description>Same issue here, with some additional content: on a win2019 server, the issue (Access violation, before the main window ~ close, then everything is nominal), appears every time I run the program as Administrator, but never (so far) when I run it as regular user on a Linux machine (ubuntu 24.04, wine 9.0, 64bit prefix configured as Win7), the issue appears every time. Hope this helps, TIA and keep up the good work!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rick</dc:creator><pubDate>Mon, 06 Oct 2025 11:34:36 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#1ec3</guid></item><item><title>Nikkho committed [r1860] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1860/</link><description>Updated jpegoptim to 1.5.6 x64</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sun, 05 Oct 2025 09:41:59 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1860/</guid></item><item><title>Nikkho posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#d6f6</link><description>Thank you so much. It could be either related to W10 Updates as you state (I myself am running W11 with no issues), or either due to FO 17.10 being upgraded to latest C++ Builder 13; or maybe an incompatibility with both. I shall review the initialization code before main window opens, maybe there is a problem never noticed before, but it does not seem very probable.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 27 Sep 2025 12:07:45 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#d6f6</guid></item><item><title>LeTiger posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#4731</link><description>Happens immediately before actual FO-window opens, and FO always starts/works ok when I click OK-button in error window. I open FO by directly starting .EXE (FileOptimizer64.exe), I don't use automation or scripts or cmdline-options with FO. It wouldn't surprise me if this has something to do w/ soon ending W10-updates? But no other issues with W10 so far. And this is 1st time I've seen this. Just strange. But if there are no other reports of such issues maybe we should forget about this one? FO...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Sat, 27 Sep 2025 11:30:13 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#4731</guid></item><item><title>Nikkho posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#aa50</link><description>Thank you for your report. Can you please provide more details? When does the error exactly happen? Is after doing some action or while loading? Is the main window showing when the popup appears or not yet visible? If you launch FO with no parameters the error still happens occasionaly?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 26 Sep 2025 03:24:56 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#aa50</guid></item><item><title>Nikkho modified ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/</link><description>Strange startup-bug in FileOptimizer 17</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 26 Sep 2025 03:07:26 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/</guid></item><item><title>LeTiger modified a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#b31e</link><description>2nd try to add attachment...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Thu, 25 Sep 2025 21:25:15 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#b31e</guid></item><item><title>LeTiger modified a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#b31e</link><description>2nd try to add attachment...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Thu, 25 Sep 2025 21:24:53 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#b31e</guid></item><item><title>LeTiger posted a comment on ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#b31e</link><description>2nd try to add attachment...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Thu, 25 Sep 2025 21:24:38 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/?limit=25#b31e</guid></item><item><title>LeTiger created ticket #143</title><link>https://sourceforge.net/p/nikkhokkho/tickets/143/</link><description>Strange startup-bug in FileOptimizer 17</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">LeTiger</dc:creator><pubDate>Thu, 25 Sep 2025 21:21:23 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/143/</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/864563287a/?limit=25#8acb/9623</link><description>Thank you so much for your help. I have integrated it in the source, and will be available in the next FO release: https://sourceforge.net/p/nikkhokkho/code/1859/ Regards.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Mon, 22 Sep 2025 19:19:41 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/864563287a/?limit=25#8acb/9623</guid></item><item><title>Nikkho committed [r1859] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1859/</link><description>Added hungarian translation (kekmacska)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Mon, 22 Sep 2025 19:17:52 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1859/</guid></item><item><title>kekmacska posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/864563287a/?limit=25#8acb</link><description>Hello I have completed FileOptimizer's translation from English to Hungarian. I'll attach the .po file in question. If it is good enough, please consider including it in the software's next release. Thank you. kekmacska</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">kekmacska</dc:creator><pubDate>Mon, 22 Sep 2025 18:53:50 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/864563287a/?limit=25#8acb</guid></item><item><title>Nikkho committed [r1858] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1858/</link><description>17.10</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 05 Sep 2025 08:17:17 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1858/</guid></item><item><title>Nikkho released /FileOptimizer/17.10.2857/FileOptimizerSetup.exe</title><link>https://sourceforge.net/projects/nikkhokkho/files/FileOptimizer/17.10.2857/FileOptimizerSetup.exe/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 05 Sep 2025 08:05:07 -0000</pubDate><guid>https://sourceforge.net/projects/nikkhokkho/files/FileOptimizer/17.10.2857/FileOptimizerSetup.exe/download</guid></item><item><title>Nikkho released /FileOptimizer/17.10.2857/FileOptimizerSource.7z</title><link>https://sourceforge.net/projects/nikkhokkho/files/FileOptimizer/17.10.2857/FileOptimizerSource.7z/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 05 Sep 2025 08:05:07 -0000</pubDate><guid>https://sourceforge.net/projects/nikkhokkho/files/FileOptimizer/17.10.2857/FileOptimizerSource.7z/download</guid></item><item><title>Nikkho released /FileOptimizer/17.10.2857/FileOptimizerFull.7z.exe</title><link>https://sourceforge.net/projects/nikkhokkho/files/FileOptimizer/17.10.2857/FileOptimizerFull.7z.exe/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 05 Sep 2025 08:05:07 -0000</pubDate><guid>https://sourceforge.net/projects/nikkhokkho/files/FileOptimizer/17.10.2857/FileOptimizerFull.7z.exe/download</guid></item><item><title>Nikkho committed [r1857] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1857/</link><description>Updated ffmpeg to 8.0.0 x64</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 05 Sep 2025 07:41:47 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1857/</guid></item><item><title>Nikkho committed [r1856] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1856/</link><description>- Updated internal EdgeView to 1.0.3065.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 05 Sep 2025 04:28:56 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1856/</guid></item><item><title>Nikkho modified ticket #140</title><link>https://sourceforge.net/p/nikkhokkho/tickets/140/</link><description>Bugs - cjpegli deletes metadata &amp; cpegli missing in Plugins32 folder</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 26 Aug 2025 14:24:35 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/140/</guid></item><item><title>Nikkho posted a comment on ticket #140</title><link>https://sourceforge.net/p/nikkhokkho/tickets/140/?limit=25#c75f/5646</link><description>Sorry for the delay. I am on holidays, but have been able to solve it. https://sourceforge.net/p/nikkhokkho/code/1855/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 26 Aug 2025 14:24:24 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/140/?limit=25#c75f/5646</guid></item><item><title>Nikkho committed [r1855] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1855/</link><description>Fixed cjpegli removing metadata (Renard Voß, Danylo Surmai) #140</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 26 Aug 2025 14:23:41 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1855/</guid></item><item><title>Danylo Surmai posted a comment on ticket #140</title><link>https://sourceforge.net/p/nikkhokkho/tickets/140/?limit=25#c75f</link><description>Hi sorry to ping, but is there any estimation on fix on EXIF data removing? thx!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Danylo Surmai</dc:creator><pubDate>Tue, 26 Aug 2025 10:50:27 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/140/?limit=25#c75f</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/55e4012e8a/?limit=25#31c5/4b2d</link><description>Thank you for the solution Nils Ax. Indeed that feature was added on version 10: 10.00 - 2017/07/21 (5th aniversary release) - Added EnableCache=false INI setting to enable cache of already optimized files, so they are not reoptimized each time.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 23 Aug 2025 16:34:55 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/55e4012e8a/?limit=25#31c5/4b2d</guid></item><item><title>Nils Ax posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/55e4012e8a/?limit=25#31c5</link><description>Nevermind. Found a feature called 'Enable Cache' in FileOptimizer that seems to be doing the exact same thing.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nils Ax</dc:creator><pubDate>Sat, 23 Aug 2025 10:38:56 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/55e4012e8a/?limit=25#31c5</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd/9c08/1a75/0220</link><description>That was easy. Preliminar qpdf support is also added: https://sourceforge.net/p/nikkhokkho/code/1854/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 23 Aug 2025 05:41:59 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd/9c08/1a75/0220</guid></item><item><title>Nikkho committed [r1854] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1854/</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 23 Aug 2025 05:41:46 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1854/</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd/9c08/1a75</link><description>Thank you. qpdf (https://github.com/qpdf/qpdf) sounds interesting. I will investigate it when some time!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 23 Aug 2025 05:25:50 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd/9c08/1a75</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#7742/7b4c</link><description>Thank you so much. DNG support is preliminary added: https://sourceforge.net/p/nikkhokkho/code/1853/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 23 Aug 2025 05:21:02 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#7742/7b4c</guid></item><item><title>Nikkho committed [r1853] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1853/</link><description>- Added tinydng-cli to the TIFF toolchain (avalanch).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Sat, 23 Aug 2025 05:20:16 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1853/</guid></item><item><title>avalanch modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#7742</link><description>Chatgpt is suggesting this. tinyDNG – Open-source and Free This tool wraps a JXL-compressed payload inside the DNG container, preserving metadata and Raw structure. It supports a lossless flag (-l) for truly lossless compression. Typical result: your DNG might shrink from, say, 33 MB to around 25 MB in purely lossless mode. If you're willing to accept visually lossless compression (with more aggressive file reduction), you can get down to around 4.5 MB Super User . Example usage: tinydng-cli --input...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">avalanch</dc:creator><pubDate>Sat, 23 Aug 2025 01:11:18 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#7742</guid></item><item><title>avalanch posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#7742</link><description>Chatgpt is suggesting this. tinyDNG – Open-source and Free This tool wraps a JXL-compressed payload inside the DNG container, preserving metadata and Raw structure. It supports a lossless flag (-l) for truly lossless compression. Typical result: your DNG might shrink from, say, 33 MB to around 25 MB in purely lossless mode. If you're willing to accept visually lossless compression (with more aggressive file reduction), you can get down to around 4.5 MB Super User . Example usage: tinydng-cli --input...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">avalanch</dc:creator><pubDate>Sat, 23 Aug 2025 01:09:38 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#7742</guid></item><item><title>avalanch posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd/9c08</link><description>Ok I see what you mean. I asked chatgpt about it and it returned this however. Most Efficient Overall (Best Compression) Ghostscript Consistently reduces PDFs the most because it can downsample images, re-encode them (JPEG/ZIP), and strip unused objects. Offers different -dPDFSETTINGS presets: /screen → very small, lower quality /ebook → good balance /printer or /prepress → higher quality, larger size Can beat most other tools in size reduction when you allow lossy compression. 👉 If your priority...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">avalanch</dc:creator><pubDate>Sat, 23 Aug 2025 01:04:55 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd/9c08</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#ffa8</link><description>FileOptimizer is just a frontend using third-party opensource plugins. Unfortunately I am not aware of any accepting lossless compression.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 21 Aug 2025 03:30:07 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#ffa8</guid></item><item><title>Arturs Pupausis posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#19e9</link><description>I tried to recompress DNG file with FileOptimizer. It did not compress much. In the newest version of the format they added suport for JXL compression which can significantly reduce the size of the DNG file. Couldn't find a way to turn on lossles compression in Adobes own DNG converter tool. Here is a qoute from Wikipedia "2023, June: Specification version 1.7.0.0 published. JPEG XL added as a compression method. In September, 1.7.1.0 was published as a minor refresh with additional compression ...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arturs Pupausis</dc:creator><pubDate>Wed, 20 Aug 2025 18:48:43 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/b6f8120d83/?limit=25#19e9</guid></item><item><title>Nikkho posted a comment on ticket #142</title><link>https://sourceforge.net/p/nikkhokkho/tickets/142/?limit=25#b7eb</link><description>Great! Thanks.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 15 Aug 2025 14:16:42 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/142/?limit=25#b7eb</guid></item><item><title>Mats posted a comment on ticket #142</title><link>https://sourceforge.net/p/nikkhokkho/tickets/142/?limit=25#20d8</link><description>Hi Nikkoh, many thanks for your quick answer and explanation. That solves my problem. I've even created a new INI file but missed that comment regarding comma as it was too far right in my editor.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mats</dc:creator><pubDate>Fri, 15 Aug 2025 12:22:57 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/142/?limit=25#20d8</guid></item><item><title>Nikkho modified ticket #142</title><link>https://sourceforge.net/p/nikkhokkho/tickets/142/</link><description>DisablePluginMask no longer working</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 15 Aug 2025 11:23:29 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/142/</guid></item><item><title>Nikkho posted a comment on ticket #142</title><link>https://sourceforge.net/p/nikkhokkho/tickets/142/?limit=25#cf51</link><description>You are right. After 16.80, due to a request, separator was changed from ; to , It is documented in the changelog as well as in the tree: https://sourceforge.net/p/nikkhokkho/code/1835/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 15 Aug 2025 11:23:15 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/142/?limit=25#cf51</guid></item><item><title>Mats created ticket #142</title><link>https://sourceforge.net/p/nikkhokkho/tickets/142/</link><description>DisablePluginMask no longer working</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mats</dc:creator><pubDate>Fri, 15 Aug 2025 10:14:31 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/tickets/142/</guid></item><item><title>Nikkho committed [r1852] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1852/</link><description>- Updated SQLite to 3.50.4 x86 and x64 Visual C++ 2022 custom builds.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Mon, 11 Aug 2025 12:22:36 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1852/</guid></item><item><title>Nikkho released /PatchPE/1.36/PatchPE.zip</title><link>https://sourceforge.net/projects/nikkhokkho/files/PatchPE/1.36/PatchPE.zip/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 08 Aug 2025 12:12:05 -0000</pubDate><guid>https://sourceforge.net/projects/nikkhokkho/files/PatchPE/1.36/PatchPE.zip/download</guid></item><item><title>Nikkho released /ZEROFILL/2.06/ZEROFILL.ZIP</title><link>https://sourceforge.net/projects/nikkhokkho/files/ZEROFILL/2.06/ZEROFILL.ZIP/download</link><description/><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Fri, 08 Aug 2025 12:01:05 -0000</pubDate><guid>https://sourceforge.net/projects/nikkhokkho/files/ZEROFILL/2.06/ZEROFILL.ZIP/download</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd</link><description>What do you have in mind? Just installed PDFGear and I do not see any command-line tool inside. Not sure if the other GUI ones can be launched via command line.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 07 Aug 2025 04:08:31 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f/e6bd</guid></item><item><title>avalanch posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f</link><description>pdfgear has some pretty good pdf compression, have you tried implementing that software into yours?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">avalanch</dc:creator><pubDate>Wed, 06 Aug 2025 16:04:10 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/36f3e6430a/?limit=25#547f</guid></item><item><title>Nikkho committed [r1851] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1851/</link><description>Updated ffmpeg to 7.1.1 x64</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 05 Aug 2025 17:11:05 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1851/</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/271988e194/?limit=25#78e9</link><description>Thank you so much for the effort. It has been added: https://sourceforge.net/p/nikkhokkho/code/1850/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 05 Aug 2025 04:06:51 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/271988e194/?limit=25#78e9</guid></item><item><title>Nikkho committed [r1850] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1850/</link><description>Added japanese translation (Re*Index. (ot_inc))</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Tue, 05 Aug 2025 04:06:19 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1850/</guid></item><item><title>Re*Index. (ot_inc) modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/271988e194/?limit=25#fd97</link><description>I created a file with the Japanese translation file.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Re*Index. (ot_inc)</dc:creator><pubDate>Mon, 04 Aug 2025 21:52:28 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/271988e194/?limit=25#fd97</guid></item><item><title>Re*Index. (ot_inc) modified a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/271988e194/?limit=25#fd97</link><description>I created a file with the Japanese translation .</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Re*Index. (ot_inc)</dc:creator><pubDate>Mon, 04 Aug 2025 21:51:53 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/271988e194/?limit=25#fd97</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#41d1</link><description>I have compiled updated EXE just in case you want to test them before next FileOptimizer version release: https://sourceforge.net/p/nikkhokkho/code/1849/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 24 Jul 2025 08:21:30 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#41d1</guid></item><item><title>Nikkho committed [r1849] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1849/</link><description>Update EXEs</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 24 Jul 2025 08:20:06 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1849/</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#dfa9</link><description>I have found the issue. It is in the execution of Leanify. Since ODG is a ZIP file, it seems that FileOptimizer is only honoring Recurse ZIP files in ZIP extensions and not in ODG. Also it was not passing the JPEG keep metadata, so I have hopefully fixed it and will be available in next FO release. https://sourceforge.net/p/nikkhokkho/code/1848/</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 24 Jul 2025 06:15:53 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#dfa9</guid></item><item><title>Nikkho committed [r1848] on Code</title><link>https://sourceforge.net/p/nikkhokkho/code/1848/</link><description>Fixed not honoring keep metadata inside ODG from the ZIP toolchain (Arturs Pupausis)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 24 Jul 2025 06:14:48 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/code/1848/</guid></item><item><title>Arturs Pupausis posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#993d</link><description>Here are the sample files. Tested 1000000000000320000002A8DD603A86.jpg file with diffchecker com, images are not the same also the size difference is quite large.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arturs Pupausis</dc:creator><pubDate>Thu, 24 Jul 2025 06:07:42 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#993d</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#f3d3/a416</link><description>Thanks. Is it possible to have a sample of the ODG file?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Thu, 24 Jul 2025 04:10:27 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#f3d3/a416</guid></item><item><title>Arturs Pupausis posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#f3d3</link><description>JXL compression looks to be fine. I was referring to JPGs in .odg file. Sorry for the confusion, simply my screenshots happened to be in .jxl format.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arturs Pupausis</dc:creator><pubDate>Wed, 23 Jul 2025 17:59:19 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#f3d3</guid></item><item><title>Nikkho posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#accd</link><description>Thank you so much for your reportand your support @Arturs Pupausis. I have isolated the problem on ImageMagick. FileOptimizer is running it as: magick.exe convert "2025-07-23 200941.jxl" -quiet jxl:effort=9 "2025-07-23 200941.jxl" It should behave lossless, so I will need to investigate if there is a bug on ImageMagick. Thanks.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Nikkho</dc:creator><pubDate>Wed, 23 Jul 2025 17:34:11 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#accd</guid></item><item><title>Arturs Pupausis posted a comment on discussion FileOptimizer Discussion</title><link>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#758e</link><description>Compressing .odg file - it compresses JPGs in lossy even when lossy is disabled. Using Best compression and copy metadata is checked. It also deletes Exif data. Running File optimizer 17.0.0.2842.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Arturs Pupausis</dc:creator><pubDate>Wed, 23 Jul 2025 17:22:13 -0000</pubDate><guid>https://sourceforge.net/p/nikkhokkho/discussion/fileoptimizer/thread/867acfe103/?limit=25#758e</guid></item></channel></rss>