[aseprite] branch upstream updated (dbb3cee -> aa6040e)

Tobias Hansen thansen at moszumanska.debian.org
Tue Jun 21 14:43:06 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  dbb3cee   Update version to 1.1.6-dev
       new  160418d   Fix pasting screenshots/clipboard content in 32bpp on Windows
       new  573f684   Add more scripting functions
       new  84d8a7a   Add SpriteWrap::commitImages() to commit changes to images
       new  d21e777   Merge branch 'scripting'
       new  af7c6e0   script: Add app.exit() function
       new  5665ac8   script: add className to Context::pushThis()
       new  207bc6c   script: add Sprite.select/selectAll functions
       new  76eca94   script: Sprite.crop() works with selection or x,y,w,h params
       new  34ebf07   Fix warning ptr <-> bool conversion in MoveMaskCommand::onEnabled()
       new  e03f346   script: add Sprite.selection
       new  31116ff   script: add Sprite.colorMode property and ColorMode constants
       new  095078a   Fix crash when a WM_DDE_INITIATE is received from a native ANSI window
       new  036cb8b   Add a little check in DocumentApi::copyCel() in release mode
       new  6a1a955   Fix crash copy & paste one frame in its previous frame position
       new  2d63233   Fix crash creating a new brush from an empty cel using right-click
       new  71060e7   Add gfx::Region in forward declarations (gfx/fwd.h file)
       new  1b802ab   Update src/gfx/README.md
       new  3369d90   Show each undo step size when Aseprite is compiled in debug mode
       new  1e0fd35   Add cmd::CropCel and implement cmd::TrimCel using it
       new  d138625   Use base::get_pretty_memory_size() to show undo item memory size
       new  8c88365   Fix size calculation for Cmd with a std::stringstream
       new  cee3c24   Add cmd::PatchCel to reduce undo space after a ExpandCelCanvas
       new  c12100d   Reduce the patched region with ExpandCelCanvas when we have the source image to compare with
       new  736f631   Fix red/blue tint for black/white colors (fix #1125)
       new  8b242bd   Fix memory leak loading images for a ImageView widget
       new  e68eebd   Fix memory leak on cmd::TrimCel
       new  0ad2af8   Fix usage of some uninitialized variables
       new  4f97970   Remove unused variable in ExpandCelCanvas
       new  94e56ad   Fix spray and jumble tools (fix #1130)
       new  035916d   Fix memory leak on RecentListBox
       new  cf380ab   Fix selection feedback when we have foreground/background color w/alpha=0 (fix #1133)
       new  61a933b   Abort http requests when we quit the program
       new  fda9abc   Fix problem initializing SkiaDisplay with an invalid surface size on OS X
       new  0f3252a   Add CopyMerged command (Ctrl+Shift+C) (fix #824)
       new  c875e24   Add some log information why WTInfo might fail
       new  d495c4d   Abort curl connections setting the timeout (avoid crash closing connections)
       new  1ce74d3   Abort loading news file if the application is being closed
       new  10be4b4   Add support to drop files on OS X window (fix #605)
       new  05395c2   Change ShowExtras shortcut to Cmd+H on OS X
       new  4929efb   Remove "Moving Pixels" label in status bar
       new  591b3b1   Add MoveMaskCommand::getDelta member function
       new  b21f5df   Fix arrow keys to move a rotated selection (fix #775)
       new  47f4cb1   Enable Edit > Copy Merged only when there is a visible selection
       new  d371352   Enable Edit > Copy anyway if layer is locked/non-editable
       new  d948c3c   Create aseprite.desktop
       new  fe95d71   Merge pull request #1138 from Mailaender/patch-1
       new  873748b   Fix freetype2 includes.
       new  53a43aa   Merge pull request #1142 from Mailaender/patch-3
       new  720bd34   Add some asserts in CopyCel to find the cause of a possible crash
       new  a1a60dc   duktape depends on math library (fix #1139)
       new  a4ae920   Merge aseprite.desktop with the official one distributed on .deb files
       new  21661a2   Install aseprite.desktop into share/applications (fix #952)
       new  af2c283   Add new option to zoom sliding two fingers on OS X trackpad
       new  34b8be3   Fix status bar values when we move pixels
       new  a4827a3   Add possibility to change between tags while playing
       new  5e62983   Fix a serious compiler warning
       new  a9cc61e   Merge pull request #1140 from Mailaender/patch-2
       new  b4588d3   Merge 'master' branch
       new  915fac0   Don't show system cursor on OS X in the first mouseEntered
       new  aa6040e   Don't activate our app ignoring other apps on OS X

The 60 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:
 data/gui.xml                                       |   6 +-
 data/pref.xml                                      |   1 +
 data/widgets/options.xml                           |   1 +
 desktop/CMakeLists.txt                             |   8 ++
 desktop/aseprite.desktop                           |  14 +++
 src/app/CMakeLists.txt                             |   4 +
 src/app/check_update.cpp                           |  37 ++-----
 src/app/cmd/add_cel.cpp                            |   5 +-
 src/app/cmd/add_cel.h                              |   6 +-
 src/app/cmd/add_frame_tag.cpp                      |  11 +-
 src/app/cmd/add_frame_tag.h                        |   7 +-
 src/app/cmd/add_layer.cpp                          |   5 +-
 src/app/cmd/add_layer.h                            |   6 +-
 src/app/cmd/add_palette.cpp                        |   4 +-
 src/app/cmd/add_palette.h                          |   6 +-
 src/app/cmd/copy_cel.cpp                           |   6 +-
 src/app/cmd/copy_region.cpp                        |  13 ++-
 src/app/cmd/copy_region.h                          |   8 +-
 src/app/cmd/crop_cel.cpp                           |  72 ++++++++++++
 src/app/cmd/{trim_cel.h => crop_cel.h}             |  26 ++---
 src/app/cmd/patch_cel.cpp                          |  57 ++++++++++
 src/app/cmd/patch_cel.h                            |  44 ++++++++
 src/app/cmd/trim_cel.cpp                           |  67 +++--------
 src/app/cmd/trim_cel.h                             |  22 ++--
 src/app/commands/cmd_copy_merged.cpp               |  52 +++++++++
 src/app/commands/cmd_move_mask.cpp                 |  95 +++++++++-------
 src/app/commands/cmd_move_mask.h                   |   3 +-
 src/app/commands/cmd_new_brush.cpp                 |   8 +-
 src/app/commands/cmd_options.cpp                   |  10 ++
 src/app/commands/cmd_undo_history.cpp              |  11 +-
 src/app/commands/commands_list.h                   |   1 +
 src/app/document.cpp                               |   4 +-
 src/app/document_api.cpp                           |   6 +-
 src/app/res/http_loader.cpp                        |  20 ++--
 src/app/res/http_loader.h                          |  10 +-
 src/app/script/app_object.cpp                      |  35 ++++++
 src/app/script/app_scripting.cpp                   |  20 ++++
 src/app/script/image_wrap.cpp                      |   6 +-
 src/app/script/selection_class.cpp                 | 122 +++++++++++++++++++++
 .../script/{sprite_class.h => selection_class.h}   |   6 +-
 src/app/script/sprite_class.cpp                    | 117 ++++++++++++++++++--
 src/app/script/sprite_wrap.cpp                     |  16 ++-
 src/app/script/sprite_wrap.h                       |   1 +
 src/app/tools/inks.h                               |   3 +-
 src/app/tools/trace_policy.h                       |   4 +-
 src/app/ui/document_view.cpp                       |  12 +-
 src/app/ui/document_view.h                         |   1 +
 src/app/ui/editor/editor.cpp                       |   1 +
 src/app/ui/editor/moving_pixels_state.cpp          |  11 +-
 src/app/ui/editor/pivot_helpers.cpp                |   4 +-
 src/app/ui/editor/pixels_movement.cpp              |  39 ++++---
 src/app/ui/editor/state_with_wheel_behavior.cpp    |  36 ++++--
 src/app/ui/editor/transform_handles.cpp            |   4 +-
 src/app/ui/news_listbox.cpp                        |  16 ++-
 src/app/ui/news_listbox.h                          |   3 +-
 src/app/ui/recent_listbox.cpp                      |   7 +-
 src/app/ui/timeline.cpp                            |  32 ++++--
 src/app/ui/timeline.h                              |   2 +-
 src/app/util/clipboard.cpp                         |  43 ++++++--
 src/app/util/clipboard.h                           |   2 +
 src/app/util/clipboard_native.cpp                  |  10 +-
 src/app/util/expand_cel_canvas.cpp                 |  82 +++++---------
 src/app/util/expand_cel_canvas.h                   |   5 +
 src/app/util/new_image_from_mask.cpp               |  72 ++++++++----
 src/app/util/new_image_from_mask.h                 |   6 +-
 src/app/widget_loader.cpp                          |   4 +-
 src/doc/algorithm/shrink_bounds.cpp                |  97 +++++++++++++++-
 src/doc/algorithm/shrink_bounds.h                  |   9 +-
 src/doc/blend_funcs.cpp                            |   6 +-
 src/ft/freetype_headers.h                          |   4 +-
 src/gfx/README.md                                  |   4 +-
 src/gfx/fwd.h                                      |   4 +-
 src/gfx/point.h                                    |   3 +-
 src/gfx/rect.h                                     |   9 +-
 src/gfx/size.h                                     |   1 +
 src/gfx/transformation.cpp                         |  32 +++---
 src/gfx/transformation.h                           |  56 +++++-----
 src/net/http_request.cpp                           |  38 +++----
 src/net/http_request.h                             |   7 +-
 src/script/CMakeLists.txt                          |   4 +
 src/script/engine.cpp                              |  14 ++-
 src/script/engine.h                                |   9 +-
 src/she/osx/app.mm                                 |   8 +-
 src/she/osx/app_delegate.mm                        |  12 +-
 src/she/osx/generate_drop_files.h                  |  27 +++++
 src/she/osx/view.h                                 |   2 +
 src/she/osx/view.mm                                |  26 ++++-
 src/she/skia/skia_display.cpp                      |   4 +-
 src/she/win/pen.cpp                                |  12 ++
 src/she/win/window_dde.cpp                         |   2 +-
 src/ui/image_view.cpp                              |  11 +-
 src/ui/image_view.h                                |   9 +-
 src/updater/check_update.cpp                       |  42 +++----
 src/updater/check_update.h                         |   8 +-
 94 files changed, 1338 insertions(+), 500 deletions(-)
 create mode 100644 desktop/aseprite.desktop
 create mode 100644 src/app/cmd/crop_cel.cpp
 copy src/app/cmd/{trim_cel.h => crop_cel.h} (56%)
 create mode 100644 src/app/cmd/patch_cel.cpp
 create mode 100644 src/app/cmd/patch_cel.h
 create mode 100644 src/app/commands/cmd_copy_merged.cpp
 create mode 100644 src/app/script/selection_class.cpp
 copy src/app/script/{sprite_class.h => selection_class.h} (66%)
 create mode 100644 src/she/osx/generate_drop_files.h

-- 
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