diff --git a/.travis.yml b/.travis.yml index bc8573603..94f4fb6be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ language: cpp matrix: include: - os: osx - osx_image: xcode9 env: - ENABLE_UI=ON - MATRIX_EVAL="wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-mac.zip && unzip ninja-mac.zip && export PATH=$PWD:$PATH" diff --git a/CMakeLists.txt b/CMakeLists.txt index bcd1fee04..9cb5a2cdf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -219,7 +219,7 @@ add_definitions(-DPNG_NO_MMX_CODE) # Do not use MMX optimizations in PNG code # libwebp if(WITH_WEBP_SUPPORT) - set(WEBP_LIBRARIES webp) + set(WEBP_LIBRARIES webp webpdemux libwebpmux) set(WEBP_INCLUDE_DIR ${LIBWEBP_DIR}/src) include_directories(${WEBP_INCLUDE_DIR}) endif() diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e224c4920..1d2600b7e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -93,7 +93,7 @@ You can fork the GitHub repository using the Fork button at The Pull Requests (PR) systems works in this way: 1. First of all you will need to sign our - [Contributor License Agreement](https://github.com/aseprite/opensource/blob/master/sign-cla.md#sign-the-cla) (CLA). + [Contributor License Agreement](https://github.com/aseprite/sourcecode/blob/master/sign-cla.md#sign-the-cla) (CLA). 1. Then you can start working on Aseprite. Create a new branch from `master`, e.g. `fix-8` to fix the issue 8. Check this guide about [how to name your branch](https://github.com/agis/git-style-guide#branches). 1. Start working on that new branch, and push your commits to your fork. diff --git a/README.md b/README.md index 638bb91be..3cd3e904f 100644 --- a/README.md +++ b/README.md @@ -7,21 +7,24 @@ ## Introduction -**Aseprite** is a program to create animated sprites. Its main -features are: +**Aseprite** is a program to create animated sprites. Its main features are: -* Sprites are composed of [**layers** & **frames**](http://www.aseprite.org/docs/timeline/) (as separated concepts). -* Supported [color modes](http://www.aseprite.org/docs/color/): **RGBA**, **Indexed** (palettes up to 256 - colors), and Grayscale. -* Load/save a sequence of **PNG** files and **GIF** animations (and - FLC, FLI, JPG, BMP, PCX, TGA). -* Export/import animations to/from **Sprite Sheets**. -* **Tiled** drawing mode, useful to draw **patterns** and textures. -* **Undo/Redo** for every operation. -* Real-time **animation preview**. -* [**Multiple editors**](http://www.aseprite.org/docs/workspace/#drag-and-drop-tabs) support. -* Pixel-art specific tools like filled **Contour**, **Polygon**, [**Shading**](http://www.aseprite.org/docs/shading/) mode, etc. -* [**Onion skinning**](https://www.aseprite.org/docs/animation/#onion-skinning) +* Sprites are composed of [layers & frames](https://www.aseprite.org/docs/timeline/) as separated concepts. +* Support for [color profiles](https://www.aseprite.org/docs/color-profile/) and different [color modes](https://www.aseprite.org/docs/color-mode/): RGBA, Indexed (palettes up to 256 colors), Grayscale. +* [Animation facilities](https://www.aseprite.org/docs/animation/), with real-time [preview](https://www.aseprite.org/docs/preview-window/) and [onion skinning](https://www.aseprite.org/docs/onion-skinning/). +* [Export/import](https://www.aseprite.org/docs/exporting/) animations to/from [sprite sheets](https://www.aseprite.org/docs/sprite-sheet/), GIF files, or sequence of PNG files (and FLC, FLI, JPG, BMP, PCX, TGA). +* [Multiple editors](https://www.aseprite.org/docs/workspace/#drag-and-drop-tabs) support. +* [Layer groups](https://imgur.com/x3OKkGj) for organizing your work, and [reference layers](https://twitter.com/aseprite/status/806889204601016325) for rotoscoping. +* Pixel-art specific tools like [Pixel Perfect freehand mode](https://imgur.com/0fdlNau), [Shading ink](https://www.aseprite.org/docs/shading/), [Custom Brushes](https://twitter.com/aseprite/status/1196883990080344067), [Outlines](https://twitter.com/aseprite/status/1126548469865431041), [Wide Pixels](https://imgur.com/1yZKUcs), etc. +* Other special drawing tools like [Pressure sensitivity](https://twitter.com/aseprite/status/1253770784708886533), [Symmetry Tool](https://twitter.com/aseprite/status/659709226747625472), [Stroke and Fill](https://imgur.com/7JZQ81o) selection, [Gradients](https://twitter.com/aseprite/status/1126549217856622597). +* [Tiled mode](https://twitter.com/pixel__toast/status/1132079817736695808) useful to draw patterns and textures. +* [Transform multiple frames/layers](https://twitter.com/aseprite/status/1170007034651172866) at the same time. +* [Lua scripting capabilities](https://www.aseprite.org/docs/scripting/). +* [CLI - Command Line Interface](https://www.aseprite.org/docs/cli/) to automatize tasks. +* [Quick Reference / Cheat Sheet](https://www.aseprite.org/quickref/) keyboard shortcuts ([customizable keys](https://imgur.com/rvAUxyF) and [mouse wheel](https://imgur.com/oNqFqVb)). +* [Reopen closed files](https://twitter.com/aseprite/status/1202641475256881153) and [recover data](https://www.aseprite.org/docs/data-recovery/) in case of crash. +* Undo/Redo for every operation and support for [non-linear undo](https://imgur.com/9I42fZK). +* [More features & tips](https://twitter.com/aseprite/status/1124442198651678720) ## Issues @@ -77,7 +80,7 @@ It tries to replicate some pixel-art algorithms: * [Pixel perfect drawing algorithm](http://deepnight.net/pixel-perfect-drawing/) by [Sébastien Bénard](https://twitter.com/deepnightfr) and [Carduus](https://twitter.com/CarduusHimself/status/420554200737935361). Thanks to [third-party open source projects](docs/LICENSES.md), to -[contributors](http://www.aseprite.org/contributors/), and all the +[contributors](https://www.aseprite.org/contributors/), and all the people who have contributed ideas, patches, bugs report, feature requests, donations, and help me to develop Aseprite. @@ -95,11 +98,11 @@ This program is distributed under three different licenses: [observable](https://github.com/aseprite/observable), [ui](src/ui), etc.). 2. You can request a special - [educational license](http://www.aseprite.org/faq/#is-there-an-educational-license) + [educational license](https://www.aseprite.org/faq/#is-there-an-educational-license) in case you are a teacher in an educational institution and want to use Aseprite in your classroom (in-situ). 3. Steam releases are distributed under the terms of the [Steam Subscriber Agreement](http://store.steampowered.com/subscriber_agreement/). You can get more information about Aseprite license in the -[FAQ](http://www.aseprite.org/faq/#licensing-&-commercial). +[FAQ](https://www.aseprite.org/faq/#licensing-&-commercial). diff --git a/data/extensions/endesga-palettes/hept32.gpl b/data/extensions/endesga-palettes/hept32.gpl new file mode 100644 index 000000000..584fa4adf --- /dev/null +++ b/data/extensions/endesga-palettes/hept32.gpl @@ -0,0 +1,34 @@ +GIMP Palette +# + 0 0 0 Untitled + 24 13 47 Untitled + 53 54 88 Untitled +104 107 114 Untitled +139 151 182 Untitled +197 205 219 Untitled +255 255 255 Untitled + 94 233 233 Untitled + 40 144 220 Untitled + 24 49 167 Untitled + 5 50 57 Untitled + 0 95 65 Untitled + 8 178 59 Untitled + 71 246 65 Untitled +232 255 117 Untitled +251 190 130 Untitled +222 151 81 Untitled +182 104 49 Untitled +138 73 38 Untitled + 70 28 20 Untitled + 30 9 13 Untitled +114 13 13 Untitled +129 55 4 Untitled +218 36 36 Untitled +239 110 16 Untitled +236 171 17 Untitled +236 233 16 Untitled +247 141 141 Untitled +249 78 109 Untitled +193 36 88 Untitled +132 18 82 Untitled + 61 8 59 Untitled diff --git a/data/extensions/endesga-palettes/package.json b/data/extensions/endesga-palettes/package.json index acc847c71..a270531cc 100644 --- a/data/extensions/endesga-palettes/package.json +++ b/data/extensions/endesga-palettes/package.json @@ -16,7 +16,8 @@ { "id": "EDG32", "path": "./edg32.gpl" }, { "id": "EDG8", "path": "./edg8.gpl" }, { "id": "EN4", "path": "./en4.gpl" }, - { "id": "ENOS16", "path": "./enos16.gpl" } + { "id": "ENOS16", "path": "./enos16.gpl" }, + { "id": "HEPT32", "path": "./hept32.gpl" } ] } } diff --git a/data/pref.xml b/data/pref.xml index 200102a3a..314f36315 100644 --- a/data/pref.xml +++ b/data/pref.xml @@ -184,6 +184,9 @@