Skip to content

Commit

Permalink
final tidying up for release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
herzbube committed Sep 19, 2014
1 parent 2327be8 commit 6f53206
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Little Go is released under the [Apache License](http://www.apache.org/licenses/

## Changes in this release

This is the Little Go bugfix release 1.1.1. It contains an urgent fix for a crash that sometimes occurs while a stone is dragged around the board (#242).
This is the Little Go bugfix release 1.1.2. It contains a couple of fixes for potential crashes (#243, #247), one drawing bug (#245) and one regression (#246).

The previous release was the Little Go technical release 1.1.0. A selection of the most important changes are:

Expand Down
17 changes: 17 additions & 0 deletions doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Fri September 19 2014 "Patrick Näf" <herzbube@herzbube.ch>
- Release of version 1.1.2
- Bugfixes
- Interactive UI elements are now disabled while a stone-placing gesture is in
progress (#243). This closes a loop hole that may have been the source for
a number of crashes in the past (e.g. the crash described in #244)
- Stones no longer temporarily disappear from view while dragging a new stone
(#245). Thanks to stfiend for reporting this bug.
- Fixed a potential crash if the computer player starts playing immediately
after a game is loaded from the archive (#247).
- Regressions
- It is now possible again to make a move when viewing an old board position
while the game has already ended (#246). This will resume the game, discard
all board positions beyond the one that the user is currently viewing, and
then play the desired move.


Fri August 15 2014 "Patrick Näf" <herzbube@herzbube.ch>
- Release of version 1.1.1
- Bugfixes
Expand Down
2 changes: 2 additions & 0 deletions doc/ReleaseSteps
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ Make the release
- Write a release note blog post on the website
- Close tickets that are not yet closed in the issue tracker, then close the
milestone
- Create a new release on GitHub that references the git tag. Copy ChangeLog
content into the release description.
- Change the QuincyKit status of the new version to "Available" and the status
of the old version to "Discontinued"
- Cleanup the Trello board
Expand Down
2 changes: 1 addition & 1 deletion resource/html/Credits.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<dd>
Andrew Hersee, Fabrice Heitz, Peter Waldispühl, Tripp Lilley, Valery
Prikhodko, Horace Ho, Serge Grossenbacher, Logan Bouia, Carole Wolf,
Brid Griffin, David Harland and Eric O. Lebigot,
Brid Griffin, David Harland, Eric O. Lebigot and stfiend,
for their help with improving this app. No software is free of bugs, and
Little Go woefully is no exception to this rule.
</dd>
Expand Down
4 changes: 2 additions & 2 deletions resource/plist/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<string>1.1.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>14</string>
<string>15</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion src/command/game/LoadGameCommand.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -----------------------------------------------------------------------------
// Copyright 2011-2013 Patrick Näf (herzbube@herzbube.ch)
// Copyright 2011-2014 Patrick Näf (herzbube@herzbube.ch)
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
4 changes: 0 additions & 4 deletions src/command/move/ComputerPlayMoveCommand.m
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,7 @@ - (bool) doIt
responseTarget:self
selector:@selector(gtpResponseReceived:)];
[command submit];

// Thinking state must change after any of the other things; this order is
// important for observer notifications
self.game.reasonForComputerIsThinking = GoGameComputerIsThinkingReasonComputerPlay;

return true;
}

Expand Down

0 comments on commit 6f53206

Please sign in to comment.