Skip to content

Commit d47f1e3

Browse files
committed
Gowut 1.0.0 Release.
1 parent 76355e4 commit d47f1e3

36 files changed

+2157
-1893
lines changed

README.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,44 +2,46 @@
22

33
Gowut (Go Web UI Toolkit) is a full-featured, easy to use, platform independent Web UI Toolkit written in pure Go, no platform dependent native code is linked or called.
44

5-
This site is for the Gowut source code and download hosting and for issue tracking.
5+
This project is for public releases and for issue tracking of Gowut. Development takes place in the [gowut.dev](https://github.com/icza/gowut.dev) project.
66

77
For News, documentation and examples please visit the **Gowut Home Page** here:
88

99
**https://sites.google.com/site/gowebuitoolkit/**
1010

11-
This project is for public releases of Gowut. Development takes place in the [gowut.dev project](https://github.com/icza/gowut.dev).
12-
1311
## Quick install ##
1412

1513
To quickly install (or update to) the **latest** version, type:
16-
```
17-
go get -u github.com/icza/gowut/gwu
18-
```
14+
15+
go get -u github.com/icza/gowut/gwu
1916

2017
## Quick test ##
2118

2219
To quickly test it and see it in action, run the following example applications (assuming you're in the root of your GOPATH):
2320

24-
**1. Showcase of Features.** This one auto-opens itself in your default browser.
25-
```
26-
go run src/github.com/icza/gowut/examples/showcase/showcase.go
27-
```
21+
**1. Showcase of Features.**
22+
23+
This one auto-opens itself in your default browser.
24+
25+
go run src/github.com/icza/gowut/examples/showcase/showcase.go
26+
27+
The Showcase of Features is also available live: https://gowut-demo.appspot.com/show
2828

29-
**2. A single window example.** This one auto-opens itself in your default browser.
30-
```
31-
go run src/github.com/icza/gowut/examples/simple/simple_demo.go
32-
```
29+
**2. A single window example.**
30+
31+
This one auto-opens itself in your default browser.
32+
33+
go run src/github.com/icza/gowut/examples/simple/simple_demo.go
3334

3435
**3. Login window example with session management.**
35-
```
36-
go run src/github.com/icza/gowut/examples/login/login_demo.go
37-
```
36+
37+
go run src/github.com/icza/gowut/examples/login/login_demo.go
38+
3839
Open the page http://localhost:3434/guitest/ in your browser to see it.
3940

4041
## Godoc of Gowut ##
4142

4243
You can read the godoc of Gowut online here:
44+
4345
http://godoc.org/github.com/icza/gowut/gwu
4446

4547
## +1 / Star Gowut! ##

examples/doc.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Copyright (C) 2013 Andras Belicza. All rights reserved.
2-
//
2+
//
33
// This program is free software: you can redistribute it and/or modify
44
// it under the terms of the GNU General Public License as published by
55
// the Free Software Foundation, either version 3 of the License, or
66
// (at your option) any later version.
7-
//
7+
//
88
// This program is distributed in the hope that it will be useful,
99
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1010
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1111
// GNU General Public License for more details.
12-
//
12+
//
1313
// You should have received a copy of the GNU General Public License
1414
// along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

0 commit comments

Comments
 (0)