[aseprite] 127/134: Merge tag 'v1.0.9'

Tobias Hansen thansen at moszumanska.debian.org
Sat Mar 14 17:10:17 UTC 2015


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

thansen pushed a commit to branch master
in repository aseprite.

commit a723b691ebcb49e92b26a15f4e7c89c04d314933
Merge: 72a7c33 9546c0a
Author: Tobias Hansen <tobias.han at gmx.de>
Date:   Sat Mar 14 15:55:31 2015 +0100

    Merge tag 'v1.0.9'

 .gitmodules                                        |    3 +
 CMakeLists.txt                                     |   46 +-
 CONTRIBUTING.md                                    |    2 +-
 INSTALL.md                                         |   21 +-
 data/gui.xml                                       | 1824 ++++++-------
 data/widgets/gif_options.xml                       |    3 +-
 data/widgets/keyboard_shortcuts.xml                |   35 +
 data/widgets/options.xml                           |    5 +-
 data/widgets/select_accelerator.xml                |   36 +
 data/widgets/tools_configuration.xml               |    4 +-
 src/CMakeLists.txt                                 |   76 +-
 src/allegro/include/allegro/platform/aintosx.h     |    8 +-
 src/allegro/src/macosx/main.m                      |    2 +
 src/allegro/src/macosx/qzmouse.m                   |   52 +-
 src/allegro/src/macosx/qzwindow.m                  |   47 +-
 src/allegro/src/macosx/system.m                    |  200 +-
 src/allegro/src/win/wddbmp.c                       |   47 +-
 src/allegro/src/win/wddbmpl.c                      |    5 +-
 src/allegro/src/win/wddraw.h                       |    2 +
 src/allegro/src/win/wddwin.c                       |   23 +-
 src/allegro/src/win/wmouse.c                       |    8 +
 src/app/CMakeLists.txt                             |   35 +-
 src/app/app.cpp                                    |  325 ++-
 src/app/app.h                                      |   22 +-
 src/app/app_menus.cpp                              |  175 +-
 src/app/app_menus.h                                |   10 +-
 src/app/app_options.cpp                            |   65 +-
 src/app/app_options.h                              |   64 +-
 src/app/check_update.cpp                           |    4 +
 src/app/color.cpp                                  |    9 +-
 src/app/color_picker.cpp                           |    8 +
 src/app/color_picker.h                             |    3 +
 src/app/color_utils.cpp                            |   60 +-
 src/app/color_utils.h                              |    1 +
 src/app/commands/cmd_advanced_mode.cpp             |   15 +-
 src/app/commands/cmd_background_from_layer.cpp     |    1 -
 src/app/commands/cmd_cancel.cpp                    |    2 +-
 src/app/commands/cmd_change_brush.cpp              |   25 +
 src/app/commands/cmd_change_color.cpp              |   24 +
 src/app/commands/cmd_configure_tools.cpp           |  274 +-
 src/app/commands/cmd_developer_console.cpp         |    2 +-
 src/app/commands/cmd_flip.cpp                      |   35 +-
 src/app/commands/cmd_flip.h                        |    1 +
 src/app/commands/cmd_goto_frame.cpp                |   10 +-
 src/app/commands/cmd_goto_layer.cpp                |    4 +-
 src/app/commands/cmd_goto_tab.cpp                  |    4 +-
 src/app/commands/cmd_grid.cpp                      |   32 +
 src/app/commands/cmd_keyboard_shortcuts.cpp        |  521 ++++
 src/app/commands/cmd_layer_visibility.cpp          |   85 +
 src/app/commands/cmd_move_mask.cpp                 |   60 +
 src/app/commands/cmd_move_mask.h                   |    1 +
 src/app/commands/cmd_new_frame.cpp                 |   23 +-
 src/app/commands/cmd_onionskin.cpp                 |    1 -
 src/app/commands/cmd_options.cpp                   |   22 +-
 src/app/commands/cmd_palette_editor.cpp            |    2 +-
 src/app/commands/cmd_preview.cpp                   |    8 +-
 src/app/commands/cmd_reverse_frames.cpp            |   73 +
 src/app/commands/cmd_rotate.cpp                    |   16 +
 src/app/commands/cmd_save_file.cpp                 |  180 +-
 src/app/commands/cmd_save_file.h                   |    1 +
 src/app/commands/cmd_scroll.cpp                    |   45 +
 src/app/commands/cmd_set_loop_section.cpp          |  131 +
 src/app/commands/cmd_sprite_size.cpp               |  161 +-
 src/app/commands/cmd_sprite_size.h                 |   72 +
 src/app/commands/cmd_switch_colors.cpp             |    2 +-
 src/app/commands/cmd_undo.cpp                      |   12 +-
 src/app/commands/cmd_zoom.cpp                      |   21 +
 src/app/commands/command.cpp                       |   10 +
 src/app/commands/command.h                         |    4 +-
 src/app/commands/commands_list.h                   |    7 +-
 src/app/commands/filters/filter_manager_impl.h     |    1 +
 src/app/commands/filters/filter_preview.cpp        |    3 +-
 src/app/commands/params.h                          |   36 +-
 src/app/context.cpp                                |   13 +-
 src/app/context.h                                  |    1 +
 src/app/document.cpp                               |   10 +
 src/app/document.h                                 |    1 +
 src/app/document_api.cpp                           |   30 +-
 src/app/document_api.h                             |    4 +-
 src/app/document_api_tests.cpp                     |   72 +
 src/app/document_exporter.cpp                      |  258 +-
 src/app/document_exporter.h                        |   61 +-
 src/app/document_range_ops.cpp                     |   59 +-
 src/app/document_range_ops.h                       |    2 +
 src/app/document_range_tests.cpp                   |  109 +-
 src/app/file/file.cpp                              |   65 +-
 src/app/file/file.h                                |   12 +-
 src/app/file/gif_format.cpp                        |   20 +-
 src/app/file/gif_options.h                         |    5 +
 src/app/filename_formatter.cpp                     |  105 +
 src/app/{xml_document.h => filename_formatter.h}   |   26 +-
 src/app/filename_formatter_tests.cpp               |  142 +
 src/app/job.cpp                                    |   47 +-
 src/app/job.h                                      |    2 +-
 src/app/modules/gui.cpp                            |  411 +--
 src/app/modules/gui.h                              |   32 -
 src/app/settings/settings.h                        |    8 +
 src/app/settings/settings_observers.h              |    1 +
 src/app/settings/ui_settings_impl.cpp              |   42 +-
 src/app/settings/ui_settings_impl.h                |    9 +
 src/app/test_context.h                             |    2 +
 src/app/thumbnail_generator.cpp                    |    4 +-
 src/app/tools/ink_processing.h                     |   22 +-
 src/app/tools/tool_loop.h                          |    4 +
 src/app/tools/tool_loop_manager.cpp                |    9 +-
 src/app/ui/app_menuitem.cpp                        |   31 +-
 src/app/ui/app_menuitem.h                          |    8 +-
 src/app/ui/configure_timeline_popup.cpp            |   10 +-
 src/app/ui/context_bar.cpp                         |   53 +-
 src/app/ui/context_bar.h                           |    5 +-
 src/app/ui/document_view.cpp                       |   82 +-
 src/app/ui/editor/drawing_state.cpp                |    5 +-
 src/app/ui/editor/editor.cpp                       |  148 +-
 src/app/ui/editor/editor.h                         |    9 +-
 src/app/ui/editor/editor_customization_delegate.h  |    2 +
 src/app/ui/editor/editor_state.h                   |   12 +
 src/app/ui/editor/moving_cel_state.cpp             |    8 +-
 src/app/ui/editor/moving_pixels_state.cpp          |   66 +-
 src/app/ui/editor/moving_pixels_state.h            |    5 +
 src/app/ui/editor/pixels_movement.cpp              |    1 -
 src/app/ui/editor/pixels_movement.h                |    1 -
 src/app/ui/editor/standby_state.cpp                |  150 +-
 src/app/ui/editor/standby_state.h                  |    2 +
 src/app/ui/editor/tool_loop_impl.cpp               |   18 +-
 src/app/ui/keyboard_shortcuts.cpp                  |  707 +++++
 src/app/ui/keyboard_shortcuts.h                    |  181 ++
 src/app/ui/mini_editor.cpp                         |    1 +
 src/app/ui/select_accelerator.cpp                  |  191 ++
 .../cmd_move_mask.h => ui/select_accelerator.h}    |   56 +-
 src/app/ui/skin/skin_theme.cpp                     |   20 +-
 src/app/ui/status_bar.cpp                          |    7 +-
 src/app/ui/timeline.cpp                            |   18 +-
 src/app/ui/timeline.h                              |    1 +
 src/app/ui/toolbar.cpp                             |    8 +-
 src/app/ui_context.cpp                             |   41 +-
 src/app/ui_context.h                               |    4 +-
 src/app/util/clipboard.cpp                         |    1 -
 src/app/util/range_utils.cpp                       |   21 +-
 src/app/util/render.cpp                            |   18 +-
 src/app/util/render.h                              |    6 +-
 src/app/xml_document.cpp                           |   10 +
 src/app/xml_document.h                             |    1 +
 src/base/CMakeLists.txt                            |    1 +
 src/base/LICENSE.txt                               |    2 +-
 src/base/README.md                                 |    2 +-
 src/base/program_options.cpp                       |   46 +-
 src/base/program_options.h                         |   41 +-
 src/base/program_options_tests.cpp                 |   91 +-
 src/base/replace_string.cpp                        |   33 +
 src/base/replace_string.h                          |   22 +
 src/base/replace_string_tests.cpp                  |   31 +
 src/config.h                                       |    4 +-
 src/doc/document_observer.h                        |    3 +
 src/doc/documents.cpp                              |   23 +-
 src/doc/documents.h                                |    2 +
 src/gen/CMakeLists.txt                             |    6 +
 src/gen/gen.cpp                                    |   13 +-
 src/gfx/CMakeLists.txt                             |    3 +-
 src/gfx/README.md                                  |    2 +
 src/gfx/packing_rects.cpp                          |   98 +
 src/gfx/packing_rects.h                            |   53 +
 src/gfx/packing_rects_tests.cpp                    |   96 +
 src/gfx/pixman/pixman-region.c                     | 2797 --------------------
 src/gfx/rect_io.h                                  |   27 +
 src/gfx/rect_tests.cpp                             |   16 +-
 src/gfx/region.cpp                                 |   79 +-
 src/gfx/region.h                                   |   18 +-
 src/gfx/region_tests.cpp                           |   12 +-
 src/main/main.cpp                                  |   18 +-
 src/main/resources_win32.rc                        |   10 +-
 src/raster/algofill.cpp                            |    1 +
 src/raster/blend.cpp                               |   18 +-
 src/raster/conversion_alleg.cpp                    |    1 +
 src/raster/conversion_she.cpp                      |    1 +
 src/raster/image_buffer.h                          |    2 +-
 src/raster/resize_image_tests.cpp                  |   57 +-
 src/raster/sprite.cpp                              |   47 +
 src/raster/sprite.h                                |    2 +
 src/she/alleg4/alleg4_surface.h                    |    6 +-
 src/she/alleg4/she_alleg4.cpp                      |   37 +-
 src/she/scoped_handle.h                            |    5 +-
 src/ui/accelerator.cpp                             |  310 ++-
 src/ui/accelerator.h                               |   68 +-
 src/ui/button.cpp                                  |    2 +-
 src/ui/cursor_type.h                               |    2 +
 src/ui/listbox.cpp                                 |   19 +-
 src/ui/listbox.h                                   |    4 +-
 src/ui/manager.cpp                                 |   18 +-
 src/ui/menu.cpp                                    |   75 +-
 src/ui/menu.h                                      |   22 +-
 src/ui/popup_window.cpp                            |   17 +
 src/ui/popup_window.h                              |    1 +
 src/ui/system.cpp                                  |   11 +-
 src/ui/textbox.cpp                                 |    1 -
 src/updater/check_update.cpp                       |    5 +
 third_party/CMakeLists.txt                         |    5 +
 third_party/pixman                                 |    1 +
 third_party/pixman-cmake/CMakeLists.txt            |   52 +
 third_party/pixman-cmake/config.h                  |    1 +
 third_party/pixman-cmake/pixman-version.h.cmake    |   50 +
 200 files changed, 7179 insertions(+), 5864 deletions(-)

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