update README.md again

This commit is contained in:
Gered 2013-08-31 13:15:27 -04:00
parent c5c87bc06f
commit 55354f96c0

View file

@ -2,17 +2,20 @@
This is a fork of the original [gwen-dotnet](https://code.google.com/p/gwen-dotnet/) project which has been slightly This is a fork of the original [gwen-dotnet](https://code.google.com/p/gwen-dotnet/) project which has been slightly
modified to remove OS dependancies (specifically, usage of various Windows modified to remove OS dependancies (specifically, usage of various Windows
APIs) to simplify using Gwen with Xamarin.Android and Xamarin.iOS. APIs) to simplify using Gwen with Xamarin.Android and Xamarin.iOS. The core
library of GwenCS has been changed to build as a Portable Class Library.
Ultimately, this means that things such as the file save/open dialog support The most significant change in this fork is the removal of all the specific
are not implemented and those methods instead simply do nothing. As well, renderer implementations. This fork is *primarily* developed for my own use with
the cursor support (changing the cursor to, for example, a resize icon when [my own code]() who's renderer probably wouldn't benefit anyone else. However,
the mouse is positioned at the edge of a resizable control) has also been it probably wouldn't be too much work to convert Gwen.Renderer.OpenTK to work
stubbed out and will not work. with this fork and Android/iOS.
As well, the dependancy on System.Drawing has been removed with equivalent Other significant changes include the removal of any platform-specific code
structs to Color, Rectangle, etc being re-implemented with very light-weight that was present in GwenCS. This includes things such as the file save/open
equivalents. dialog support, cursor changing, and the System.Drawing dependancy. Very
light-weight equivalents to Color, Rectangle, etc. have been added to
fill in the gaps.
## TODO ## TODO