1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
2009-09-11 Marek Safar <marek.safar@gmail.com>
* Shell.cs: Replaced Report.Stderr with Evaluator.MessageOutput.
2009-09-07 Miguel de Icaza <miguel@novell.com>
* Shell.cs: Add poor man's autocompletion to GSharp.
I probably should copy the way MonoDevelop pops up the completion
window to be right.
2008-12-18 Miguel de Icaza <miguel@novell.com>
* gtk-gui/Mono.CSharp.Gui.MainWindow.cs: Change hierarchy so that we can
show/hide the Gtk# panel without crashing.
2008-11-13 Mike Kestner <mkestner@novell.com>
* MainWindow.cs: break a Gtk# 2.10 dependency
2008-11-06 Miguel de Icaza <miguel@novell.com>
* MainWindow.cs: Add support for loading settings (window
position, pane display and aggregate history here as well).
Hook up View/Pane display here.
* InteractiveGraphicsBase (PaneContainer): Expose a new property,
a Gtk.Container that can be used to quickly prototype code by
having a handy container in the same space as the shell.
2008-11-05 Miguel de Icaza <miguel@novell.com>
Add support for loading files specified on the command line.
* Shell.cs: History saving and loading.
* Shell.cs: Hook up the GuiStream, which redirects Console Stdout
and Stderr to the GUI Shell.
Readline still remains unimplemented.
touchups to improve the output.
2008-11-05 Miguel de Icaza <miguel@novell.com>
* Shell.cs: First load the System.Drawing assembly, only then call
the using statement on it.
2008-11-02 Miguel de Icaza <miguel@novell.com>
* Shell.cs: Support multiple data transformations on the result.
2008-11-02 Sebastien Pouliot <sebastien@ximian.com>
* Makefile.am: Fix typo that broke make distcheck
* MainWindows.cs: Fix compilation.
2008-11-02 Miguel de Icaza <miguel@novell.com>
* InteractiveGraphicsBase.cs (RegisterRenderHandler,
UnregisterRenderHandler): new methods to allow scripts to register
their own rendering handlers.
(Attached): useful property to determine if we are running on an
attached process or not.
(MainWindow): pointer to the current main window.
* MainWindow.cs: Add support for loading startup files.
* Main.cs: Move bitmap rendering here, to split it out from the
Shell.
* Shell.c: Now can use any provided hook to render graphics on the
screen.
2008-10-31 Sandy Armstrong <sanfordarmstrong@gmail.com>
* gsharp.desktop.in: Add .desktop file for gsharp.
Name/Comment/GenericName could use some review, and no Icon is set
yet.
* Makefile.am: Support for .desktop file.
2008-10-24 Miguel de Icaza <miguel@novell.com>
* Shell.cs: Added history support.
2008-10-21 Sebastien Pouliot <sebastien@ximian.com>
* Makefile.am: Remove gsharp.exe[.mdb] at clean-time. Fix "make
distcheck"
2008-10-09 Marek Habersack <mhabersack@novell.com>
* Makefile.am (gsharp_sources): added InteractiveGraphicsBase.cs
and SysDrawing.cs.
(assemblies): add reference to System.Drawing
2008-10-08 Miguel de Icaza <miguel@novell.com>
* Shell.cs: Loads System.Drawing and special cases rendering of Bitmaps.
* InteractiveGraphicsBase.cs: A new base class for interactive code,
provides a cute and simple Plot() function for interactive use.
* SysDrawing.cs: Integration between System.Drawing and Gtk#
2008-10-09 Daniel Nauck <dna@mono-project.de>
* Makefile.am: fix makefile
2008-10-09 Daniel Nauck <dna@mono-project.de>
* gsharp.in: add start script
2008-10-09 Daniel Nauck <dna@mono-project.de>
* Makefile.am: fix makefile
2008-09-28 Miguel de Icaza <miguel@novell.com>
* History.cs: Remove history, will implement a different system than
the bash-like system. This model does not match.
* Main.cs: Use a cool trick from Alan McGovern to guess whether the
host application had Gtk running or not.
2008-09-28 Miguel de Icaza <miguel@novell.com>
* MainWindow.cs: New dialog box, based on Paolo's dialog box.
* gtk-gui/Mono.CSharp.Gui.MainWindow.cs: Add support for injecting
ourselves into a process.
* Main.cs: Add support for injecting the code into the target process.
2008-09-28 Miguel de Icaza <miguel@novell.com>
2008-09-28 Miguel de Icaza <miguel@novell.com>
Added new files for a GUI Gtk# csharp command line interpreter,
based on Aaron's BooShell for Banshee and the `csharp' command
line tool.
The idea is to turn this into a module that can be attached into
Gtk# applications.
|