simon-git: puzzles (master): Simon Tatham
Commits to Tartarus CVS repository.
tartarus-commits at lists.tartarus.org
Sat Oct 3 17:59:17 BST 2015
TL;DR:
4fb9776 Fix a typo in the comments of Pearl.
6c71b45 Include an example of Range's text_format in the comments.
c419894 Fix typo in undo key handling.
1380b55 Fix segfault in Range's game_text_format.
9b1b7e0 Don't overallocate colour memory in Loopy.
87b2758 Fix a memory leak in Range's find_errors.
dc688b1 Unequal: stop ignoring keys 'h' and 'm' while cursor active.
02434a6 Add game_text_format to Dominosa.
7543082 Add game_text_format to Pearl.
e4d5b11 Add game_text_format to Flip.
d0f88aa Add game_text_format to Inertia.
051ab17 Add game_text_format to Pattern.
9e1a7d8 Add game_text_format to Tents.
7478275 Pattern: color multiple squares with Ctrl- or Shift-cursor keys.
d5f7c4f Range: add pencil marks to squares by Shift-cursor keys.
c469bd2 Filling: enable keyboard-driven cursor dragging mode.
e59f820 Rectangles: cancel keyboard drag with Escape.
ebf31f5 Slant: hide keyboard cursor when using the mouse.
11a394f Add more keyboard controls to Slant.
8e35087 Refactor modifier handling in Pearl's cursor code.
d64a79e Refactor Pearl's mark_in_direction, and invert a parameter.
bf8ff09 Change Pearl's cursor logic.
ea8da33 Cancel dragging in Pearl by pressing Escape or Backspace.
5cb91f2 Fix a memory error in Guess cursor handling.
8889faf Fix a misrendering in Guess.
a79fc46 Display improvements to Range.
6179e8d Allow marking of clues as exhausted in Unequal.
79fe68d Towers: allow marking of clues as done with the keyboard
a55607f Greatly increase the speed of the Filling solver.
d442b83 Greatly improve and speed up the Filling instance generation.
bda4a96 Fix an instance generation hang in Signpost.
b9dfef7 Recompute solutions in Inertia if the user strays from the path.
6482ed0 Fix a display glitch in Keen's pencil-mode cursor.
47bc27b Add 'Inshi No Heya' (multiplication only) variant to Keen.
b94be41 Render Filling presets as 'WxH', not 'HxW'.
581becc Insert a manual reference in the default status bar text.
e22a9c8 build fix
Repository: git://git.tartarus.org/simon/puzzles.git
On the web: http://tartarus.org/~simon-git/gitweb/?p=puzzles.git
Branch updated: master
Committer: Simon Tatham <anakin at pobox.com>
Date: 2015-10-03 17:59:17
commit 4fb9776d838402a30d7e056c6d72d46e9ca9fbaa
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=4fb9776d838402a30d7e056c6d72d46e9ca9fbaa;hp=c0308c9319d40438db668e67fb944e08062148c7
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 15:51:06 2015 +0200
Fix a typo in the comments of Pearl.
Each stone can have 2 lines radiating from its centre, not 3.
pearl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 6c71b459a6af362e242ff46bef85471a2973d09f
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=6c71b459a6af362e242ff46bef85471a2973d09f;hp=4fb9776d838402a30d7e056c6d72d46e9ca9fbaa
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 15:48:29 2015 +0200
Include an example of Range's text_format in the comments.
range.c | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
commit c4198948a8019903b250fec426d973e8f32abacd
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=c4198948a8019903b250fec426d973e8f32abacd;hp=6c71b459a6af362e242ff46bef85471a2973d09f
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:26:53 2015 +0200
Fix typo in undo key handling.
Now we can undo with both 'u' and 'U', symmetrically with redoing with
both 'r' and 'R'.
midend.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 1380b55b5b9b5a841f3375f6c3f614105f1b6884
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=1380b55b5b9b5a841f3375f6c3f614105f1b6884;hp=c4198948a8019903b250fec426d973e8f32abacd
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 15:55:53 2015 +0200
Fix segfault in Range's game_text_format.
Occurred on Nx1 puzzles, etc.
range.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 9b1b7e0f3a6858da2bdd3d855a1a9c2801122f30
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=9b1b7e0f3a6858da2bdd3d855a1a9c2801122f30;hp=1380b55b5b9b5a841f3375f6c3f614105f1b6884
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:24:10 2015 +0200
Don't overallocate colour memory in Loopy.
loopy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 87b2758b9c5459eae825d0642eb4c057e8c5c6fd
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=87b2758b9c5459eae825d0642eb4c057e8c5c6fd;hp=9b1b7e0f3a6858da2bdd3d855a1a9c2801122f30
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:21:48 2015 +0200
Fix a memory leak in Range's find_errors.
Only occurred in invalid instances, such as 3x1:1b when you put a
black in the middle square.
range.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit dc688b1f238fd7c343426b76d120e7ab40aa9668
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=dc688b1f238fd7c343426b76d120e7ab40aa9668;hp=87b2758b9c5459eae825d0642eb4c057e8c5c6fd
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:41:03 2015 +0200
Unequal: stop ignoring keys 'h' and 'm' while cursor active.
At least, so long as 'h' and 'm' are not "numbers".
unequal.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
commit 02434a6ed1373e352f5449f0627594aeed67a231
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=02434a6ed1373e352f5449f0627594aeed67a231;hp=dc688b1f238fd7c343426b76d120e7ab40aa9668
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:49:56 2015 +0200
Add game_text_format to Dominosa.
dominosa.c | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 65 insertions(+), 3 deletions(-)
commit 7543082f26045413df059866cb2e4bf8fc891143
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=7543082f26045413df059866cb2e4bf8fc891143;hp=02434a6ed1373e352f5449f0627594aeed67a231
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:53:20 2015 +0200
Add game_text_format to Pearl.
pearl.c | 32 +++++++++++++++++++++++++++++---
1 file changed, 29 insertions(+), 3 deletions(-)
commit e4d5b11bd8e76f94506b2b76c02167a997bb1750
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=e4d5b11bd8e76f94506b2b76c02167a997bb1750;hp=7543082f26045413df059866cb2e4bf8fc891143
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:54:38 2015 +0200
Add game_text_format to Flip.
flip.c | 39 +++++++++++++++++++++++++++++++++++++--
1 file changed, 37 insertions(+), 2 deletions(-)
commit d0f88aafa4b641904735c3e20485e66be6c77cb4
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=d0f88aafa4b641904735c3e20485e66be6c77cb4;hp=e4d5b11bd8e76f94506b2b76c02167a997bb1750
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 16:57:14 2015 +0200
Add game_text_format to Inertia.
inertia.c | 38 ++++++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
commit 051ab1701ee8671e7754951c1f170c609c9b67a8
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=051ab1701ee8671e7754951c1f170c609c9b67a8;hp=d0f88aafa4b641904735c3e20485e66be6c77cb4
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 17:02:47 2015 +0200
Add game_text_format to Pattern.
pattern.c | 86 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 84 insertions(+), 2 deletions(-)
commit 9e1a7d87cd30e1f3fde7eedf1439b48ce1610009
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=9e1a7d87cd30e1f3fde7eedf1439b48ce1610009;hp=051ab1701ee8671e7754951c1f170c609c9b67a8
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 17:14:55 2015 +0200
Add game_text_format to Tents.
Replaces an inactive stub implementation.
tents.c | 73 ++++++++++++++++++++++++++++++++++++++-------------------------
1 file changed, 44 insertions(+), 29 deletions(-)
commit 7478275c8b46c24eb457dd3458ace3a31263295b
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=7478275c8b46c24eb457dd3458ace3a31263295b;hp=9e1a7d87cd30e1f3fde7eedf1439b48ce1610009
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 17:33:02 2015 +0200
Pattern: color multiple squares with Ctrl- or Shift-cursor keys.
pattern.c | 16 +++++++++++++++-
puzzles.but | 4 ++++
2 files changed, 19 insertions(+), 1 deletion(-)
commit d5f7c4f871200f9808e284408e28defaa8afbcd3
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=d5f7c4f871200f9808e284408e28defaa8afbcd3;hp=7478275c8b46c24eb457dd3458ace3a31263295b
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 17:39:47 2015 +0200
Range: add pencil marks to squares by Shift-cursor keys.
puzzles.but | 4 +++-
range.c | 33 ++++++++++++++++++++++++++++++++-
2 files changed, 35 insertions(+), 2 deletions(-)
commit c469bd285cc4f482f49203c16169151d2d869d4a
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=c469bd285cc4f482f49203c16169151d2d869d4a;hp=d5f7c4f871200f9808e284408e28defaa8afbcd3
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 17:41:10 2015 +0200
Filling: enable keyboard-driven cursor dragging mode.
filling.c | 58 +++++++++++++++++++++++++++++++++++++++++-----------------
puzzles.but | 9 +++++----
2 files changed, 46 insertions(+), 21 deletions(-)
commit e59f820383c9941640d04d7b23e5d964f7ad6ff6
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=e59f820383c9941640d04d7b23e5d964f7ad6ff6;hp=c469bd285cc4f482f49203c16169151d2d869d4a
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 17:44:50 2015 +0200
Rectangles: cancel keyboard drag with Escape.
puzzles.but | 4 +++-
rect.c | 48 +++++++++++++++++++++---------------------------
2 files changed, 24 insertions(+), 28 deletions(-)
commit ebf31f52b0dae356c7ad515b3e2e66672bd69a4e
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=ebf31f52b0dae356c7ad515b3e2e66672bd69a4e;hp=e59f820383c9941640d04d7b23e5d964f7ad6ff6
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 18:22:34 2015 +0200
Slant: hide keyboard cursor when using the mouse.
slant.c | 1 +
1 file changed, 1 insertion(+)
commit 11a394f69b43ce36e4b0119699a4ae9461d252ee
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=11a394f69b43ce36e4b0119699a4ae9461d252ee;hp=ebf31f52b0dae356c7ad515b3e2e66672bd69a4e
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Mon Sep 21 18:34:53 2015 +0200
Add more keyboard controls to Slant.
puzzles.but | 5 ++++-
slant.c | 5 +++++
2 files changed, 9 insertions(+), 1 deletion(-)
commit 8e35087e093876cd12b1a5800c16a068473e9bff
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=8e35087e093876cd12b1a5800c16a068473e9bff;hp=11a394f69b43ce36e4b0119699a4ae9461d252ee
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Tue Sep 22 11:18:31 2015 +0200
Refactor modifier handling in Pearl's cursor code.
pearl.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
commit d64a79e2b83f0bfe98c74763a1e42daeb0b3d952
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=d64a79e2b83f0bfe98c74763a1e42daeb0b3d952;hp=8e35087e093876cd12b1a5800c16a068473e9bff
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Tue Sep 22 11:19:53 2015 +0200
Refactor Pearl's mark_in_direction, and invert a parameter.
pearl.c | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
commit bf8ff09a84c129f0e3e66e18df61912871d4b6e3
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=bf8ff09a84c129f0e3e66e18df61912871d4b6e3;hp=d64a79e2b83f0bfe98c74763a1e42daeb0b3d952
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Tue Sep 22 11:37:17 2015 +0200
Change Pearl's cursor logic.
Keyboard dragging while holding Control now moves the cursor to the
target square. Shift-Control-arrowkey performs the previous behavior
of Control-arrowkey.
pearl.c | 6 +++++-
puzzles.but | 8 +++++---
2 files changed, 10 insertions(+), 4 deletions(-)
commit ea8da331e361c96a7e563b0a91dc3535e0d1d545
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=ea8da331e361c96a7e563b0a91dc3535e0d1d545;hp=bf8ff09a84c129f0e3e66e18df61912871d4b6e3
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Tue Sep 22 11:41:41 2015 +0200
Cancel dragging in Pearl by pressing Escape or Backspace.
pearl.c | 5 +++++
puzzles.but | 7 ++++---
2 files changed, 9 insertions(+), 3 deletions(-)
commit 5cb91f28ba609d04d8948860c34520b66ea16718
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=5cb91f28ba609d04d8948860c34520b66ea16718;hp=ea8da331e361c96a7e563b0a91dc3535e0d1d545
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 14:00:47 2015 +0200
Fix a memory error in Guess cursor handling.
guess.c | 2 ++
1 file changed, 2 insertions(+)
commit 8889fafb07d47ba359ad071789f340df866a0321
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=8889fafb07d47ba359ad071789f340df866a0321;hp=5cb91f28ba609d04d8948860c34520b66ea16718
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 17:42:48 2015 +0200
Fix a misrendering in Guess.
When the cursor was visible, redrawing after undo-redo or label
toggling or resizing would draw background over the top of the
circular cursor.
guess.c | 26 ++++++++++++++------------
1 file changed, 14 insertions(+), 12 deletions(-)
commit a79fc469516bd5bad28cf6ac025e25ffa20794d6
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=a79fc469516bd5bad28cf6ac025e25ffa20794d6;hp=8889fafb07d47ba359ad071789f340df866a0321
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 17:50:59 2015 +0200
Display improvements to Range.
Make the grid look a lot less heavy; enhance highlighting of error
clues; highlight enclosed small regions much more prettily.
range.c | 16 ++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)
commit 6179e8df56000bc8f558129a8475cf977c06a249
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=6179e8df56000bc8f558129a8475cf977c06a249;hp=a79fc469516bd5bad28cf6ac025e25ffa20794d6
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 18:26:50 2015 +0200
Allow marking of clues as exhausted in Unequal.
puzzles.but | 5 ++++
unequal.c | 95 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
2 files changed, 82 insertions(+), 18 deletions(-)
commit 79fe68dc57d72d4765850eb9aec23675523a1a4d
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=79fe68dc57d72d4765850eb9aec23675523a1a4d;hp=6179e8df56000bc8f558129a8475cf977c06a249
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 18:41:15 2015 +0200
Towers: allow marking of clues as done with the keyboard
puzzles.but | 3 ++-
towers.c | 15 +++++++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)
commit a55607ff245e8d7e6156d191caeacdba1c424ef4
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=a55607ff245e8d7e6156d191caeacdba1c424ef4;hp=79fe68dc57d72d4765850eb9aec23675523a1a4d
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 19:57:49 2015 +0200
Greatly increase the speed of the Filling solver.
filling.c | 34 ++++++++++++++--------------------
1 file changed, 14 insertions(+), 20 deletions(-)
commit d442b830e492535c9b0f1cb6b6c1d91ef2304bd2
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=d442b830e492535c9b0f1cb6b6c1d91ef2304bd2;hp=a55607ff245e8d7e6156d191caeacdba1c424ef4
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 21:12:13 2015 +0200
Greatly improve and speed up the Filling instance generation.
filling.c | 245 +++++++++++++++++++++++++++++++++----------------------------
1 file changed, 132 insertions(+), 113 deletions(-)
commit bda4a963f447e3395a160e57ab9498278ad2fde2
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=bda4a963f447e3395a160e57ab9498278ad2fde2;hp=d442b830e492535c9b0f1cb6b6c1d91ef2304bd2
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 21:22:24 2015 +0200
Fix an instance generation hang in Signpost.
Also expand the set of permissible parameters (add 1xN, Nx1 and 2x2).
signpost.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
commit b9dfef7a12a6ce813f30f1cc755ed3bb21945dcc
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=b9dfef7a12a6ce813f30f1cc755ed3bb21945dcc;hp=bda4a963f447e3395a160e57ab9498278ad2fde2
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 21:29:42 2015 +0200
Recompute solutions in Inertia if the user strays from the path.
inertia.c | 79 ++++++++++++++++++++++++++++++++++-------------------------
puzzles.but | 4 +--
2 files changed, 46 insertions(+), 37 deletions(-)
commit 6482ed0e3c886afd6b44acf91450524ff70d102c
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=6482ed0e3c886afd6b44acf91450524ff70d102c;hp=b9dfef7a12a6ce813f30f1cc755ed3bb21945dcc
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 21:59:30 2015 +0200
Fix a display glitch in Keen's pencil-mode cursor.
Draw pencil-mode cursor before corners of thick lines in order to make
the thick lines appear on top of the north-west corner of the pencil
cursor, just like they do with the non-pencil cursor.
keen.c | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
commit 47bc27b0c228fbbac5be8547e4aa6bb58767a75e
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=47bc27b0c228fbbac5be8547e4aa6bb58767a75e;hp=6482ed0e3c886afd6b44acf91450524ff70d102c
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Thu Oct 1 22:32:26 2015 +0200
Add 'Inshi No Heya' (multiplication only) variant to Keen.
keen.c | 60 +++++++++++++++++++++++++++++++++++++++--------------------
puzzles.but | 4 ++++
2 files changed, 44 insertions(+), 20 deletions(-)
commit b94be41445d1ed056882c15795f01a6861fc184b
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=b94be41445d1ed056882c15795f01a6861fc184b;hp=47bc27b0c228fbbac5be8547e4aa6bb58767a75e
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Fri Oct 2 18:23:44 2015 +0200
Render Filling presets as 'WxH', not 'HxW'.
filling.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
commit 581becc3aa657fe4b7694c6f261d3193d51928d2
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=581becc3aa657fe4b7694c6f261d3193d51928d2;hp=b94be41445d1ed056882c15795f01a6861fc184b
Author: Jonas Kölker <jonaskoelker at yahoo.com>
Date: Sat Oct 3 15:01:48 2015 +0200
Insert a manual reference in the default status bar text.
To guide developers to the resources they need.
[actual wording tweaked by SGT]
gtk.c | 2 +-
osx.m | 2 +-
puzzles.h | 3 +++
windows.c | 3 ++-
4 files changed, 7 insertions(+), 3 deletions(-)
commit e22a9c8396f1f0bd1c74cd8b738f5f9716760004
web diff http://tartarus.org/~simon-git/gitweb/?p=puzzles.git;a=commitdiff;h=e22a9c8396f1f0bd1c74cd8b738f5f9716760004;hp=581becc3aa657fe4b7694c6f261d3193d51928d2
Author: Simon Tatham <anakin at pobox.com>
Date: Sat Oct 3 17:39:22 2015 +0100
build fix
pearl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
More information about the tartarus-commits
mailing list