[aseprite] branch upstream updated (aa6040e -> 92084fe)

Tobias Hansen thansen at moszumanska.debian.org
Mon Jul 11 21:35:58 UTC 2016


This is an automated email from the git hooks/post-receive script.

thansen pushed a change to branch upstream
in repository aseprite.

      from  aa6040e   Don't activate our app ignoring other apps on OS X
      adds  5456b59   Activate app on OS X when Aseprite is launched from Steam
      adds  46e9ece   Update freetype2 library
      adds  165d3af   Ask to save each file when we're quitting
      adds  893f757   Don't ignore Space bar on sprite editor when Timeline range is enabled (fix #877)
      adds  cc77d63   Force to build internal libraries as STATIC object
      adds  a50a03a   Merge pull request #1158 from winterheart/static
      adds  f81cd5a   Fix typo in CMakeLists.txt
      adds  1cf8269   Add "apply" button to options window
      adds  e353cda   Merge branch 'applyButton' of https://github.com/TheKK/aseprite into apply-button
      adds  b17a093   Merge branch 'apply-button'
      adds  a9cea5a   Update mouse cursor immediately after we change it to native mouse cursor
      adds  c77ee9a   Minor change in FindTests.cmake
      adds  67968b0   Improve base_assert() message so we quickly can find the file:line
      adds  e1828ca   Call std::abort() on base_assert() so it acts like a breakpoint
      adds  73843ea   Add base::this_thread::native_handle() function
      adds  bfb65c3   Add needed <vector> in input_chain.h
      adds  da128d3   Replace signals/slots impl with the observable library
      adds  70b759a   Install an updated libstdc++ for travis CI/clang
      adds  9e6d763   Minor Render improvement
      adds  9f43205   Add SmileBASIC palette
      adds  262bc0f   Improve UI response when we clone tabs with Ctrl or Alt
      adds  f5c4326   Add support to right-click with Ctrl+left click on OS X (fix #438)
      adds  8ee743c   Improve Timeline UI to move ranges with right-click
      adds  ee1dac0   Right-click subtract selection again on floating pixels (fix #1164)
      adds  67ce947   Add option to include partial tiles in Import Sprite Sheet (fix #1161)
      adds  9897256   Don't trim background layer cels automatically (fix #1166)
      adds  485649a   Activate app explicitly on OS X on debug mode
      adds  a214b4a   Update observable library
      adds  b094f6e   Fix crashes in keyboard shortcuts by incorrect signals lifetime handling
      adds  9748894   Don't use brush edges on tools with "one pixel" point shape (fix #1167)
      adds  ec15ec7   Fix Alt+mouse wheel to navigate color indexes in RGB images/colors (fix #1153)
      adds  1c98469   Select active color bar selection when we change to shading ink
      adds  c1f8c98   Minor changes in FilterManagerImpl
      adds  3df6572   We can return a const& in Cel::position()
      adds  b13ac1d   Add crop_image() with a gfx::Rect
      adds  d566604   Fix several bugs applying filters to cels smaller than the sprite bounds
      adds  71321df   Fix 'outline' convolution matrices for rendered text
      adds  7b4a1ec   Add support for Pixly file format (#1177)
      adds  51a0bbe   Fix OS X cmd/alt key modifiers status when app is reactivated
      adds  99bd10d   pixly: dealing with cels smaller than the sprite
      adds  71d2a2e   Minor changes in some comments
      adds  3a8c90e   Remove unused variable
      adds  f9dfe34   Remove features that aren't supported in .anim format
      adds  d91ca36   Add forward compatibility in .ase decoder for layer groups
      adds  0722d95   Migrate configuration files on OS X to ~/Library/Application Support/Aseprite (fix #1165)
      adds  92084fe   Expand filename wildcards in command line on Windows (fix #1049)

No new revisions were added by this update.

Summary of changes:
 .gitmodules                                      |   3 +
 .travis.yml                                      |   4 +-
 CMakeLists.txt                                   |   6 +-
 cmake/FindTests.cmake                            |   5 +-
 data/palettes/smile-basic.gpl                    |  22 +
 data/pref.xml                                    |   1 +
 data/widgets/import_sprite_sheet.xml             |   4 +-
 data/widgets/options.xml                         |   1 +
 src/CMakeLists.txt                               |  14 +-
 src/app/CMakeLists.txt                           |   1 +
 src/app/app.cpp                                  |   8 +
 src/app/app_menus.h                              |   3 +-
 src/app/commands/cmd_change_color.cpp            |  28 +-
 src/app/commands/cmd_close_file.cpp              |  11 +-
 src/app/commands/cmd_exit.cpp                    |  26 +-
 src/app/commands/cmd_flip.cpp                    |   3 +-
 src/app/commands/cmd_import_sprite_sheet.cpp     |  23 +-
 src/app/commands/cmd_keyboard_shortcuts.cpp      |  54 ++-
 src/app/commands/cmd_options.cpp                 |   3 +
 src/app/commands/filters/filter_manager_impl.cpp | 174 +++-----
 src/app/commands/filters/filter_manager_impl.h   |  47 +-
 src/app/commands/filters/filter_preview.cpp      |   1 +
 src/app/context.cpp                              |  10 +-
 src/app/context.h                                |   3 +-
 src/app/file/ase_format.cpp                      |  80 +++-
 src/app/file/file.cpp                            |   3 +-
 src/app/file/file_formats_manager.cpp            |   2 +
 src/app/file/pixly_format.cpp                    | 526 +++++++++++++++++++++++
 src/app/ini_file.cpp                             |  48 ++-
 src/app/resource_finder.cpp                      |   8 +
 src/app/tools/point_shape.h                      |   3 +-
 src/app/tools/point_shapes.h                     |   2 +
 src/app/ui/context_bar.cpp                       |  21 +
 src/app/ui/data_recovery_view.cpp                |   2 +-
 src/app/ui/data_recovery_view.h                  |   4 +-
 src/app/ui/devconsole_view.cpp                   |   4 +-
 src/app/ui/devconsole_view.h                     |   2 +-
 src/app/ui/document_view.cpp                     |  13 +-
 src/app/ui/document_view.h                       |   2 +-
 src/app/ui/editor/brush_preview.cpp              |  10 +-
 src/app/ui/editor/drawing_state.cpp              |   1 +
 src/app/ui/editor/editor_observers.cpp           |  30 +-
 src/app/ui/editor/editor_observers.h             |  12 +-
 src/app/ui/editor/moving_pixels_state.cpp        |   7 +-
 src/app/ui/editor/pixels_movement.cpp            |   3 +-
 src/app/ui/editor/state_with_wheel_behavior.cpp  |  20 +-
 src/app/ui/home_view.cpp                         |   2 +-
 src/app/ui/home_view.h                           |   4 +-
 src/app/ui/input_chain.h                         |   4 +-
 src/app/ui/main_window.cpp                       |   2 +-
 src/app/ui/recent_listbox.h                      |   3 +-
 src/app/ui/status_bar.h                          |   1 -
 src/app/ui/tabs.cpp                              |  38 +-
 src/app/ui/tabs.h                                |   3 +-
 src/app/ui/timeline.cpp                          |  79 +++-
 src/app/ui/workspace.cpp                         |   6 +-
 src/app/ui/workspace.h                           |   4 +-
 src/app/ui/workspace_view.h                      |   4 +-
 src/app/util/clipboard.cpp                       |   3 +-
 src/app/util/expand_cel_canvas.cpp               |  23 +-
 src/app/util/freetype_utils.cpp                  |  16 +-
 src/base/CMakeLists.txt                          |   9 +-
 src/base/LICENSE.txt                             |   2 +-
 src/base/README.md                               |   2 +-
 src/base/connection.cpp                          |  27 --
 src/base/connection.h                            |  48 +--
 src/base/debug.cpp                               |  10 +-
 src/base/fs.h                                    |   5 +-
 src/base/fs_osx.mm                               |  29 ++
 src/base/observable.h                            |  32 +-
 src/base/observers.h                             |  97 -----
 src/base/path.cpp                                |  24 ++
 src/base/path.h                                  |   3 +
 src/base/signal.h                                | 313 +-------------
 src/base/slot.h                                  | 188 --------
 src/base/thread.cpp                              |  15 +-
 src/base/thread.h                                |   3 +-
 src/doc/cel.h                                    |   4 +-
 src/doc/layer.h                                  |  13 +-
 src/doc/primitives.cpp                           |   5 +
 src/doc/primitives.h                             |   3 +-
 src/observable                                   |   1 +
 src/render/render.cpp                            | 349 +++++++++------
 src/render/render.h                              |  59 +--
 src/she/alleg4/she.cpp                           |   4 +
 src/she/osx/app.h                                |   1 +
 src/she/osx/app.mm                               |  13 +
 src/she/osx/app_delegate.h                       |   2 +
 src/she/osx/app_delegate.mm                      |  15 +
 src/she/osx/view.h                               |   1 +
 src/she/osx/view.mm                              |   4 +
 src/she/skia/she.cpp                             |  16 +-
 src/she/skia/skia_system.h                       |   6 +
 src/she/system.h                                 |   1 +
 src/steam/steam.cpp                              |  21 +-
 src/steam/steam.h                                |   2 +
 src/ui/base.h                                    |   3 +-
 src/ui/entry.cpp                                 |   5 +-
 src/ui/manager.cpp                               |  15 +-
 src/ui/system.cpp                                |   1 +
 third_party/freetype2                            |   2 +-
 101 files changed, 1603 insertions(+), 1200 deletions(-)
 create mode 100644 data/palettes/smile-basic.gpl
 create mode 100644 src/app/file/pixly_format.cpp
 delete mode 100644 src/base/connection.cpp
 create mode 100644 src/base/fs_osx.mm
 delete mode 100644 src/base/observers.h
 delete mode 100644 src/base/slot.h
 create mode 160000 src/observable

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git



More information about the Pkg-games-commits mailing list