summaryrefslogtreecommitdiff
path: root/quacker
diff options
context:
space:
mode:
Diffstat (limited to 'quacker')
-rw-r--r--quacker/Info.plist2
-rw-r--r--quacker/graphicalboard.cpp2
-rw-r--r--quacker/graphicalreporter.cpp1
-rw-r--r--quacker/quacker.cpp4
-rw-r--r--quacker/quacker.plist2
-rw-r--r--quacker/quacker.pro2
6 files changed, 7 insertions, 6 deletions
diff --git a/quacker/Info.plist b/quacker/Info.plist
index d6ce154..29cb164 100644
--- a/quacker/Info.plist
+++ b/quacker/Info.plist
@@ -26,7 +26,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>1.0.2</string>
+ <string>1.0.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
diff --git a/quacker/graphicalboard.cpp b/quacker/graphicalboard.cpp
index 12244a1..cf82f3a 100644
--- a/quacker/graphicalboard.cpp
+++ b/quacker/graphicalboard.cpp
@@ -325,7 +325,7 @@ QPoint GraphicalBoardFrame::coordinatesOfMark(const QSize &loc)
void GraphicalBoardFrame::drawMove(const Quackle::Move &move)
{
- if (move.action == Quackle::Move::Place)
+ if (move.action == Quackle::Move::Place || move.action == Quackle::Move::PlaceError)
{
if (move.tiles().empty())
return;
diff --git a/quacker/graphicalreporter.cpp b/quacker/graphicalreporter.cpp
index a7ca9f5..d234ff6 100644
--- a/quacker/graphicalreporter.cpp
+++ b/quacker/graphicalreporter.cpp
@@ -160,6 +160,7 @@ void GraphicalReporter::reportPosition(const Quackle::GamePosition &position, Qu
switch ((*it).action)
{
case Quackle::Move::Place:
+ case Quackle::Move::PlaceError:
{
if (m_generateImages)
{
diff --git a/quacker/quacker.cpp b/quacker/quacker.cpp
index 5f06822..976ba5b 100644
--- a/quacker/quacker.cpp
+++ b/quacker/quacker.cpp
@@ -2115,7 +2115,7 @@ void TopLevel::firstTimeRun()
void TopLevel::about()
{
QString aboutText = tr(
-"<p><b>Quackle</b> 1.0.2 is a crossword game playing, analysis, and study tool. Visit the Quackle homepage at <tt><a href=\"http://quackle.org\">http://quackle.org</a></tt> for more information.</p>"
+"<p><b>Quackle</b> 1.0.3 is a crossword game playing, analysis, and study tool. Visit the Quackle homepage at <tt><a href=\"http://quackle.org\">http://quackle.org</a></tt> for more information.</p>"
"<p>Quackle was written by Jason Katz-Brown, John O'Laughlin, John Fultz, Matt Liberty, and Anand Buddhdev. We thank the anonymous donor who made this software free.</p>"
"<p>Copyright 2005-2016 by</p>"
"<ul>"
@@ -2143,7 +2143,7 @@ void TopLevel::about()
fclose(file);
aboutText += "</ul>";
}
- QMessageBox::about(this, tr("About Quackle 1.0.2"), dialogText(aboutText));
+ QMessageBox::about(this, tr("About Quackle 1.0.3"), dialogText(aboutText));
}
void TopLevel::hints()
diff --git a/quacker/quacker.plist b/quacker/quacker.plist
index cf8d52f..3969d54 100644
--- a/quacker/quacker.plist
+++ b/quacker/quacker.plist
@@ -13,7 +13,7 @@
<key>CFBundleName</key>
<string>Quackle</string>
<key>CFBundleShortVersionString</key>
- <string>1.0.2</string>
+ <string>1.0.3</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>LSApplicationCategoryType</key>
diff --git a/quacker/quacker.pro b/quacker/quacker.pro
index 774055b..ba0f90a 100644
--- a/quacker/quacker.pro
+++ b/quacker/quacker.pro
@@ -1,5 +1,5 @@
TEMPLATE = app
-VERSION = 1.0.2
+VERSION = 1.0.3
TARGET = Quackle
DEPENDPATH += .. ../quackleio
INCLUDEPATH += . ..