-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from icza/dev
Gowut v1.4.0 public release.
- Loading branch information
Showing
8 changed files
with
94 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,6 @@ language: go | |
go: | ||
- 1.8 | ||
- 1.9 | ||
- "1.10" | ||
- 1.11 | ||
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
Changes and new features in v1.4.0: | ||
----------------------------------- | ||
|
||
-New SessIDCookieName() and SetSessIDCookieName() methods in Server to get / set | ||
the cookie name used to store the Gowut session ID. Useful if you plan to run | ||
multiple Gowut servers on the same computer with the same app path (on different ports); | ||
you can set different session ID cookie names so they won't collide (#42). | ||
|
||
-Added ETypeMouseDown constant, identical to ETypeMousedown. | ||
|
||
-Fixed an issue where Table.Clear() could panic if table contained nil components (#23). | ||
|
||
-Mouse coordinates in events did not take the body's scroll amount into account, this is fixed now. | ||
Event.Mouse() and Event.MouseWin() now return proper coordinates. |