Jump to content

null54

Moderator
  • Posts

    1,964
  • Joined

  • Last visited

  • Days Won

    90

Everything posted by null54

  1. The version on this website is free, the Windows Store version is paid. See the following thread for more information.
  2. You can also change the default selection mode in the settings menu.
  3. Try unchecking the "Fluid mouse input" option in Settings -> User Interface.
  4. Reduced memory usage when loading and saving images. Fixed a crash if the save progress callback is null. File version updated to 1.8.5.0.
  5. Inheriting from both FileType & IFileTypeFactory is fine, my WebP FileType does that for instance. The problem is that @ArgusMagnus is missing the public modifier on the constructor. public sealed class TestFileType : FileType, IFileTypeFactory { public TestFileType() : base("Test", FileTypeFlags.SupportsSaving | FileTypeFlags.SavesWithProgress, new[] { ".test" }) { } protected override Document OnLoad(Stream input) { return null; } protected override void OnSave(Document input, Stream output, SaveConfigToken token, Surface surface, ProgressEventHandler callback) { // Do save operation... base.OnSave(input, output, token, surface, callback); } FileType[] IFileTypeFactory.GetFileTypeInstances() { return new[] { new TestFileType() }; } }
  6. Fixed in 1.3.2. With the large number of plugins available on this forum it does not surprise me that some may be overlooked, and this is more of a niche plugin than something like Feather or Clipwarp. I do not envy @Ego Eram Reputo's job keeping the plugin index up to date. ?
  7. Updated the JPEG 2000 FileType to the latest version. Updated to @BoltBait's latest installer.
  8. Changed the quality slider in the save dialog to more closely match the JPEG compression ratios. Reduced memory usage when loading images. Fixed the loading of gray scale images with an alpha channel.
  9. That is the generic "unknown error" message for Photoshop plugins. The only thing I can think of is that a file the Nik Collection requires is missing, or Avast may be blocking access to it.
  10. The Windows Store version of Paint.NET requires you to install plugins into a sub-directory of Documents/paint.net App Files. For example Effects plugins would be places in Documents/paint.net App Files/Effects. See Installing Plugins in the Paint.NET help for more information.
  11. I recompiled the plugin for Paint.NET 4.1.1 using the source code @ArgusMagnus posted. Changes: Added a replacement PointInt32 structure to ArgusPaintNet.FFT. FFT.zip Source.zip
  12. I recompiled the plugin for Paint.NET 4.1.1 using the source code @ArgusMagnus posted. Changes: Added a replacement VectorFloat structure to ArgusPaintNet.Shared. Changed ArgusPaintNet.EdgeDetection to get the "Stylize" menu name from the SubmenuNames class. Edge Detection.zip Source.zip
  13. That control is part of PrintIt, not the OptionBased library.
  14. Thanks for the detailed bug report and analysis. I will most likely be changing the plugin to use the ImageMagick formula with a default quality of 85 (compression ratio of 9:1). That is exactly what JasPer does (at least the version that is currently used by this plugin).
  15. The plugin will only be called for files with a .webp extension.
  16. I do not know, that would be a question for @Rick Brewster.
  17. Upgraded to the August 17 2018 release of DirectXTex, file version updated to 1.8.4.0.
  18. My guess is that there is some kind of race condition in the code that I use to check if a filter is running. But as I have been unable to reproduce this error I do not know what I would need to change to fix it. ?
  19. I added a line that should prevent the "8bf filter" dialog from closing when a filter is running. When you say "Press OK" are you referring to the OK button in the "8bf filter" dialog?
  20. Updated PSFilterPdn to the latest version. 
  21. Fixed in 1.0.7.0. Other changes include: Support for the Paint.NET "Dark" theme Improved performance when launching the effect dialog multiple times Settings should be remembered during the current session for most filters Additionally all filters now have access to the PICA suites, this should improve compatibility with newer filters.
  22. That appears to be the dialog Paint.NET shows when it is waiting for an effect to finish rendering. Are you using Paint.NET's "Repeat Filter" command to run PSFilterPdn? If not I am somewhat confused because the main "8bf filter" window should never cause Paint.NET to display that dialog. Also what is the name of the filter you are trying to use? There may be some kind of compatibility issue with the filter and PSFilterPdn.
  23. Upgraded to the August 5 2018 release of DirectXTex, file version updated to 1.8.3.0.
  24. You may need to change the DCRaw options, the list of options is available here. Paint.NET does not support color management, but DCRaw can convert the image to sRGB. I do not know.
  25. It sounds like the plugin is not installed correctly. Do you see the dds2 extension in the open file dialog?
×
×
  • Create New...