[aseprite] 290/308: Merge branch 'upstream'
Tobias Hansen
thansen at moszumanska.debian.org
Tue Mar 8 02:45:21 UTC 2016
This is an automated email from the git hooks/post-receive script.
thansen pushed a commit to branch master
in repository aseprite.
commit f1ee60738b81b52a06df611b97d65d773307485d
Merge: 776cdab 733ca44
Author: Tobias Hansen <thansen at localhost.localdomain>
Date: Mon Mar 7 23:20:13 2016 +0000
Merge branch 'upstream'
.gitignore | 3 +
CMakeLists.txt | 19 +-
EULA.txt | 38 +
INSTALL.md | 7 +
README.md | 25 +-
data/gui.xml | 87 +-
data/palettes/pico-8.gpl | 21 +
data/pref.xml | 46 +-
data/skins/default/sheet.png | Bin 13952 -> 13981 bytes
data/skins/default/skin.xml | 18 +
data/widgets/brush_slot_params.xml | 34 +
data/widgets/canvas_size.xml | 14 +-
data/widgets/cel_properties.xml | 3 +-
data/widgets/export_sprite_sheet.xml | 21 +-
data/widgets/file_selector.xml | 4 +-
data/widgets/import_sprite_sheet.xml | 3 +
data/widgets/keyboard_shortcuts.xml | 4 +
data/widgets/layer_properties.xml | 7 +-
data/widgets/modify_selection.xml | 25 +
data/widgets/new_sprite.xml | 4 +-
data/widgets/options.xml | 1 +
data/widgets/paste_text.xml | 4 +
data/widgets/send_crash.xml | 20 +-
data/widgets/user_data.xml | 14 +
docs/files/ase.txt | 22 +-
src/CMakeLists.txt | 16 +-
src/README.md | 2 +-
src/allegro/src/mouse.c | 10 +-
src/allegro/src/x/xmouse.c | 90 +-
src/allegro/src/x/xwin.c | 4 +-
src/allegro/src/x/xwin.h | 4 -
src/app/CMakeLists.txt | 22 +-
src/app/app.cpp | 66 +-
src/app/app.h | 11 +-
src/app/app_brushes.cpp | 487 ++
src/app/app_brushes.h | 57 +
src/app/app_menus.cpp | 28 +-
src/app/app_menus.h | 4 +-
src/app/app_options.cpp | 14 +-
src/app/app_options.h | 15 +-
src/app/brush_slot.h | 107 +
src/app/check_update.cpp | 2 +-
src/app/cmd.cpp | 6 +-
src/app/cmd/README.md | 2 +-
src/app/cmd/copy_region.cpp | 14 +-
src/app/cmd/remove_frame.cpp | 4 +-
src/app/cmd/remove_frame.h | 3 +-
src/app/cmd/set_mask_position.cpp | 2 +-
src/app/cmd/set_user_data.cpp | 37 +
src/app/cmd/{remove_frame.h => set_user_data.h} | 29 +-
src/app/cmd/unlink_cel.cpp | 3 +-
src/app/color.cpp | 102 +-
src/app/color.h | 13 +-
src/app/color_tests.cpp | 6 +-
src/app/commands/cmd_about.cpp | 2 +-
src/app/commands/cmd_canvas_size.cpp | 39 +-
src/app/commands/cmd_cel_properties.cpp | 101 +-
src/app/commands/cmd_color_quantization.cpp | 8 +-
src/app/commands/cmd_duplicate_sprite.cpp | 4 +-
src/app/commands/cmd_export_sprite_sheet.cpp | 305 +-
src/app/commands/cmd_frame_properties.cpp | 4 +-
src/app/commands/cmd_fullscreen_preview.cpp | 10 +-
src/app/commands/cmd_goto_frame.cpp | 69 +-
src/app/commands/cmd_grid.cpp | 10 +-
src/app/commands/cmd_import_sprite_sheet.cpp | 142 +-
src/app/commands/cmd_keyboard_shortcuts.cpp | 179 +-
src/app/commands/cmd_layer_properties.cpp | 40 +-
src/app/commands/cmd_mask_by_color.cpp | 13 +-
src/app/commands/cmd_mask_content.cpp | 2 +-
src/app/commands/cmd_modify_selection.cpp | 255 +
src/app/commands/cmd_move_mask.cpp | 4 +-
src/app/commands/cmd_new_brush.cpp | 11 +-
src/app/commands/cmd_new_file.cpp | 6 +-
src/app/commands/cmd_new_frame.cpp | 4 +-
src/app/commands/cmd_new_layer.cpp | 4 +-
src/app/commands/cmd_new_layer_set.cpp | 4 +-
src/app/commands/cmd_options.cpp | 22 +-
src/app/commands/cmd_palette_editor.cpp | 16 +-
src/app/commands/cmd_palette_size.cpp | 4 +-
src/app/commands/cmd_paste_text.cpp | 23 +-
src/app/commands/cmd_pixel_perfect_mode.cpp | 73 +
src/app/commands/cmd_play_animation.cpp | 3 +-
src/app/commands/cmd_repeat_last_export.cpp | 2 +-
src/app/commands/cmd_scroll.cpp | 6 +-
src/app/commands/cmd_scroll_center.cpp | 46 +
src/app/commands/cmd_set_color_selector.cpp | 39 +-
src/app/commands/cmd_set_ink_type.cpp | 86 +
src/app/commands/cmd_set_same_ink.cpp | 69 +
src/app/commands/cmd_sprite_properties.cpp | 2 +-
src/app/commands/cmd_sprite_size.cpp | 28 +-
src/app/commands/cmd_switch_colors.cpp | 30 +-
src/app/commands/cmd_undo.cpp | 2 +-
src/app/commands/cmd_undo_history.cpp | 20 +-
src/app/commands/commands.h | 3 +
src/app/commands/commands_list.h | 7 +
.../commands/filters/cmd_convolution_matrix.cpp | 16 +-
src/app/commands/filters/cmd_despeckle.cpp | 4 +-
src/app/commands/filters/color_curve_editor.cpp | 28 +-
src/app/commands/filters/color_curve_editor.h | 4 +-
src/app/commands/filters/filter_manager_impl.cpp | 2 +-
src/app/commands/filters/filter_target_buttons.h | 2 +-
src/app/commands/filters/filter_window.cpp | 4 +-
src/app/commands/params.h | 2 +-
src/app/console.cpp | 4 +-
src/app/context.cpp | 2 +-
src/app/context.h | 4 +-
src/app/crash/backup_observer.cpp | 2 +-
src/app/document.cpp | 3 +-
src/app/document_exporter.cpp | 165 +-
src/app/document_exporter.h | 5 +-
src/app/extra_cel.cpp | 2 +-
src/app/file/ase_format.cpp | 93 +-
src/app/file/file.cpp | 21 +-
src/app/file/gif_format.cpp | 52 +-
src/app/file/jpeg_format.cpp | 2 +-
src/app/file/png_format.cpp | 182 +-
src/app/file/webp_format.cpp | 8 +-
src/app/file_selector.cpp | 2 +-
src/app/file_system.cpp | 267 +-
src/app/file_system.h | 12 +-
src/app/filename_formatter.cpp | 56 +-
src/app/filename_formatter.h | 12 +-
src/app/filename_formatter_tests.cpp | 21 +
src/app/gui_xml.cpp | 2 +-
src/app/ini_file.cpp | 24 +-
src/app/ini_file.h | 16 +-
src/app/log.cpp | 65 +-
src/app/log.h | 9 +-
src/app/modules/gfx.cpp | 54 +-
src/app/modules/gfx.h | 14 +-
src/app/modules/gui.cpp | 92 +-
src/app/pref/option.h | 39 +-
src/app/pref/preferences.cpp | 9 +-
src/app/pref/preferences.h | 5 +-
src/app/recent_files.h | 2 +-
src/app/res/http_loader.cpp | 2 +-
src/app/res/resources_loader.cpp | 9 +-
src/app/resource_finder.cpp | 51 +-
src/app/resource_finder.h | 4 +-
src/app/send_crash.cpp | 25 +-
src/app/send_crash.h | 3 +-
src/app/shade.cpp | 41 +
src/app/{log.h => shade.h} | 20 +-
src/app/{log.h => sprite_sheet_type.h} | 20 +-
src/app/thumbnail_generator.cpp | 8 +-
src/app/tools/ink.h | 3 +
src/app/tools/ink_processing.h | 48 +-
src/app/tools/ink_type.cpp | 52 +
src/app/tools/ink_type.h | 6 +
src/app/tools/inks.h | 1 +
src/app/ui/ani_controls.cpp | 9 +-
src/app/ui/animated_widget.h | 2 +-
src/app/ui/app_menuitem.cpp | 14 +-
src/app/ui/app_menuitem.h | 4 +-
src/app/ui/brush_popup.cpp | 433 +-
src/app/ui/brush_popup.h | 38 +-
src/app/ui/button_set.cpp | 101 +-
src/app/ui/button_set.h | 11 +-
src/app/ui/color_bar.cpp | 126 +-
src/app/ui/color_bar.h | 28 +-
src/app/ui/color_button.cpp | 42 +-
src/app/ui/color_button.h | 4 +-
src/app/ui/color_selector.cpp | 8 +-
src/app/ui/color_selector.h | 4 +-
src/app/ui/color_sliders.cpp | 40 +-
src/app/ui/color_sliders.h | 4 +-
src/app/ui/color_spectrum.cpp | 79 +-
src/app/ui/color_spectrum.h | 8 +-
src/app/ui/color_tint_shade_tone.cpp | 220 +
src/app/ui/color_tint_shade_tone.h | 50 +
src/app/ui/color_wheel.cpp | 137 +-
src/app/ui/color_wheel.h | 18 +-
src/app/ui/configure_timeline_popup.cpp | 20 +-
src/app/ui/context_bar.cpp | 1022 ++--
src/app/ui/context_bar.h | 57 +-
src/app/ui/data_recovery_view.cpp | 28 +-
src/app/ui/data_recovery_view.h | 2 +-
src/app/ui/devconsole_view.cpp | 8 +-
src/app/ui/document_view.cpp | 76 +-
src/app/ui/document_view.h | 20 +-
src/app/ui/drop_down_button.h | 4 +-
src/app/ui/editor/brush_preview.cpp | 5 +-
src/app/ui/editor/drawing_state.cpp | 2 +-
src/app/ui/editor/editor.cpp | 196 +-
src/app/ui/editor/editor.h | 38 +-
src/app/ui/editor/editor_decorator.h | 5 +
src/app/ui/editor/editor_observer.h | 3 +-
src/app/ui/editor/editor_observers.cpp | 7 +-
src/app/ui/editor/editor_observers.h | 3 +-
src/app/ui/editor/editor_state.h | 10 +-
src/app/ui/editor/editor_view.cpp | 65 +-
src/app/ui/editor/editor_view.h | 6 +-
src/app/ui/editor/moving_cel_state.cpp | 91 +-
src/app/ui/editor/moving_cel_state.h | 12 +-
src/app/ui/editor/moving_pixels_state.cpp | 14 +-
src/app/ui/editor/moving_pixels_state.h | 6 +-
src/app/ui/editor/moving_symmetry_state.h | 3 +-
src/app/ui/editor/pixels_movement.cpp | 20 +-
src/app/ui/editor/pixels_movement.h | 6 +-
src/app/ui/editor/play_state.cpp | 56 +-
src/app/ui/editor/play_state.h | 5 +-
src/app/ui/editor/scrolling_state.cpp | 6 +-
src/app/ui/editor/select_box_state.cpp | 83 +-
src/app/ui/editor/select_box_state.h | 27 +-
src/app/ui/editor/standby_state.cpp | 49 +-
src/app/ui/editor/standby_state.h | 5 +-
src/app/ui/editor/state_with_wheel_behavior.cpp | 67 +-
src/app/ui/editor/state_with_wheel_behavior.h | 9 +-
src/app/ui/editor/tool_loop_impl.cpp | 2 +-
src/app/ui/editor/transform_handles.cpp | 16 +-
src/app/ui/editor/zooming_state.cpp | 2 +-
src/app/ui/file_list.cpp | 120 +-
src/app/ui/file_list.h | 18 +-
src/app/ui/file_list_view.cpp | 35 +
src/app/{log.h => ui/file_list_view.h} | 17 +-
src/app/ui/file_selector.cpp | 74 +-
src/app/ui/file_selector.h | 4 +-
src/app/ui/font_popup.cpp | 31 +-
src/app/ui/font_popup.h | 2 +-
src/app/ui/frame_tag_window.cpp | 8 +-
src/app/ui/hex_color_entry.cpp | 2 +-
src/app/ui/hex_color_entry.h | 2 +-
src/app/ui/home_view.cpp | 22 +-
src/app/ui/icon_button.cpp | 68 +
src/app/ui/{styled_button.h => icon_button.h} | 18 +-
src/app/ui/keyboard_shortcuts.cpp | 38 +-
src/app/ui/main_window.cpp | 22 +-
src/app/ui/marching_ants.h | 2 +-
src/app/ui/news_listbox.cpp | 38 +-
src/app/ui/notifications.cpp | 14 +-
src/app/ui/notifications.h | 2 +-
src/app/ui/palette_popup.cpp | 6 +-
src/app/ui/palette_view.cpp | 44 +-
src/app/ui/palette_view.h | 6 +-
src/app/ui/palettes_listbox.cpp | 4 +-
src/app/ui/palettes_listbox.h | 4 +-
src/app/ui/popup_window_pin.cpp | 10 +-
src/app/ui/preview_editor.cpp | 180 +-
src/app/ui/preview_editor.h | 24 +-
src/app/ui/recent_listbox.cpp | 36 +-
src/app/ui/recent_listbox.h | 2 +-
src/app/ui/resources_listbox.cpp | 28 +-
src/app/ui/resources_listbox.h | 4 +-
src/app/ui/search_entry.cpp | 107 +
src/app/ui/{styled_button.h => search_entry.h} | 22 +-
src/app/ui/select_accelerator.cpp | 18 +-
src/app/ui/skin/button_icon_impl.cpp | 18 +-
src/app/ui/skin/button_icon_impl.h | 10 +-
src/app/ui/skin/skin_button.h | 6 +-
src/app/ui/skin/skin_part.cpp | 2 +-
src/app/ui/skin/skin_part.h | 20 +-
src/app/ui/skin/skin_theme.cpp | 469 +-
src/app/ui/skin/skin_theme.h | 4 +-
src/app/ui/skin/style.cpp | 14 +-
src/app/ui/skin/style.h | 4 +-
src/app/ui/status_bar.cpp | 73 +-
src/app/ui/status_bar.h | 2 +-
src/app/ui/styled_button.cpp | 12 +-
src/app/ui/styled_button.h | 2 +-
src/app/ui/tabs.cpp | 58 +-
src/app/ui/tabs.h | 2 +-
src/app/ui/timeline.cpp | 198 +-
src/app/ui/timeline.h | 11 +-
src/app/ui/toolbar.cpp | 67 +-
src/app/ui/toolbar.h | 4 +-
src/app/ui/user_data_popup.cpp | 76 +
src/app/{log.h => ui/user_data_popup.h} | 20 +-
src/app/ui/workspace.cpp | 24 +-
src/app/ui/workspace.h | 2 +-
src/app/ui/workspace_panel.cpp | 32 +-
src/app/ui/zoom_entry.h | 2 +-
src/app/ui_context.cpp | 17 +-
src/app/util/clipboard.cpp | 86 +-
src/app/util/clipboard.h | 10 +-
src/app/util/clipboard_win32.h | 46 +-
src/app/util/create_cel_copy.cpp | 1 +
src/app/util/expand_cel_canvas.cpp | 19 +-
src/app/util/freetype_utils.cpp | 37 +-
src/app/util/freetype_utils.h | 3 +-
src/app/widget_loader.cpp | 43 +-
src/base/CMakeLists.txt | 9 +-
src/base/README.md | 5 +-
src/base/base64.cpp | 38 +
src/base/base64.h | 22 +
src/base/base64_tests.cpp | 43 +
src/base/bind.h | 6 +-
src/base/buffer.h | 20 +
src/base/connection.cpp | 6 +-
src/base/connection.h | 6 +-
src/base/dll.cpp | 17 +
src/base/dll.h | 29 +
src/base/dll_unix.h | 27 +
src/base/dll_win32.h | 29 +
src/base/errno_string.cpp | 6 +-
src/base/errno_string.h | 6 +-
src/base/file_handle.cpp | 3 +-
src/base/fs_unix.h | 13 +-
src/base/launcher.h | 12 +-
src/base/log.cpp | 108 +
src/base/log.h | 42 +
src/base/mutex_pthread.h | 5 +-
src/base/mutex_win32.h | 5 +-
src/base/signal.h | 4 +
src/base/slot.h | 6 +-
src/cfg/CMakeLists.txt | 3 -
src/config.h | 17 +-
src/doc/CMakeLists.txt | 6 +-
src/doc/anidir.cpp | 25 +
src/doc/anidir.h | 4 +
src/doc/blend_mode.cpp | 38 +
src/doc/blend_mode.h | 4 +
src/doc/brush.cpp | 110 +-
src/doc/brush.h | 6 +-
src/doc/brush_type.cpp | 35 +
src/doc/brush_type.h | 5 +
src/doc/cel_data.cpp | 4 +-
src/doc/cel_data.h | 3 +-
src/doc/cel_data_io.cpp | 5 +
src/doc/layer.cpp | 2 +-
src/doc/layer.h | 3 +-
src/doc/layer_io.cpp | 7 +-
src/doc/sprite.cpp | 5 +
src/doc/sprite.h | 3 +-
src/doc/string_io.cpp | 4 +-
src/doc/user_data.h | 49 +
src/doc/{string_io.cpp => user_data_io.cpp} | 28 +-
src/doc/user_data_io.h | 22 +
src/doc/with_user_data.h | 33 +
src/filters/CMakeLists.txt | 4 +-
src/filters/neighboring_pixels.h | 6 +-
src/gen/ui_class.cpp | 8 +
src/gfx/border.h | 2 +-
src/gfx/color.h | 7 +-
src/gfx/rect.h | 10 +-
src/gfx/region.h | 7 +-
src/gfx/transformation.cpp | 2 +-
src/main/resources_win32.rc | 12 +-
src/pen/CMakeLists.txt | 8 +
src/pen/pen.cpp | 31 +
src/pen/pen.h | 25 +
src/pen/pen_none.h | 15 +
src/pen/pen_win.h | 66 +
src/render/zoom.cpp | 25 +-
src/render/zoom.h | 16 +-
src/she/CMakeLists.txt | 56 +-
src/she/LICENSE.txt | 2 +-
src/she/alleg4/alleg_display.cpp | 86 +-
src/she/alleg4/alleg_display.h | 3 +
src/she/alleg4/mouse_poller.cpp | 17 +-
src/she/alleg4/she.cpp | 4 +
src/she/clipboard_simple.h | 2 +-
src/she/common/locked_surface.h | 68 +-
src/she/display.h | 6 +
src/she/event.h | 6 +-
src/she/gl/gl_context.h | 3 +-
src/she/gl/gl_context_cgl.h | 6 +-
src/she/gl/gl_context_egl.h | 165 +
src/she/gl/gl_context_wgl.h | 4 +-
src/she/native_dialogs.h | 2 +-
src/she/osx/app.mm | 1 +
src/she/osx/app_delegate.h | 3 +-
src/she/osx/app_delegate.mm | 17 +-
src/she/osx/native_dialogs.mm | 2 +-
src/she/osx/view.mm | 13 +-
src/she/osx/window.mm | 1 +
src/she/skia/gl_context_skia.h | 55 -
src/she/skia/she.cpp | 18 +-
src/she/skia/skia_display.cpp | 31 +-
src/she/skia/skia_display.h | 5 +
src/she/skia/skia_system.h | 18 +-
src/she/skia/skia_window_osx.h | 3 +
src/she/skia/skia_window_osx.mm | 59 +-
src/she/skia/skia_window_win.cpp | 98 +-
src/she/skia/skia_window_win.h | 14 +-
src/she/system.h | 1 +
src/she/win/native_dialogs.cpp | 2 +-
src/she/win/vk.cpp | 33 +-
src/she/win/window.h | 209 +-
src/she/win/window_dde.cpp | 205 +
src/she/win/window_dde.h | 19 +
src/steam/CMakeLists.txt | 5 +
src/{she => steam}/LICENSE.txt | 2 +-
src/steam/README.md | 9 +
src/steam/steam.cpp | 83 +
src/steam/steam.h | 25 +
src/ui/CMakeLists.txt | 2 +-
src/ui/LICENSE.txt | 2 +-
src/ui/alert.cpp | 8 +-
src/ui/box.cpp | 42 +-
src/ui/box.h | 2 +-
src/ui/button.cpp | 38 +-
src/ui/button.h | 29 +-
src/ui/combobox.cpp | 79 +-
src/ui/combobox.h | 8 +-
src/ui/entry.cpp | 106 +-
src/ui/entry.h | 6 +-
src/ui/graphics.h | 2 +-
src/ui/grid.cpp | 14 +-
src/ui/grid.h | 2 +-
src/ui/grid_ui_tests.cpp | 84 +-
src/ui/hit_test_event.h | 38 +-
src/ui/image_view.cpp | 17 +-
src/ui/image_view.h | 2 +-
src/ui/init_theme_event.h | 7 +-
src/ui/int_entry.cpp | 32 +-
src/ui/int_entry.h | 2 +-
src/ui/label.cpp | 12 +-
src/ui/label.h | 2 +-
src/ui/link_label.cpp | 2 +-
src/ui/link_label.h | 6 +-
src/ui/listbox.cpp | 85 +-
src/ui/listbox.h | 6 +-
src/ui/listitem.cpp | 22 +-
src/ui/listitem.h | 4 +-
src/ui/load_layout_event.h | 5 +-
src/ui/manager.cpp | 240 +-
src/ui/manager.h | 22 +-
src/ui/menu.cpp | 139 +-
src/ui/menu.h | 8 +-
src/ui/message.cpp | 4 +-
src/ui/message.h | 21 +-
src/ui/message_type.h | 5 +-
src/ui/overlay.cpp | 2 +-
src/ui/overlay.h | 6 +-
src/ui/paint_event.cpp | 4 +-
src/ui/paint_event.h | 7 +-
src/ui/panel.cpp | 24 +-
src/ui/panel.h | 2 +-
src/ui/popup_window.cpp | 55 +-
src/ui/popup_window.h | 29 +-
src/ui/preferred_size_event.h | 40 -
src/ui/resize_event.h | 7 +-
src/ui/save_layout_event.h | 5 +-
src/ui/scroll_bar.cpp | 42 +-
src/ui/scroll_bar.h | 6 +-
src/ui/scroll_helper.cpp | 4 +-
src/ui/scroll_region_event.h | 30 +
src/ui/separator.cpp | 19 +-
src/ui/separator.h | 2 +-
...referred_size_event.cpp => size_hint_event.cpp} | 32 +-
src/ui/size_hint_event.h | 38 +
src/ui/slider.cpp | 16 +-
src/ui/slider.h | 6 +-
src/ui/splitter.cpp | 98 +-
src/ui/splitter.h | 5 +-
src/ui/system.cpp | 2 +-
src/ui/textbox.cpp | 28 +-
src/ui/textbox.h | 5 +-
src/ui/theme.cpp | 32 +-
src/ui/timer.h | 4 +-
src/ui/tooltips.cpp | 198 +-
src/ui/tooltips.h | 16 +-
src/ui/ui.h | 4 +-
src/ui/view.cpp | 211 +-
src/ui/view.h | 19 +-
src/ui/viewport.cpp | 23 +-
src/ui/viewport.h | 5 +-
src/ui/widget.cpp | 355 +-
src/ui/widget.h | 95 +-
src/ui/widgets_list.h | 9 +-
src/ui/window.cpp | 113 +-
src/ui/window.h | 13 +-
src/updater/check_update.cpp | 4 +-
src/wacom/MIT-license.txt | 16 +
src/wacom/msgpack.h | 28 +
src/wacom/pktdef.h | 262 +
src/wacom/wintab.h | 919 ++++
src/webserver/CMakeLists.txt | 5 +-
src/webserver/webserver.cpp | 5 +-
third_party/CMakeLists.txt | 7 +-
third_party/freetype2 | 2 +-
third_party/modp_b64/CMakeLists.txt | 14 +
third_party/modp_b64/LICENSE | 33 +
third_party/modp_b64/modp_b64.c | 260 +
third_party/modp_b64/modp_b64.h | 126 +
third_party/modp_b64/modp_b64_data.h | 481 ++
third_party/mongoose/CMakeLists.txt | 5 -
third_party/mongoose/LICENSE | 19 -
third_party/mongoose/mongoose.c | 5385 --------------------
third_party/mongoose/mongoose.h | 350 --
third_party/pixman | 2 +-
third_party/pixman-cmake/CMakeLists.txt | 4 +-
third_party/simpleini | 2 +-
483 files changed, 13274 insertions(+), 10628 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