eliot-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Eliot-dev] [SCM] Eliot branch, master, updated. eliot_2.0-56-gd686f1a


From: Olivier Teulière
Subject: [Eliot-dev] [SCM] Eliot branch, master, updated. eliot_2.0-56-gd686f1a
Date: Tue, 18 Dec 2012 15:03:58 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Eliot".

The branch, master has been updated
       via  d686f1a083376a98d4c64c1408255cdc23ba5441 (commit)
       via  7f5651b4bb48cf6b3e50c7167fb730352d239e6e (commit)
       via  bedcc561f362367bce41b7ee207c0f28c36400da (commit)
       via  536da10a9726002f8a60b629e58b7e78b5bdd8a8 (commit)
       via  3f269e5bd4f8eb7ba6b4c5777b1e3db02268cc3a (commit)
       via  1e551207fbf1c826039b1862d48ef7143bb9b558 (commit)
       via  c31b789fc5afa673cc988020b42f1bc44d773d3d (commit)
       via  3f10e9fabacec050455ce4c3f87474623dc320a9 (commit)
       via  c1332760d7dd87ef0226cf127f3d39e51d33578e (commit)
       via  4bcd106577f4b79258dccf938cd2cb2e8c54ace4 (commit)
       via  c21c109ddba3648a75d2d640e1c4d63aee0a4c44 (commit)
       via  bf5ae9fc91e9ac25f06bae43b5f37d011a3e954d (commit)
       via  b5c36bed2695ad6320a7341793ea36687fd7626e (commit)
      from  db6e81a288947eda2e01f9d961468697f0601e05 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d686f1a083376a98d4c64c1408255cdc23ba5441
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 10:55:19 2012 +0100

    PlayModel: add a moveChanged() signal for convenience

commit 7f5651b4bb48cf6b3e50c7167fb730352d239e6e
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 09:56:07 2012 +0100

    RackWidget: add a setRack() slot

commit bedcc561f362367bce41b7ee207c0f28c36400da
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 02:04:33 2012 +0100

    Coord: do not accept invalid strings starting with valid coordinates

commit 536da10a9726002f8a60b629e58b7e78b5bdd8a8
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 01:39:51 2012 +0100

    Fix a typo

commit 3f269e5bd4f8eb7ba6b4c5777b1e3db02268cc3a
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 01:16:33 2012 +0100

    PlayModel: support for word changes in addition to coordinates.
    
    This is not used anywhere yet.

commit 1e551207fbf1c826039b1862d48ef7143bb9b558
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 01:09:36 2012 +0100

    PlayModel: do not emit the coordChanged() signal when no change occurred

commit c31b789fc5afa673cc988020b42f1bc44d773d3d
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 01:00:53 2012 +0100

    PlayModel: remove a useless getter

commit 3f10e9fabacec050455ce4c3f87474623dc320a9
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 00:57:04 2012 +0100

    PlayModel: exchange the order of the arguments for the coordChanged() signal

commit c1332760d7dd87ef0226cf127f3d39e51d33578e
Author: Olivier Teulière <address@hidden>
Date:   Tue Dec 18 00:48:14 2012 +0100

    Rename CoordModel as PlayModel

commit 4bcd106577f4b79258dccf938cd2cb2e8c54ace4
Author: Olivier Teulière <address@hidden>
Date:   Mon Dec 17 22:53:24 2012 +0100

    RackWidget: center the tiles in the widget

commit c21c109ddba3648a75d2d640e1c4d63aee0a4c44
Author: Olivier Teulière <address@hidden>
Date:   Mon Dec 17 22:53:07 2012 +0100

    BoardWidget: center horizontally

commit bf5ae9fc91e9ac25f06bae43b5f37d011a3e954d
Author: Olivier Teulière <address@hidden>
Date:   Mon Dec 17 22:32:44 2012 +0100

    TileLayout: fix the row offset on lines other than the first one

commit b5c36bed2695ad6320a7341793ea36687fd7626e
Author: Olivier Teulière <address@hidden>
Date:   Mon Dec 17 20:20:18 2012 +0100

    TileLayout: fix a bug (the rect offset was not taken into account)

-----------------------------------------------------------------------

Summary of changes:
 game/coord.cpp                       |    3 +
 qt/Makefile.am                       |    4 +-
 qt/arbitration_widget.cpp            |   19 ++++----
 qt/arbitration_widget.h              |   10 ++--
 qt/board_widget.cpp                  |   52 +++++++++++----------
 qt/board_widget.h                    |    8 ++--
 qt/coord_model.cpp                   |   39 ----------------
 qt/main_window.cpp                   |   10 ++--
 qt/main_window.h                     |    4 +-
 qt/{coord_model.h => play_model.cpp} |   60 ++++++++++++++++--------
 qt/play_model.h                      |   82 ++++++++++++++++++++++++++++++++++
 qt/play_word_mediator.cpp            |   17 +++----
 qt/play_word_mediator.h              |    8 ++--
 qt/player_widget.cpp                 |   14 +++---
 qt/player_widget.h                   |    8 ++--
 qt/rack_widget.cpp                   |   22 +++++++---
 qt/rack_widget.h                     |    6 +++
 qt/tile_layout.cpp                   |   20 +++++----
 qt/training_widget.cpp               |    4 +-
 qt/training_widget.h                 |    4 +-
 20 files changed, 239 insertions(+), 155 deletions(-)
 delete mode 100644 qt/coord_model.cpp
 rename qt/{coord_model.h => play_model.cpp} (51%)
 create mode 100644 qt/play_model.h


hooks/post-receive
-- 
Eliot



reply via email to

[Prev in Thread] Current Thread [Next in Thread]