Skip to content

Commit

Permalink
Merge branch 'release/2.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensley committed Sep 14, 2015
2 parents 06cecf6 + 983c413 commit 858ecb8
Show file tree
Hide file tree
Showing 1,189 changed files with 40,994 additions and 22,633 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ obj/
/BuildOutput
*.shfbproj_*
UpgradeLog*.htm
Source/packages
Source/Components
AppPackages
Resources/packages
Samples/packages
Source/Addins/Eto.Addin.XamarinStudio/packages
packages/
68 changes: 0 additions & 68 deletions Help/Help.shfbproj

This file was deleted.

4 changes: 0 additions & 4 deletions Help/Site Map.sitemap

This file was deleted.

11 changes: 0 additions & 11 deletions Help/Top.html

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AUTHORS
Copyright © 2011-2014 Curtis Wensley. All Rights Reserved.
Copyright © 2011-2015 Curtis Wensley. All Rights Reserved.
Copyright © 2012-2013 Vivek Jhaveri. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted
Expand Down
Binary file modified Libraries/MonoMac64/MonoMac.CFNetwork.dll
Binary file not shown.
Binary file modified Libraries/MonoMac64/MonoMac.dll
Binary file not shown.
43 changes: 27 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Links

* Join the [forums](http://groups.google.com/group/eto-forms)
* Chat in [#eto.forms](http://chat.mibbit.com/?server=irc.gimp.org&channel=%23eto.forms) on irc.gimp.org
* Browse the [wiki](https://github.com/picoe/Eto/wiki) for quick start, tutorials, and API
* Download binaries using NuGet [![NuGet](http://img.shields.io/nuget/v/Eto.Forms.svg?style=flat)](https://www.nuget.org/packages/Eto.Forms.Sample/) with Visual Studio or Xamarin Studio.
* For bleeding edge nuget packages, add the MyGet development feed [![MyGet](http://img.shields.io/myget/eto/vpre/Eto.Forms.svg?style=flat)](https://www.myget.org/F/eto/) to your sources list.

Expand All @@ -25,31 +26,41 @@ There is a Mobile/iOS port in the works, but is considered incomplete.

This framework was built so that using it in .NET is natural. For example, a simple hello-world application might look like:

using Eto.Forms;
using Eto.Drawing;
```C#
using Eto.Forms;
using Eto.Drawing;

public class MyForm : Form
{
public MyForm ()
{
Title = "My Cross-Platform App";
ClientSize = new Size(200, 200);
Content = new Label { Text = "Hello World!" };
}

public class MyForm : Form
[STAThread]
static void Main()
{
public MyForm ()
{
Title = "My Cross-Platform App";
ClientSize = new Size(200, 200);
Content = new Label { Text = "Hello World!" };
}
[STAThread]
static void Main()
{
new Application().Run(new MyForm());
}
new Application().Run(new MyForm());
}
}
```

Getting Started
---------------

To begin creating apps using Eto.Forms, follow the [Quick Start Guide](https://github.com/picoe/Eto/wiki/Quick-Start).

To compile or contribute to Eto.Forms, read the [Contributing Guide](https://github.com/picoe/Eto/wiki/Contributing).


Applications
------------
* [Manager](http://www.manager.io) - Accounting Software
* [PabloDraw](http://picoe.ca/products/pablodraw/alpha) - Character based drawing application
* [JabbR.Desktop](https://github.com/JabbR/JabbR.Desktop) - JabbR client
* [Notedown](https://github.com/modmonkeys/Notedown) - Note taking application
* [Notedown](https://github.com/cwensley/Notedown) - Note taking application
* [Eto.Test](https://github.com/picoe/Eto/tree/master/Source/Eto.Test) - Application to test the functionality of each widget

Assemblies
Expand Down
Loading

0 comments on commit 858ecb8

Please sign in to comment.