My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Last 30 days

  • Dec 15, 2009
    PortingStrategy (Paint.NET Porting Strategy) Wiki page commented on by Igor.Zubarev   -   Any news? Project updated Dec 20, 2007 by miguel.de.icaza((((((
    Any news? Project updated Dec 20, 2007 by miguel.de.icaza((((((

Earlier this year

  • Nov 19, 2009
    issue 8 (sudo apt-get install paint-mono returns error) commented on by liam.ki...@gmail.com   -   dsuzukisanders: That post was made over a year ago; I no longer have Ubuntu installed. Sorry for the inconvenience.
    dsuzukisanders: That post was made over a year ago; I no longer have Ubuntu installed. Sorry for the inconvenience.
  • Nov 19, 2009
    issue 8 (sudo apt-get install paint-mono returns error) commented on by dsuzukisanders   -   paint-mono isn't in any repositories afaict - where are you attempting to install it from?
    paint-mono isn't in any repositories afaict - where are you attempting to install it from?
  • Nov 19, 2009
    issue 26 (Fonts are not displayed, X11 problems?) commented on by dsuzukisanders   -   I also note the same issue on Ubuntu 9.10 x86_64 build. Output in console was: Could not get XIM -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented SingleInstanceManager.SetWindow: Not implemented
    I also note the same issue on Ubuntu 9.10 x86_64 build. Output in console was: Could not get XIM -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented SingleInstanceManager.SetWindow: Not implemented
  • Nov 15, 2009
    PortingStrategy (Paint.NET Porting Strategy) Wiki page commented on by kevinsheth98   -   I reworked this a bit on my own PC by combining everything into a single visual studio project ( instead of multiple ) It kind of runs on Mono/Suse but not too well. I want to strip out unnecessary code ( eg auto updates, installer, etc ) and sort of get it down to a bare bones single exe that can run on linux/mono without too much effort (defaulting some registry values needed too) I find the current build a difficult to make. I find it will run on mono even if built on windows, but the posix stuff does not work on mono for windows. I think microsoft has a better optimizer and will get better performance if compiled in visual studio. I can share my hacked together project if any one wants, just email! Thanks
    I reworked this a bit on my own PC by combining everything into a single visual studio project ( instead of multiple ) It kind of runs on Mono/Suse but not too well. I want to strip out unnecessary code ( eg auto updates, installer, etc ) and sort of get it down to a bare bones single exe that can run on linux/mono without too much effort (defaulting some registry values needed too) I find the current build a difficult to make. I find it will run on mono even if built on windows, but the posix stuff does not work on mono for windows. I think microsoft has a better optimizer and will get better performance if compiled in visual studio. I can share my hacked together project if any one wants, just email! Thanks
  • Nov 11, 2009
    issue 26 (Fonts are not displayed, X11 problems?) reported by itsjar...@yahoo.com   -   What steps will reproduce the problem? 1. Run paintdotnet in terminal 2. Look around Paint.net 3. View the terminal output What is the expected output? What do you see instead? No fonts/words/strings are being displayed anywhere except I see the default zoom is "Window" and I see "New Window" in the undo history. What version of the product are you using? On what operating system? paint-mono version 3.0.3602.19117, on Ubuntu Karmic 9.10 Please provide any additional information below. Took a bit to get make to compile with no errors, but this was all documented in issue 6. I attached a text file of my terminal output before closing PDN.
    What steps will reproduce the problem? 1. Run paintdotnet in terminal 2. Look around Paint.net 3. View the terminal output What is the expected output? What do you see instead? No fonts/words/strings are being displayed anywhere except I see the default zoom is "Window" and I see "New Window" in the undo history. What version of the product are you using? On what operating system? paint-mono version 3.0.3602.19117, on Ubuntu Karmic 9.10 Please provide any additional information below. Took a bit to get make to compile with no errors, but this was all documented in issue 6. I attached a text file of my terminal output before closing PDN.
  • Sep 24, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by christoph.langner   -   Yes, we can mark this issue as invalid, when you install all the necessary mono stuff, you can install and run paint mono... I blogged about it: http://linuxundich.de/en/ubuntu/paint-mono-paint-net-fur-linux/
    Yes, we can mark this issue as invalid, when you install all the necessary mono stuff, you can install and run paint mono... I blogged about it: http://linuxundich.de/en/ubuntu/paint-mono-paint-net-fur-linux/
  • Sep 24, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by kedmond   -   brlongbons, thanks for the help. installing libmono-winforms2.0-cil fixed the problem with "error CS0006: cannot find metadata file `System.Windows.Forms'". Thanks again!
    brlongbons, thanks for the help. installing libmono-winforms2.0-cil fixed the problem with "error CS0006: cannot find metadata file `System.Windows.Forms'". Thanks again!
  • Sep 22, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by brlongbons   -   Should this bug should be closed as Invalid? Installing the proper prerequisites solves the problem. It's just that Ubuntu and various other distributions have broken mono up into minimal pieces whereas the original distribution is one big bundle. Still, it would be a good idea ("Enhancement") to have the configure script check for the necessary prerequisites (that's what the configure script is for...) - looking at the configure script, it already checks for a list of required packages, but the list is empty. But this list of packages belongs to pkg-config and is not the same as the one maintained by dpkg. Overall, I think the prerequisites will need some kind of distro-specific test. For example, if [ -f /etc/debian_version ]; then check the return value of dpkg -s $DEBIAN_PACKAGES (enumerated below) These are the only packages I had to install (aside from their automatic dependencies): libmono-system-runtime2.0-cil libmono-winforms2.0-cil mono-devel and then running 'make install' is necessary because there is some hard-coded path set when you ./configure - you can't just run it from the build directory?
    Should this bug should be closed as Invalid? Installing the proper prerequisites solves the problem. It's just that Ubuntu and various other distributions have broken mono up into minimal pieces whereas the original distribution is one big bundle. Still, it would be a good idea ("Enhancement") to have the configure script check for the necessary prerequisites (that's what the configure script is for...) - looking at the configure script, it already checks for a list of required packages, but the list is empty. But this list of packages belongs to pkg-config and is not the same as the one maintained by dpkg. Overall, I think the prerequisites will need some kind of distro-specific test. For example, if [ -f /etc/debian_version ]; then check the return value of dpkg -s $DEBIAN_PACKAGES (enumerated below) These are the only packages I had to install (aside from their automatic dependencies): libmono-system-runtime2.0-cil libmono-winforms2.0-cil mono-devel and then running 'make install' is necessary because there is some hard-coded path set when you ./configure - you can't just run it from the build directory?
  • Aug 26, 2009
    issue 25 (crashes upon saving files - doesnt save file either) reported by dannyglover86   -   What steps will reproduce the problem? 1. Saving a file What is the expected output? What do you see instead? Expected : Saving of image. Instead? Crash What version of the product are you using? On what operating system? 3.0.3309.22709 - Ubuntu 9.04
    What steps will reproduce the problem? 1. Saving a file What is the expected output? What do you see instead? Expected : Saving of image. Instead? Crash What version of the product are you using? On what operating system? 3.0.3309.22709 - Ubuntu 9.04
  • Aug 12, 2009
    PortingStrategy (Paint.NET Porting Strategy) Wiki page commented on by philipgoh2   -   Depending on the license applied to the source code, we could potentially maintain paint-mono as a separate fork and develop this independently. This could be ideal, as Paint.NET v4 is supposed to be a total rewrite.
    Depending on the license applied to the source code, we could potentially maintain paint-mono as a separate fork and develop this independently. This could be ideal, as Paint.NET v4 is supposed to be a total rewrite.
  • Jul 28, 2009
    PortingStrategy (Paint.NET Porting Strategy) Wiki page commented on by stephenj...@gmail.com   -   What is the likelihood that Paint.mono will continue to be developed into the future considering that the Paint.net project has now closed its source code?
    What is the likelihood that Paint.mono will continue to be developed into the future considering that the Paint.net project has now closed its source code?
  • May 16, 2009
    issue 24 (Crashes when fast press keyboard shortcut.) reported by limuhob   -   What steps will reproduce the problem? 1. start paintdotnet 2. press (fast) key f,a,f,a 3. What is the expected output? What do you see instead? Expected: Probably SaveAs dialog with filename "fa". Current: Crash What version of the product are you using? On what operating system? paint-mono r63 Please provide any additional information below. Unhandled Exception: System.InvalidOperationException: ScratchSurface already borrowed: 'PaintDotNet.DocumentWorkspace.DoSaveAs() handing off scratch surface to DoSaveAsDialog()' (trying to borrow for: 'PaintDotNet.DocumentWorkspace.DoSaveAs() handing off scratch surface to DoSaveAsDialog()') at PaintDotNet.DocumentWorkspace.BorrowScratchSurface (System.String reason) [0x00000] at PaintDotNet.DocumentWorkspace.DoSaveAs () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.DocumentWorkspace:DoSaveAs () at PaintDotNet.Menus.FileMenu.MenuFileSaveAs_Click (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnClick (System.EventArgs e) [0x00000] at PaintDotNet.PdnMenuItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.PerformClick () [0x00000] at System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStrip.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStripDropDown.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Control.ProcessControlMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Form.ShowDialog (IWin32Window ownerWin32) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Form:ShowDialog (System.Windows.Forms.IWin32Window) at System.Windows.Forms.CommonDialog.ShowDialog (IWin32Window owner) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.CommonDialog:ShowDialog (System.Windows.Forms.IWin32Window) at PaintDotNet.SystemLayer.UI.ShowFileDialogWithThumbnailView (System.Windows.Forms.Control owner, System.Windows.Forms.FileDialog fd) [0x00000] at PaintDotNet.DocumentWorkspace.ShowFileDialog (System.Windows.Forms.Control owner, System.Windows.Forms.FileDialog fd) [0x00000] at PaintDotNet.DocumentWorkspace.DoSaveAsDialog (System.String& newFileName, PaintDotNet.FileType& newFileType, PaintDotNet.SaveConfigToken& newSaveConfigToken, PaintDotNet.Surface saveScratchSurface) [0x00000] at PaintDotNet.DocumentWorkspace.DoSaveAs () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.DocumentWorkspace:DoSaveAs () at PaintDotNet.Menus.FileMenu.MenuFileSaveAs_Click (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnClick (System.EventArgs e) [0x00000] at PaintDotNet.PdnMenuItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.PerformClick () [0x00000] at System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStrip.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStripDropDown.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Control.ProcessControlMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000]
    What steps will reproduce the problem? 1. start paintdotnet 2. press (fast) key f,a,f,a 3. What is the expected output? What do you see instead? Expected: Probably SaveAs dialog with filename "fa". Current: Crash What version of the product are you using? On what operating system? paint-mono r63 Please provide any additional information below. Unhandled Exception: System.InvalidOperationException: ScratchSurface already borrowed: 'PaintDotNet.DocumentWorkspace.DoSaveAs() handing off scratch surface to DoSaveAsDialog()' (trying to borrow for: 'PaintDotNet.DocumentWorkspace.DoSaveAs() handing off scratch surface to DoSaveAsDialog()') at PaintDotNet.DocumentWorkspace.BorrowScratchSurface (System.String reason) [0x00000] at PaintDotNet.DocumentWorkspace.DoSaveAs () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.DocumentWorkspace:DoSaveAs () at PaintDotNet.Menus.FileMenu.MenuFileSaveAs_Click (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnClick (System.EventArgs e) [0x00000] at PaintDotNet.PdnMenuItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.PerformClick () [0x00000] at System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStrip.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStripDropDown.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Control.ProcessControlMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Form.ShowDialog (IWin32Window ownerWin32) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Form:ShowDialog (System.Windows.Forms.IWin32Window) at System.Windows.Forms.CommonDialog.ShowDialog (IWin32Window owner) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.CommonDialog:ShowDialog (System.Windows.Forms.IWin32Window) at PaintDotNet.SystemLayer.UI.ShowFileDialogWithThumbnailView (System.Windows.Forms.Control owner, System.Windows.Forms.FileDialog fd) [0x00000] at PaintDotNet.DocumentWorkspace.ShowFileDialog (System.Windows.Forms.Control owner, System.Windows.Forms.FileDialog fd) [0x00000] at PaintDotNet.DocumentWorkspace.DoSaveAsDialog (System.String& newFileName, PaintDotNet.FileType& newFileType, PaintDotNet.SaveConfigToken& newSaveConfigToken, PaintDotNet.Surface saveScratchSurface) [0x00000] at PaintDotNet.DocumentWorkspace.DoSaveAs () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.DocumentWorkspace:DoSaveAs () at PaintDotNet.Menus.FileMenu.MenuFileSaveAs_Click (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnClick (System.EventArgs e) [0x00000] at PaintDotNet.PdnMenuItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.PerformClick () [0x00000] at System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStrip.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.ToolStripDropDown.ProcessMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Control.ProcessControlMnemonic (Char charCode) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000]
  • May 16, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by limuhob   -   problem with "System.Runtime.Serialization.Formatters.Soap" solved for me by installing: libmono-system-runtime2.0-cil
    problem with "System.Runtime.Serialization.Formatters.Soap" solved for me by installing: libmono-system-runtime2.0-cil
  • May 03, 2009
    issue 20 (Does not build on x86_64) commented on by eric.moret   -   Updated x86_64 build patch for latest upstream 0.1.63
    Updated x86_64 build patch for latest upstream 0.1.63
  • May 03, 2009
    issue 23 (PaintDotNet won't load big files) reported by supersnail-du-91@hotmail.fr   -   What steps will reproduce the problem? 1. Load a big file by "File->Open" What is the expected output? What do you see instead? When I rey to load file,in terminal I have: ** (/usr/local/lib/paintdotnet/PaintDotNet.exe:14432): WARNING **: Path conversion requested 32590848 bytes (3296 x 2472). Maximum size is 8388608 bytes. What version of the product are you using? On what operating system? Final Debug Build("3.0.3410.22500") Please provide any additional information below.
    What steps will reproduce the problem? 1. Load a big file by "File->Open" What is the expected output? What do you see instead? When I rey to load file,in terminal I have: ** (/usr/local/lib/paintdotnet/PaintDotNet.exe:14432): WARNING **: Path conversion requested 32590848 bytes (3296 x 2472). Maximum size is 8388608 bytes. What version of the product are you using? On what operating system? Final Debug Build("3.0.3410.22500") Please provide any additional information below.
  • Apr 29, 2009
    issue 22 (Wont save files) reported by hesvital   -   What steps will reproduce the problem? 1. Open the Paint dot Net 2. Save the defaut blank image 3. The program will crash and quit What is the expected output? What do you see instead? The saved file in the file-system. The program crashes instead, the file is created and have 0 bytes. What version of the product are you using? On what operating system? I am running Paint.NET v3.0 on Ubuntu 9.04 Please provide any additional information below. It happens every time I try to save anything.
    What steps will reproduce the problem? 1. Open the Paint dot Net 2. Save the defaut blank image 3. The program will crash and quit What is the expected output? What do you see instead? The saved file in the file-system. The program crashes instead, the file is created and have 0 bytes. What version of the product are you using? On what operating system? I am running Paint.NET v3.0 on Ubuntu 9.04 Please provide any additional information below. It happens every time I try to save anything.
  • Apr 15, 2009
    issue 21 (Crashes when creating a new image) reported by kyo765   -   What steps will reproduce the problem? 1. start pdn 2. file -> new (i used 15x15, but it looks like any size will do this) 3. confirm 4. crash What is the expected output? What do you see instead? I expect the program to make a new image, it crashes What version of the product are you using? On what operating system? amd64, debian 5.0.0, pdn 0.1.63 Please provide any additional information below. output below. Oh and while I'm complaining, it also displays part of the image in it's original size till you hover over it with your mouse when you zoom in. Anyway; Unhandled Exception: System.ObjectDisposedException: The object was used after being disposed. at System.Windows.Forms.Control.CreateControl () [0x00000] at System.Windows.Forms.Control.SetVisibleCore (Boolean value) [0x00000] at System.Windows.Forms.Control.set_Visible (Boolean value) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Visible (bool) at PaintDotNet.DocumentView.ResumeRefresh () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.DocumentView:ResumeRefresh () at PaintDotNet.AppWorkspace.CreateBlankDocumentInNewWorkspace (Size size, MeasurementUnit dpuUnit, Double dpu, Boolean isInitial) [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.AppWorkspace:CreateBlankDocumentInNewWorkspace (System.Drawing.Size,PaintDotNet.MeasurementUnit,double,bool) at PaintDotNet.Actions.NewImageAction.PerformAction (PaintDotNet.AppWorkspace appWorkspace) [0x00000] at PaintDotNet.AppWorkspace.PerformAction (PaintDotNet.AppWorkspaceAction performMe) [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.AppWorkspace:PerformAction (PaintDotNet.AppWorkspaceAction) at PaintDotNet.Menus.FileMenu.MenuFileNew_Click (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnClick (System.EventArgs e) [0x00000] at PaintDotNet.PdnMenuItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.HandleClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.FireEvent (System.EventArgs e, ToolStripItemEventType met) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.ToolStripItem:FireEvent (System.EventArgs,System.Windows.Forms.ToolStripItemEventType) at System.Windows.Forms.ToolStrip.OnMouseUp (System.Windows.Forms.MouseEventArgs mea) [0x00000] at System.Windows.Forms.ToolStripDropDown.OnMouseUp (System.Windows.Forms.MouseEventArgs mea) [0x00000] at System.Windows.Forms.Control.WmLButtonUp (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ScrollableControl.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStrip.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStripDropDown.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000] at System.Windows.Forms.XplatUIX11.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.XplatUI.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000]
    What steps will reproduce the problem? 1. start pdn 2. file -> new (i used 15x15, but it looks like any size will do this) 3. confirm 4. crash What is the expected output? What do you see instead? I expect the program to make a new image, it crashes What version of the product are you using? On what operating system? amd64, debian 5.0.0, pdn 0.1.63 Please provide any additional information below. output below. Oh and while I'm complaining, it also displays part of the image in it's original size till you hover over it with your mouse when you zoom in. Anyway; Unhandled Exception: System.ObjectDisposedException: The object was used after being disposed. at System.Windows.Forms.Control.CreateControl () [0x00000] at System.Windows.Forms.Control.SetVisibleCore (Boolean value) [0x00000] at System.Windows.Forms.Control.set_Visible (Boolean value) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Visible (bool) at PaintDotNet.DocumentView.ResumeRefresh () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.DocumentView:ResumeRefresh () at PaintDotNet.AppWorkspace.CreateBlankDocumentInNewWorkspace (Size size, MeasurementUnit dpuUnit, Double dpu, Boolean isInitial) [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.AppWorkspace:CreateBlankDocumentInNewWorkspace (System.Drawing.Size,PaintDotNet.MeasurementUnit,double,bool) at PaintDotNet.Actions.NewImageAction.PerformAction (PaintDotNet.AppWorkspace appWorkspace) [0x00000] at PaintDotNet.AppWorkspace.PerformAction (PaintDotNet.AppWorkspaceAction performMe) [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.AppWorkspace:PerformAction (PaintDotNet.AppWorkspaceAction) at PaintDotNet.Menus.FileMenu.MenuFileNew_Click (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnClick (System.EventArgs e) [0x00000] at PaintDotNet.PdnMenuItem.OnClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripMenuItem.HandleClick (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.FireEvent (System.EventArgs e, ToolStripItemEventType met) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.ToolStripItem:FireEvent (System.EventArgs,System.Windows.Forms.ToolStripItemEventType) at System.Windows.Forms.ToolStrip.OnMouseUp (System.Windows.Forms.MouseEventArgs mea) [0x00000] at System.Windows.Forms.ToolStripDropDown.OnMouseUp (System.Windows.Forms.MouseEventArgs mea) [0x00000] at System.Windows.Forms.Control.WmLButtonUp (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ScrollableControl.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStrip.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStripDropDown.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000] at System.Windows.Forms.XplatUIX11.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.XplatUI.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000]
  • Mar 25, 2009
    paintdotnet-0.1.63.tar.gz (Source tarball of svn r63) file uploaded by shana.ufie   -  
    Labels: Type-Source
    Labels: Type-Source
  • Feb 20, 2009
    issue 20 (Does not build on x86_64) reported by eric.moret   -   In order to package for Fedora, I had to create a patch to build on x86_64. Please see attached, it should apply cleanly on svn 63.
    In order to package for Fedora, I had to create a patch to build on x86_64. Please see attached, it should apply cleanly on svn 63.
  • Feb 10, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by vacuumir   -   PS: About the Mono.Posix problem: ___________________ Tue Feb 10 2009 11:16:24 GMT+0100 (CET) Mono Documentation http://www.go-mono.com/docs/index.aspx?tlink=0@N%3AMono.Posix ------------------------ The deprecated Mono.Posix namespace, use Mono.Unix instead. ___________________
    PS: About the Mono.Posix problem: ___________________ Tue Feb 10 2009 11:16:24 GMT+0100 (CET) Mono Documentation http://www.go-mono.com/docs/index.aspx?tlink=0@N%3AMono.Posix ------------------------ The deprecated Mono.Posix namespace, use Mono.Unix instead. ___________________
  • Feb 10, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by vacuumir   -   Ok managed to compile it for Ubuntu, but it still won't run... First of, as besuperhappy, Jan 17, 2009 said, I had to do sudo apt-get install libmono-winforms2.0-cil but then, I got the error CS0006: cannot find metadata file `System.Runtime.Serialization.Formatters.Soap' This System.Runtime.Serialization.Formatters.Soap is in fact a part of some packages for OpenSUSE and such, and packaged in an RPM, known as mono-web-***.rpm.. But that package does not exist on Ubuntu. So I tried downloading http://rpm.pbone.net/index.php3/stat/4/idpl/11814187/com/mono-web-2.4-5.pre2.20090502svn125709.fc11.i386.rpm.html (via http://rpm.pbone.net/index.php3?stat=3&search=mono-web&srodzaj=3) And then, tried to convert rpm package to deb using alien: sudo alien mono-web-2.4-5.pre2.20090502svn125709.fc11.i386.rpm sudo chown myself\:myself mono-web_2.4-6_i386.deb Installing the deb via sudo dpkg -i mono-web_2.4-6_i386.deb will fail at this stage with dpkg: error processing mono-web_2.4-6_i386.deb (--install): trying to overwrite `/usr/share/man/man1/httpcfg.1.gz', which is also in package mono-2.0-devel dpkg-deb: subprocess paste killed by signal (Broken pipe) Processing triggers for man-db ... Errors were encountered while processing: mono-web_2.4-6_i386.deb So I tried to remove mono-2.0-devel (and additionally libmono2.0-cil since it complained): sudo apt-get remove mono-2.0-devel sudo apt-get remove libmono2.0-cil Only then sudo dpkg -i mono-web_2.4-6_i386.deb will pass.. But then, if trying to do ./configure and make, we get again the Widows.Forms thing missing - so after mono-web_2.4-6_i386.deb got installed, one has to do: sudo apt-get install libmono-winforms2.0-cil which will fail with: dpkg: error processing /var/cache/apt/archives/libmono2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb (--unpack): trying to overwrite `/usr/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll', which is also in package mono-web dpkg-deb: subprocess paste killed by signal (Broken pipe) Selecting previously deselected package libmono-system-web2.0-cil. Unpacking libmono-system-web2.0-cil (from .../libmono-system-web2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb) ... dpkg: error processing /var/cache/apt/archives/libmono-system-web2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb (--unpack): trying to overwrite `/usr/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll', which is also in package mono-web dpkg-deb: subprocess paste killed by signal (Broken pipe) Selecting previously deselected package libmono-winforms2.0-cil. Unpacking libmono-winforms2.0-cil (from .../libmono-winforms2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb) ... Errors were encountered while processing: /var/cache/apt/archives/libmono2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb /var/cache/apt/archives/libmono-system-web2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb E: Sub-process /usr/bin/dpkg returned an error code (1) But, now at least, ./configure and make works to the end - and an executable is generated !! Unfortunately, running this executable results with: e$ mono PaintDotNet.exe ** (PaintDotNet.exe:11652): WARNING **: The following assembly referenced from /usr/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll could not be loaded: Assembly: Mono.Posix (assemblyref_index=7) Version: 2.0.0.0 Public Key: 0738eb9f132ed756 The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/usr/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089). ** (PaintDotNet.exe:11652): WARNING **: Could not load file or assembly 'Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. Unhandled Exception: System.TypeLoadException: A type load exception has occurred. at System.Windows.Forms.Application.EnableVisualStyles () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000] Any ideas on what to do next? Thanks....
    Ok managed to compile it for Ubuntu, but it still won't run... First of, as besuperhappy, Jan 17, 2009 said, I had to do sudo apt-get install libmono-winforms2.0-cil but then, I got the error CS0006: cannot find metadata file `System.Runtime.Serialization.Formatters.Soap' This System.Runtime.Serialization.Formatters.Soap is in fact a part of some packages for OpenSUSE and such, and packaged in an RPM, known as mono-web-***.rpm.. But that package does not exist on Ubuntu. So I tried downloading http://rpm.pbone.net/index.php3/stat/4/idpl/11814187/com/mono-web-2.4-5.pre2.20090502svn125709.fc11.i386.rpm.html (via http://rpm.pbone.net/index.php3?stat=3&search=mono-web&srodzaj=3) And then, tried to convert rpm package to deb using alien: sudo alien mono-web-2.4-5.pre2.20090502svn125709.fc11.i386.rpm sudo chown myself\:myself mono-web_2.4-6_i386.deb Installing the deb via sudo dpkg -i mono-web_2.4-6_i386.deb will fail at this stage with dpkg: error processing mono-web_2.4-6_i386.deb (--install): trying to overwrite `/usr/share/man/man1/httpcfg.1.gz', which is also in package mono-2.0-devel dpkg-deb: subprocess paste killed by signal (Broken pipe) Processing triggers for man-db ... Errors were encountered while processing: mono-web_2.4-6_i386.deb So I tried to remove mono-2.0-devel (and additionally libmono2.0-cil since it complained): sudo apt-get remove mono-2.0-devel sudo apt-get remove libmono2.0-cil Only then sudo dpkg -i mono-web_2.4-6_i386.deb will pass.. But then, if trying to do ./configure and make, we get again the Widows.Forms thing missing - so after mono-web_2.4-6_i386.deb got installed, one has to do: sudo apt-get install libmono-winforms2.0-cil which will fail with: dpkg: error processing /var/cache/apt/archives/libmono2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb (--unpack): trying to overwrite `/usr/lib/mono/gac/Mono.Http/2.0.0.0__0738eb9f132ed756/Mono.Http.dll', which is also in package mono-web dpkg-deb: subprocess paste killed by signal (Broken pipe) Selecting previously deselected package libmono-system-web2.0-cil. Unpacking libmono-system-web2.0-cil (from .../libmono-system-web2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb) ... dpkg: error processing /var/cache/apt/archives/libmono-system-web2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb (--unpack): trying to overwrite `/usr/lib/mono/gac/System.Web/2.0.0.0__b03f5f7f11d50a3a/System.Web.dll', which is also in package mono-web dpkg-deb: subprocess paste killed by signal (Broken pipe) Selecting previously deselected package libmono-winforms2.0-cil. Unpacking libmono-winforms2.0-cil (from .../libmono-winforms2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb) ... Errors were encountered while processing: /var/cache/apt/archives/libmono2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb /var/cache/apt/archives/libmono-system-web2.0-cil_1.9.1+dfsg-4ubuntu2_all.deb E: Sub-process /usr/bin/dpkg returned an error code (1) But, now at least, ./configure and make works to the end - and an executable is generated !! Unfortunately, running this executable results with: e$ mono PaintDotNet.exe ** (PaintDotNet.exe:11652): WARNING **: The following assembly referenced from /usr/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll could not be loaded: Assembly: Mono.Posix (assemblyref_index=7) Version: 2.0.0.0 Public Key: 0738eb9f132ed756 The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/usr/lib/mono/gac/System.Windows.Forms/2.0.0.0__b77a5c561934e089). ** (PaintDotNet.exe:11652): WARNING **: Could not load file or assembly 'Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756' or one of its dependencies. Unhandled Exception: System.TypeLoadException: A type load exception has occurred. at System.Windows.Forms.Application.EnableVisualStyles () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000] Any ideas on what to do next? Thanks....
  • Feb 03, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by christoph.langner   -   Even on Ubuntu Jaunty with mono 2.0.1 make fails with the previous noted messages...
    Even on Ubuntu Jaunty with mono 2.0.1 make fails with the previous noted messages...
  • Jan 27, 2009
    issue 18 (Building solution in Microsoft Visual Studio 5 or 8) reported by rykhan2003   -   Building the paintdotnet.sln from vendor directory in Microsoft Visual Studio 5 or 8 creates problems. Compilation is done successfully, but it creates some build problems. Kindly if you write the path for correct building them in MS-VS 5 or 8 Error 1 The command "@rem Embed manifest call "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\embedManifest.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\bin\Debug\SetupNgen.exe" "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\requireAdministrator.xml" call "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\embedManifest.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\obj\Debug\SetupNgen.exe" "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\requireAdministrator.xml" @rem Sign rem call "E:\Paint-Mono\vendor\pdn_src_3_0\src\signfile.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\obj\Debug\SetupNgen.exe" rem call "E:\Paint-Mono\vendor\pdn_src_3_0\src\signfile.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\bin\Debug\SetupNgen.exe" " exited with code 1. SetupNgen
    Building the paintdotnet.sln from vendor directory in Microsoft Visual Studio 5 or 8 creates problems. Compilation is done successfully, but it creates some build problems. Kindly if you write the path for correct building them in MS-VS 5 or 8 Error 1 The command "@rem Embed manifest call "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\embedManifest.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\bin\Debug\SetupNgen.exe" "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\requireAdministrator.xml" call "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\embedManifest.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\obj\Debug\SetupNgen.exe" "E:\Paint-Mono\vendor\pdn_src_3_0\src\Manifests\requireAdministrator.xml" @rem Sign rem call "E:\Paint-Mono\vendor\pdn_src_3_0\src\signfile.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\obj\Debug\SetupNgen.exe" rem call "E:\Paint-Mono\vendor\pdn_src_3_0\src\signfile.bat" "E:\Paint-Mono\vendor\pdn_src_3_0\src\SetupNgen\bin\Debug\SetupNgen.exe" " exited with code 1. SetupNgen
  • Jan 26, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by kyo765   -   Nope: error CS0006: cannot find metadata file `System.Runtime.Serialization.Formatters.Soap' Compilation failed: 1 error(s), 0 warnings
    Nope: error CS0006: cannot find metadata file `System.Runtime.Serialization.Formatters.Soap' Compilation failed: 1 error(s), 0 warnings
  • Jan 22, 2009
    issue 17 (make[2]: *** [pre-install-local-hook] Error 1 ) reported by xmlic...@stud.fit.vutbr.cz   -   > What steps will reproduce the problem? 1. ./configure 2. make 3. sudo make install > What is the expected output? What do you see instead? Excpected behavior is make install without errors, but actual behavior is like this: cp PaintDotNet.Strings*.resources /usr/local/lib/paintdotnet cp ../bin/*/PaintDotNet.Strings.3.resources /usr/local/lib/paintdotnet cp: will not overwrite just-created `/usr/local/lib/paintdotnet/PaintDotNet.Strings.3.resources' with `../bin/Release/PaintDotNet.Strings.3.resources' make[2]: *** [pre-install-local-hook] Error 1 make[2]: Leaving directory `/home/xmlich02/workspace/paint-mono/paint-mono-3.0.63-svn/Resources.mui' make[1]: *** [install-local] Error 2 make[1]: Leaving directory `/home/xmlich02/workspace/paint-mono/paint-mono-3.0.63-svn/Resources.mui' make: *** [install-recursive] Error 1 > What version of the product are you using? On what operating system? I am using svn version revision 63 on ubuntu 8.10 > Please provide any additional information below. Here is my patch: $ svn diff ./Resources.mui/custom-hooks.make Index: Resources.mui/custom-hooks.make =================================================================== --- Resources.mui/custom-hooks.make (revision 63) +++ Resources.mui/custom-hooks.make (working copy) @@ -1,4 +1,4 @@ pre-install-local-hook: mkdir -p $(DESTDIR)$(prefix)/lib/$(PACKAGE) cp PaintDotNet.Strings*.resources $(DESTDIR)$(prefix)/lib/$(PACKAGE) - cp ../bin/*/PaintDotNet.Strings.3.resources $(DESTDIR)$(prefix)/lib/$(PACKAGE) +# cp ../bin/*/PaintDotNet.Strings.3.resources $(DESTDIR)$(prefix)/lib/$(PACKAGE)
    > What steps will reproduce the problem? 1. ./configure 2. make 3. sudo make install > What is the expected output? What do you see instead? Excpected behavior is make install without errors, but actual behavior is like this: cp PaintDotNet.Strings*.resources /usr/local/lib/paintdotnet cp ../bin/*/PaintDotNet.Strings.3.resources /usr/local/lib/paintdotnet cp: will not overwrite just-created `/usr/local/lib/paintdotnet/PaintDotNet.Strings.3.resources' with `../bin/Release/PaintDotNet.Strings.3.resources' make[2]: *** [pre-install-local-hook] Error 1 make[2]: Leaving directory `/home/xmlich02/workspace/paint-mono/paint-mono-3.0.63-svn/Resources.mui' make[1]: *** [install-local] Error 2 make[1]: Leaving directory `/home/xmlich02/workspace/paint-mono/paint-mono-3.0.63-svn/Resources.mui' make: *** [install-recursive] Error 1 > What version of the product are you using? On what operating system? I am using svn version revision 63 on ubuntu 8.10 > Please provide any additional information below. Here is my patch: $ svn diff ./Resources.mui/custom-hooks.make Index: Resources.mui/custom-hooks.make =================================================================== --- Resources.mui/custom-hooks.make (revision 63) +++ Resources.mui/custom-hooks.make (working copy) @@ -1,4 +1,4 @@ pre-install-local-hook: mkdir -p $(DESTDIR)$(prefix)/lib/$(PACKAGE) cp PaintDotNet.Strings*.resources $(DESTDIR)$(prefix)/lib/$(PACKAGE) - cp ../bin/*/PaintDotNet.Strings.3.resources $(DESTDIR)$(prefix)/lib/$(PACKAGE) +# cp ../bin/*/PaintDotNet.Strings.3.resources $(DESTDIR)$(prefix)/lib/$(PACKAGE)
  • Jan 17, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by besuperhappy   -   This will probably solve the problem: sudo apt-get install libmono-winforms2.0-cil
    This will probably solve the problem: sudo apt-get install libmono-winforms2.0-cil
  • Jan 16, 2009
    issue 16 (Gaussian Blur causes crash) reported by atsushieno   -   [What steps will reproduce the problem?] 1. run paintdotnet 2. Select menu [Effects]->[Blurs]->[Gaussian Blur...] [What is the expected output? What do you see instead?] It should not crash, but: atsushi@linux-avjl:~> mono --debug /usr/local/lib/paintdotnet/PaintDotNet.exe -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Stack overflow in unmanaged: IP: 0x80f265e, fault addr: 0xb4466ffc Unhandled Exception: System.StackOverflowException: The requested operation caused a stack overflow. at (wrapper managed-to-native) object:__icall_wrapper_mono_array_new_specific (intptr,int) at System.Collections.ArrayList.EnsureCapacity (Int32 count) [0x00032] in /svn/mcs/class/corlib/System.Collections/ArrayList.cs:2790 at System.Collections.ArrayList.Add (System.Object value) [0x00013] in /svn/mcs/class/corlib/System.Collections/ArrayList.cs:2851 at System.Collections.ArrayList+SynchronizedArrayListWrapper.Add (System.Object value) [0x0000d] in /svn/mcs/class/corlib/System.Collections/ArrayList.cs:1222 at PaintDotNet.Effects.BackgroundEffectRenderer.ThreadFunction () [0x00130] in /svn/paint-mono/src/Effects/BackgroundEffectRenderer.cs:194 [What version of the product are you using? On what operating system?] mono and libgdiplus from trunk (r123602 / r123608).
    [What steps will reproduce the problem?] 1. run paintdotnet 2. Select menu [Effects]->[Blurs]->[Gaussian Blur...] [What is the expected output? What do you see instead?] It should not crash, but: atsushi@linux-avjl:~> mono --debug /usr/local/lib/paintdotnet/PaintDotNet.exe -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Stack overflow in unmanaged: IP: 0x80f265e, fault addr: 0xb4466ffc Unhandled Exception: System.StackOverflowException: The requested operation caused a stack overflow. at (wrapper managed-to-native) object:__icall_wrapper_mono_array_new_specific (intptr,int) at System.Collections.ArrayList.EnsureCapacity (Int32 count) [0x00032] in /svn/mcs/class/corlib/System.Collections/ArrayList.cs:2790 at System.Collections.ArrayList.Add (System.Object value) [0x00013] in /svn/mcs/class/corlib/System.Collections/ArrayList.cs:2851 at System.Collections.ArrayList+SynchronizedArrayListWrapper.Add (System.Object value) [0x0000d] in /svn/mcs/class/corlib/System.Collections/ArrayList.cs:1222 at PaintDotNet.Effects.BackgroundEffectRenderer.ThreadFunction () [0x00130] in /svn/paint-mono/src/Effects/BackgroundEffectRenderer.cs:194 [What version of the product are you using? On what operating system?] mono and libgdiplus from trunk (r123602 / r123608).
  • Jan 02, 2009
    issue 6 (Compile fails with cannot find metadata file `System.Windows...) commented on by kyo765   -   Also on (k)ubuntu here (8.10) $ mono --version Mono JIT compiler version 1.9.1 (tarball) Copyright (C) 2002-2007 Novell, Inc and Contributors. www.mono-project.com TLS: __thread GC: Included Boehm (with typed GC) SIGSEGV: altstack Notifications: epoll Architecture: x86 Disabled: none getting the same error: error CS0006: cannot find metadata file `System.Windows.Forms' Compilation failed: 1 error(s), 0 warnings
    Also on (k)ubuntu here (8.10) $ mono --version Mono JIT compiler version 1.9.1 (tarball) Copyright (C) 2002-2007 Novell, Inc and Contributors. www.mono-project.com TLS: __thread GC: Included Boehm (with typed GC) SIGSEGV: altstack Notifications: epoll Architecture: x86 Disabled: none getting the same error: error CS0006: cannot find metadata file `System.Windows.Forms' Compilation failed: 1 error(s), 0 warnings

Older

  • Dec 21, 2008
    issue 15 (Acquire menu crashes Paint.NET on OSX) reported by dbischof   -   What steps will reproduce the problem? 1. Install Mono 2 2. SVN -> configure -> make -> sudo make install 3. paintdotnet 4. Click on "File", hover mouse over "Acquire" What is the expected output? What do you see instead? I should see the menu expand and read "From Scanner or Camera..." (it should probably be disabled). Instead it crashes: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Unhandled Exception: System.ArgumentOutOfRangeException: Index is less than 0 or more than or equal to the list count. Parameter name: index 0 at System.Collections.ArrayList.get_Item (Int32 index) [0x00000] at System.Diagnostics.ProcessModuleCollection.get_Item (Int32 index) [0x00000] at System.Diagnostics.Process.get_MainModule () [0x00000] at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:get_MainModule () at PaintDotNet.SystemLayer.ScanningAndPrinting.CallWiaProxy32 (System.String args, Boolean spinEvents) [0x00000] at PaintDotNet.SystemLayer.ScanningAndPrinting.get_IsComponentAvailable () [0x00000] at PaintDotNet.Menus.FileMenu.MenuFileAcquire_DropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at (wrapper delegate-invoke) System.EventHandler:invoke_void__this___object_EventArgs (object,System.EventArgs) at System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripDropDownItem.ShowDropDown () [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnMouseEnter (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.FireEvent (System.EventArgs e, ToolStripItemEventType met) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.ToolStripItem:FireEvent (System.EventArgs,System.Windows.Forms.ToolStripItemEventType) at System.Windows.Forms.ToolStrip.OnMouseMove (System.Windows.Forms.MouseEventArgs mea) [0x00000] at System.Windows.Forms.Control.WmMouseMove (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ScrollableControl.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStrip.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStripDropDown.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000] at System.Windows.Forms.XplatUICarbon.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.XplatUI.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000] What version of the product are you using? On what operating system? Paint.NET v3.0 (Final Debug build 3.0.3277.29495) on OSX 10.5.5 on a 2.53 GHz Intel MBP with 4GB RAM Please provide any additional information below. If you use the keyboard instead of the mouse to navigate the menu, when you move down to "Acquire" and hit the right key to expand the menu it crashes with: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Unhandled Exception: System.ArgumentOutOfRangeException: Index is less than 0 or more than or equal to the list count. Parameter name: index 0 at System.Collections.ArrayList.get_Item (Int32 index) [0x00000] at System.Diagnostics.ProcessModuleCollection.get_Item (Int32 index) [0x00000] at System.Diagnostics.Process.get_MainModule () [0x00000] at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:get_MainModule () at PaintDotNet.SystemLayer.ScanningAndPrinting.CallWiaProxy32 (System.String args, Boolean spinEvents) [0x00000] at PaintDotNet.SystemLayer.ScanningAndPrinting.get_IsComponentAvailable () [0x00000] at PaintDotNet.Menus.FileMenu.MenuFileAcquire_DropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at (wrapper delegate-invoke) System.EventHandler:invoke_void__this___object_EventArgs (object,System.EventArgs) at System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripDropDownItem.ShowDropDown () [0x00000] at System.Windows.Forms.ToolStripDropDownItem.ProcessDialogKey (Keys keyData) [0x00000] at System.Windows.Forms.ToolStrip.ProcessDialogKey (Keys keyData) [0x00000] at System.Windows.Forms.ToolStripDropDown.ProcessDialogKey (Keys keyData) [0x00000] at System.Windows.Forms.Control.InternalPreProcessMessage (System.Windows.Forms.Message& msg) [0x00000] at System.Windows.Forms.Control.PreProcessMessage (System.Windows.Forms.Message& msg) [0x00000] at System.Windows.Forms.Control.PreProcessControlMessageInternal (System.Windows.Forms.Message& msg) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:PreProcessControlMessageInternal (System.Windows.Forms.Message&) at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000]
    What steps will reproduce the problem? 1. Install Mono 2 2. SVN -> configure -> make -> sudo make install 3. paintdotnet 4. Click on "File", hover mouse over "Acquire" What is the expected output? What do you see instead? I should see the menu expand and read "From Scanner or Camera..." (it should probably be disabled). Instead it crashes: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Unhandled Exception: System.ArgumentOutOfRangeException: Index is less than 0 or more than or equal to the list count. Parameter name: index 0 at System.Collections.ArrayList.get_Item (Int32 index) [0x00000] at System.Diagnostics.ProcessModuleCollection.get_Item (Int32 index) [0x00000] at System.Diagnostics.Process.get_MainModule () [0x00000] at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:get_MainModule () at PaintDotNet.SystemLayer.ScanningAndPrinting.CallWiaProxy32 (System.String args, Boolean spinEvents) [0x00000] at PaintDotNet.SystemLayer.ScanningAndPrinting.get_IsComponentAvailable () [0x00000] at PaintDotNet.Menus.FileMenu.MenuFileAcquire_DropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at (wrapper delegate-invoke) System.EventHandler:invoke_void__this___object_EventArgs (object,System.EventArgs) at System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripDropDownItem.ShowDropDown () [0x00000] at System.Windows.Forms.ToolStripMenuItem.OnMouseEnter (System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripItem.FireEvent (System.EventArgs e, ToolStripItemEventType met) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.ToolStripItem:FireEvent (System.EventArgs,System.Windows.Forms.ToolStripItemEventType) at System.Windows.Forms.ToolStrip.OnMouseMove (System.Windows.Forms.MouseEventArgs mea) [0x00000] at System.Windows.Forms.Control.WmMouseMove (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ScrollableControl.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStrip.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.ToolStripDropDown.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlWindowTarget.OnMessage (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.Control+ControlNativeWindow.WndProc (System.Windows.Forms.Message& m) [0x00000] at System.Windows.Forms.NativeWindow.WndProc (IntPtr hWnd, Msg msg, IntPtr wParam, IntPtr lParam) [0x00000] at System.Windows.Forms.XplatUICarbon.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.XplatUI.DispatchMessage (System.Windows.Forms.MSG& msg) [0x00000] at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000] What version of the product are you using? On what operating system? Paint.NET v3.0 (Final Debug build 3.0.3277.29495) on OSX 10.5.5 on a 2.53 GHz Intel MBP with 4GB RAM Please provide any additional information below. If you use the keyboard instead of the mouse to navigate the menu, when you move down to "Acquire" and hit the right key to expand the menu it crashes with: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Unhandled Exception: System.ArgumentOutOfRangeException: Index is less than 0 or more than or equal to the list count. Parameter name: index 0 at System.Collections.ArrayList.get_Item (Int32 index) [0x00000] at System.Diagnostics.ProcessModuleCollection.get_Item (Int32 index) [0x00000] at System.Diagnostics.Process.get_MainModule () [0x00000] at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:get_MainModule () at PaintDotNet.SystemLayer.ScanningAndPrinting.CallWiaProxy32 (System.String args, Boolean spinEvents) [0x00000] at PaintDotNet.SystemLayer.ScanningAndPrinting.get_IsComponentAvailable () [0x00000] at PaintDotNet.Menus.FileMenu.MenuFileAcquire_DropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at (wrapper delegate-invoke) System.EventHandler:invoke_void__this___object_EventArgs (object,System.EventArgs) at System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpening (System.Object sender, System.EventArgs e) [0x00000] at System.Windows.Forms.ToolStripDropDownItem.ShowDropDown () [0x00000] at System.Windows.Forms.ToolStripDropDownItem.ProcessDialogKey (Keys keyData) [0x00000] at System.Windows.Forms.ToolStrip.ProcessDialogKey (Keys keyData) [0x00000] at System.Windows.Forms.ToolStripDropDown.ProcessDialogKey (Keys keyData) [0x00000] at System.Windows.Forms.Control.InternalPreProcessMessage (System.Windows.Forms.Message& msg) [0x00000] at System.Windows.Forms.Control.PreProcessMessage (System.Windows.Forms.Message& msg) [0x00000] at System.Windows.Forms.Control.PreProcessControlMessageInternal (System.Windows.Forms.Message& msg) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:PreProcessControlMessageInternal (System.Windows.Forms.Message&) at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000]
  • Dec 21, 2008
    issue 13 (crashes on startup on osx) commented on by dbischof   -   Ionut, it works for me now. Thanks!
    Ionut, it works for me now. Thanks!
  • Nov 30, 2008
    issue 13 (crashes on startup on osx) commented on by ionut@bizau.ro   -   Issue was fixed in r63.
    Issue was fixed in r63.
  • Nov 30, 2008
    r63 (Apply patch from Ionut Bizau to fix Mono Paint on OSX) committed by miguel.de.icaza   -   Apply patch from Ionut Bizau to fix Mono Paint on OSX
    Apply patch from Ionut Bizau to fix Mono Paint on OSX
  • Nov 23, 2008
    issue 14 (Menu intercepts key input) reported by luiscubal   -   What steps will reproduce the problem? Compile Paint.Mono (./configure; make; sudo make install) Run Paint.Mono Choose the Text tool Press 'H'. What is the expected output? What do you see instead? Instead of writing 'h' in the image, the 'Help' menu is open. What version of the product are you using? On what operating system? Revision 62 Linux Ubuntu 8.10 Mono 2.0(no, it isn't 1.9.1) This is very annoying and makes Paint.Mono very hard to use for text output.
    What steps will reproduce the problem? Compile Paint.Mono (./configure; make; sudo make install) Run Paint.Mono Choose the Text tool Press 'H'. What is the expected output? What do you see instead? Instead of writing 'h' in the image, the 'Help' menu is open. What version of the product are you using? On what operating system? Revision 62 Linux Ubuntu 8.10 Mono 2.0(no, it isn't 1.9.1) This is very annoying and makes Paint.Mono very hard to use for text output.
  • Nov 10, 2008
    issue 13 (crashes on startup on osx) commented on by dbischof   -   It crashes for me too on OSX 10.5.5 on a 2.53 GHz Intel MBP with 4GB RAM: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing Stacktrace: at (wrapper managed-to-native) System.Threading.Thread.SetCachedCurrentCulture (System.Globalization.CultureInfo) <0x00004> at (wrapper managed-to-native) System.Threading.Thread.SetCachedCurrentCulture (System.Globalization.CultureInfo) <0xffffffff> at System.Threading.Thread.get_CurrentCulture () <0x00096> at System.NumberFormatter..ctor (System.Threading.Thread) <0x0003c> at System.Threading.Thread.AcquireNumberFormatter () <0x00040> at System.NumberFormatter.GetInstance () <0x0001b> at System.NumberFormatter.NumberToString (string,int,System.IFormatProvider) <0x00011> at System.Int32.ToString (string,System.IFormatProvider) <0x00018> at System.String.FormatHelper (System.Text.StringBuilder,System.IFormatProvider,string,object[]) <0x00323> at System.Text.StringBuilder.AppendFormat (System.IFormatProvider,string,object[]) <0x00016> at System.Text.StringBuilder.AppendFormat (string,object) <0x00042> at System.Exception.get_StackTrace () <0x002a8> at System.Exception.ToString () <0x0012b> at PaintDotNet.ThumbnailManager.RenderThreadImpl () <0x00720> at PaintDotNet.ThumbnailManager.RenderThread () <0x00010> at (wrapper runtime-invoke) System.Object.runtime_invoke_void__this__ (object,intptr,intptr,intptr) <0xffffffff> Abort trap
    It crashes for me too on OSX 10.5.5 on a 2.53 GHz Intel MBP with 4GB RAM: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing Stacktrace: at (wrapper managed-to-native) System.Threading.Thread.SetCachedCurrentCulture (System.Globalization.CultureInfo) <0x00004> at (wrapper managed-to-native) System.Threading.Thread.SetCachedCurrentCulture (System.Globalization.CultureInfo) <0xffffffff> at System.Threading.Thread.get_CurrentCulture () <0x00096> at System.NumberFormatter..ctor (System.Threading.Thread) <0x0003c> at System.Threading.Thread.AcquireNumberFormatter () <0x00040> at System.NumberFormatter.GetInstance () <0x0001b> at System.NumberFormatter.NumberToString (string,int,System.IFormatProvider) <0x00011> at System.Int32.ToString (string,System.IFormatProvider) <0x00018> at System.String.FormatHelper (System.Text.StringBuilder,System.IFormatProvider,string,object[]) <0x00323> at System.Text.StringBuilder.AppendFormat (System.IFormatProvider,string,object[]) <0x00016> at System.Text.StringBuilder.AppendFormat (string,object) <0x00042> at System.Exception.get_StackTrace () <0x002a8> at System.Exception.ToString () <0x0012b> at PaintDotNet.ThumbnailManager.RenderThreadImpl () <0x00720> at PaintDotNet.ThumbnailManager.RenderThread () <0x00010> at (wrapper runtime-invoke) System.Object.runtime_invoke_void__this__ (object,intptr,intptr,intptr) <0xffffffff> Abort trap
  • Oct 28, 2008
    issue 13 (crashes on startup on osx) reported by joolsa   -   What steps will reproduce the problem? 1. Install Mono 2 2. SVN -> configure -> make -> sudo make install 3. paintdotnet What is the expected output? What do you see instead? It crashes :( Tty follows: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Unhandled Exception: System.DllNotFoundException: dwmapi.dll at (wrapper managed-to-native) PaintDotNet.SystemLayer.SafeNativeMethods:DwmGetWindowAttribute (intptr,uint,void*,uint) at PaintDotNet.SystemLayer.UI.GetExtendedFrameBounds (System.Windows.Forms.Form window) [0x00000] at PaintDotNet.FloatingToolForm.get_SnapObstacle () [0x00000] at PaintDotNet.SnapManager.ParkObstacle (ISnapObstacleHost obstacle, ISnapObstacleHost snappedTo, HorizontalSnapEdge hEdge, VerticalSnapEdge vEdge) [0x00000] at PaintDotNet.AppWorkspace.ResetFloatingForms () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.AppWorkspace:ResetFloatingForms () at PaintDotNet.MainForm.PositionFloatingForms () [0x00000] at PaintDotNet.MainForm.OnLoad (System.EventArgs e) [0x00000] at System.Windows.Forms.Form.OnLoadInternal (System.EventArgs e) [0x00000] at System.Windows.Forms.Form.OnCreateControl () [0x00000] at System.Windows.Forms.Control.CreateControl () [0x00000] at System.Windows.Forms.Control.SetVisibleCore (Boolean value) [0x00000] at System.Windows.Forms.Form.SetVisibleCore (Boolean value) [0x00000] at System.Windows.Forms.Control.set_Visible (Boolean value) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Visible (bool) at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000] What version of the product are you using? On what operating system? OSX 10.4.11 on a 800 Mhz G4 iBook with 640MB RAM. Please provide any additional information below.
    What steps will reproduce the problem? 1. Install Mono 2 2. SVN -> configure -> make -> sudo make install 3. paintdotnet What is the expected output? What do you see instead? It crashes :( Tty follows: -----HERE------ Got System.Drawing.Rectangle[] get_ClipRectangles() and System.Windows.Forms.Hwnd ObjectFromHandle(IntPtr) -------Finished-------- SingleInstanceManager.SingleInstaceManager: Not implemented UI.SetControlRedrawImpl: Not implemented PORT: HideHorizontalScrollBar missing SingleInstanceManager.SetWindow: Not implemented SingleInstanceManager.FilterMessage: Not implemented Unhandled Exception: System.DllNotFoundException: dwmapi.dll at (wrapper managed-to-native) PaintDotNet.SystemLayer.SafeNativeMethods:DwmGetWindowAttribute (intptr,uint,void*,uint) at PaintDotNet.SystemLayer.UI.GetExtendedFrameBounds (System.Windows.Forms.Form window) [0x00000] at PaintDotNet.FloatingToolForm.get_SnapObstacle () [0x00000] at PaintDotNet.SnapManager.ParkObstacle (ISnapObstacleHost obstacle, ISnapObstacleHost snappedTo, HorizontalSnapEdge hEdge, VerticalSnapEdge vEdge) [0x00000] at PaintDotNet.AppWorkspace.ResetFloatingForms () [0x00000] at (wrapper remoting-invoke-with-check) PaintDotNet.AppWorkspace:ResetFloatingForms () at PaintDotNet.MainForm.PositionFloatingForms () [0x00000] at PaintDotNet.MainForm.OnLoad (System.EventArgs e) [0x00000] at System.Windows.Forms.Form.OnLoadInternal (System.EventArgs e) [0x00000] at System.Windows.Forms.Form.OnCreateControl () [0x00000] at System.Windows.Forms.Control.CreateControl () [0x00000] at System.Windows.Forms.Control.SetVisibleCore (Boolean value) [0x00000] at System.Windows.Forms.Form.SetVisibleCore (Boolean value) [0x00000] at System.Windows.Forms.Control.set_Visible (Boolean value) [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Visible (bool) at System.Windows.Forms.Application.RunLoop (Boolean Modal, System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.ApplicationContext context) [0x00000] at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm) [0x00000] at PaintDotNet.Startup.StartPart2 () [0x00000] at PaintDotNet.Startup.Start () [0x00000] at PaintDotNet.Startup.Main (System.String[] args) [0x00000] What version of the product are you using? On what operating system? OSX 10.4.11 on a 800 Mhz G4 iBook with 640MB RAM. Please provide any additional information below.
  • Oct 11, 2008
    issue 12 (Color wheel does not display any colors) Status changed by shana.ufie   -   Implemented custom color wheel with a LinearGradient brush, since cairo (and libgdiplus by extension) doesn't support PathGradient brushes.
    Status: Fixed
    Implemented custom color wheel with a LinearGradient brush, since cairo (and libgdiplus by extension) doesn't support PathGradient brushes.
    Status: Fixed
  • Oct 11, 2008
    issue 10 (Surface.cs: GetPointAddressUnchecked returns invalid pointer...) Status changed by shana.ufie   -   This is caused by compiler bug #431827 (https://bugzilla.novell.com/show_bug.cgi? id=431827), which is fixed on Mono svn. A fix has been temporarily applied, to be removed pending the fix getting widespread.
    Status: FixUnderReview
    This is caused by compiler bug #431827 (https://bugzilla.novell.com/show_bug.cgi? id=431827), which is fixed on Mono svn. A fix has been temporarily applied, to be removed pending the fix getting widespread.
    Status: FixUnderReview
  • Oct 11, 2008
    issue 3 (Image loading leaves a black image after loading.) Owner changed by shana.ufie   -   Related libgdiplus bug #434568 opened (https://bugzilla.novell.com/show_bug.cgi? id=434568)
    Owner: shana.ufie
    Related libgdiplus bug #434568 opened (https://bugzilla.novell.com/show_bug.cgi? id=434568)
    Owner: shana.ufie
  • Oct 11, 2008
    issue 3 (Image loading leaves a black image after loading.) Status changed by shana.ufie   -  
    Status: FixUnderReview
    Status: FixUnderReview
  • Oct 11, 2008
    r62 (* PdnLib/SurfaceBox.cs: Do an extra Invalidate when the surf...) committed by shana.ufie   -   * PdnLib/SurfaceBox.cs: Do an extra Invalidate when the surface is first painted so the area gets painted properly (see issue #3 )
    * PdnLib/SurfaceBox.cs: Do an extra Invalidate when the surface is first painted so the area gets painted properly (see issue #3 )
  • Oct 11, 2008
    issue 3 (Image loading leaves a black image after loading.) commented on by shana.ufie   -   I've tracked this down to some kind of problem with libgdiplus, or possibly cairo. On startup, the canvas is painted white with one call to Graphics.FillRectangle (SurfaceBox.OnPaint), but the paint apparently never happens, the area is transparent until a refresh is forced. Changing the Fill call to use X directy with a corresponding XFillRectangle call works properly, so the window is getting the right expose events at the right time. libgdiplus/cairo is using is a bit more envolved, but it ends up doing cairo_rectangle and cairo_fill (which uses XRenderFillRectangle), and that code path is used extensively in System.Drawing, so I'm not sure what's going on here... request caching, not flushing properly? For now, I'll leave an extra Invalidate call to force a new paint event, which refreshes the window properly, while this issue is investigated.
    I've tracked this down to some kind of problem with libgdiplus, or possibly cairo. On startup, the canvas is painted white with one call to Graphics.FillRectangle (SurfaceBox.OnPaint), but the paint apparently never happens, the area is transparent until a refresh is forced. Changing the Fill call to use X directy with a corresponding XFillRectangle call works properly, so the window is getting the right expose events at the right time. libgdiplus/cairo is using is a bit more envolved, but it ends up doing cairo_rectangle and cairo_fill (which uses XRenderFillRectangle), and that code path is used extensively in System.Drawing, so I'm not sure what's going on here... request caching, not flushing properly? For now, I'll leave an extra Invalidate call to force a new paint event, which refreshes the window properly, while this issue is investigated.
  • Oct 09, 2008
    issue 8 (sudo apt-get install paint-mono returns error) commented on by tmvFroid   -   Not a paint-mono issue. Try installing paint-mono from the source code after getting everything needed from the http://mono-project.org/ site
    Not a paint-mono issue. Try installing paint-mono from the source code after getting everything needed from the http://mono-project.org/ site
  • Oct 08, 2008
    r61 (* Memory.cs: Use mmap for large memory allocation and implem...) committed by shana.ufie   -   * Memory.cs: Use mmap for large memory allocation and implement ProtectBlockLarge
    * Memory.cs: Use mmap for large memory allocation and implement ProtectBlockLarge
  • Oct 07, 2008
    issue 8 (sudo apt-get install paint-mono returns error) commented on by liam.kirsh   -   Actually, it's a Paint Mono problem. I don't have this problem with anything else. I think it is being distributed incorrectly.
    Actually, it's a Paint Mono problem. I don't have this problem with anything else. I think it is being distributed incorrectly.
  • Oct 07, 2008
    issue 8 (sudo apt-get install paint-mono returns error) commented on by bobpaul   -   This should be reported to the distribution's bug tracker. Ubuntu's is located here: https://launchpad.net/ubuntu/+bugs
    This should be reported to the distribution's bug tracker. Ubuntu's is located here: https://launchpad.net/ubuntu/+bugs
  • Oct 07, 2008
    r60 (* ColorWheel.cs: Implement the color wheel using a linear br...) committed by shana.ufie   -   * ColorWheel.cs: Implement the color wheel using a linear brush instead of a path gradient brush (path gradients are not supported on libgdiplus)
    * ColorWheel.cs: Implement the color wheel using a linear brush instead of a path gradient brush (path gradients are not supported on libgdiplus)
  • Oct 05, 2008
    r59 (* PdnLib/Surface.cs: fix for compiler bug #431827 (fixes iss...) committed by shana.ufie   -   * PdnLib/Surface.cs: fix for compiler bug #431827 (fixes issue #10 )
    * PdnLib/Surface.cs: fix for compiler bug #431827 (fixes issue #10 )
  • Sep 18, 2008
    issue 12 (Color wheel does not display any colors) reported by shana.ufie   -   No colors are displayed on the color wheel, although it works properly. Probably the same refresh problem that makes the canvas black on load.
    No colors are displayed on the color wheel, although it works properly. Probably the same refresh problem that makes the canvas black on load.
  • Sep 18, 2008
    issue 11 (Winforms - Toolbar width is twice what it should be) reported by shana.ufie   -   Toolbar is too wide. Note: Winforms problem, link to relevant bug # on bugzilla needed.
    Toolbar is too wide. Note: Winforms problem, link to relevant bug # on bugzilla needed.
 
Hosted by Google Code