[aseprite] branch master updated (d6e1d55 -> c54bbb1)

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


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

thansen pushed a change to branch master
in repository aseprite.

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

The 51 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


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 +
 debian/changelog                                 |   8 +
 debian/patches/disable-resize_image_tests.patch  |   2 +-
 debian/patches/find-static-gtest.patch           |   4 +-
 debian/patches/libx11-underlinkage.patch         |   6 +-
 debian/patches/shared_modp_b64.patch             |  12 +-
 debian/rules                                     |   5 +-
 debian/upstream-changelog                        |  20 +
 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 +-
 108 files changed, 1647 insertions(+), 1213 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