Change BSD license to MIT in sublibraries and fix headers

This commit is contained in:
David Capello 2013-08-08 21:01:20 -03:00
parent a06faeddac
commit cde54f3682
764 changed files with 1420 additions and 1423 deletions

12
src/allegro/README.md Normal file
View File

@ -0,0 +1,12 @@
This is a modified version of Allegro library (branch 4.4)
specially patched for Aseprite by David Capello.
Changes:
* Mouse driver for Windows was modified to use WM_MOUSEMOVE instead of
DirectInput (like in Allegro 5).
* Keyboard driver for Windows was modified to use WM_KEYDOWN/UP messages
instead of DirectInput (like in Allegro 5).
* Added resize support for Windows, X11, and Mac OS X ports.
* Removed code and functions that are not used (Allegro GUI,
audio, MIDI, joystick, etc.).

View File

@ -1,11 +0,0 @@
This is a modified version of Allegro library (branch 4.4) specially
patched for ASEPRITE by David Capello.
Changes:
- Mouse driver for Windows was modified to use WM_MOUSEMOVE instead of
DirectInput (like in Allegro 5).
- Keyboard driver for Windows was modified to use WM_KEYDOWN/UP messages
instead of DirectInput (like in Allegro 5).
- Added resize support for Windows, X11, and Mac OS X ports.
- Removed code and functions that are not used (Allegro GUI,
audio, MIDI, joystick, etc.).

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify
@ -250,13 +250,13 @@ int App::run()
return 0;
}
// Finishes the ASEPRITE application.
// Finishes the Aseprite application.
App::~App()
{
try {
ASSERT(m_instance == this);
// Remove ASEPRITE handlers
// Remove Aseprite handlers
PRINTF("ASE: Uninstalling\n");
// Fire App Exit signal.

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify
@ -57,10 +57,10 @@ namespace app {
static App* instance() { return m_instance; }
// Returns true if ASEPRITE is running with GUI available.
// Returns true if Aseprite is running with GUI available.
bool isGui() const { return m_isGui; }
// Runs the ASEPRITE application. In GUI mode it's the top-level
// Runs the Aseprite application. In GUI mode it's the top-level
// window, in console/scripting it just runs the specified scripts.
int run();

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

View File

@ -1,4 +1,4 @@
/* ASEPRITE
/* Aseprite
* Copyright (C) 2001-2013 David Capello
*
* This program is free software; you can redistribute it and/or modify

Some files were not shown because too many files have changed in this diff Show More