Kacper Woźniak
75627bd148
Fix the group attribute for Slice Properties
2022-09-26 11:00:10 -03:00
Gaspar Capello
59fff4ba9c
Fix bmp file and bitmap size are incorrectly set during save command ( fix #3534 )
...
Before this fix, file and image sizes were calculated incorrectly. This caused problems for some viewers/browsers/engines to load BMPs created in Aseprite.
2022-09-23 18:07:23 -03:00
Gaspar Capello
877ae9eeec
Fix uninstalling (or updating) an extensions that has subdirectories results in an error ( fix #3385 )
...
Prior to this fix, any additional external files or directories within the Extension's directory tree, break the subdirectory removal iteration, resulting in empty subdirectories and a console error.
2022-09-22 11:30:48 -03:00
Martín Capello
fecfbb1145
Fix icon's Y position when the item is in the last row of a ButtonSet with more than one row ( fix #2676 )
2022-09-20 17:51:54 -03:00
Martín Capello
6e57546aa9
Fix text Y position when the item is in the last row of a ButtonSet.
...
The last row of items are a bit taller to make room for the button border, so this compensates that.
2022-09-20 17:51:52 -03:00
Martín Capello
8d5f281998
Fix index mode spray not handling masked color as expected ( fix #3063 )
2022-09-20 14:35:21 -03:00
Gaspar Capello
8eae7c00ae
When eyedropper tool picks a pixel of mask color, the FG color changes to entry 0 ( fix #2813 )
2022-09-20 14:28:00 -03:00
David Capello
05dd5f8db7
Merge branch 'fix-export-layers-same-name'
2022-09-20 14:25:22 -03:00
David Capello
eadef19924
Update submodules
2022-09-16 12:30:13 -03:00
Martín Capello
a7145ba09c
Add asserts to detect when MinSize > MaxSize
2022-09-15 10:06:11 -03:00
Martín Capello
f454d9a0af
Add "minheight" properties to avoid std::clamp asserts in visual studio when lo > hi
2022-09-15 10:01:50 -03:00
Martín Capello
826fc1a5fd
Remember layer index between export operations
2022-09-13 17:09:58 -03:00
David Capello
9b917fe197
Update laf module
2022-09-09 13:52:40 -03:00
David Capello
f925e22561
Don't encourage the usage of layerIndex param in ExportSpriteSheetParams
...
Until we don't have a standarized way to indicate layers by indexes.
2022-09-05 17:19:53 -03:00
David Capello
d5f54da021
Avoid hardcoded number of initial items added in the layers combobox
2022-09-05 17:19:53 -03:00
Martín Capello
acdb501fc8
Use layer index to avoid conflicts when exporting sprites with layers that have the same name ( fix #2656 )
2022-09-05 17:19:53 -03:00
David Capello
03148f9c7c
Add SENTRY_ENV option
2022-09-05 16:28:44 -03:00
David Capello
f54605e1ea
Fix typo with SENTRY_DSN option name
2022-09-05 16:21:45 -03:00
David Capello
c0a872ee51
Update laf submodule to fix #3433
2022-09-02 14:35:23 -03:00
David Capello
ae889d4ae3
Remove unused local variable from BmpFormat::onLoad()
2022-08-31 12:29:56 -03:00
David Capello
8d79350b7c
Fix minor warning C4468 in MSVC using [[fallthrough]]
...
This is the warning C4468: 'fallthrough': attribute must be followed by a case label or a default label
2022-08-31 12:28:52 -03:00
David Capello
c79fb8b211
Fix compilation when ENABLE_UI is disabled
...
E.g. We cannot use current_editor/Editor class for the CLI-only
Aseprite version.
2022-08-31 11:48:16 -03:00
David Capello
2a93672c70
[lua] Range:clear() now clears the selection of slices
2022-08-31 11:36:39 -03:00
David Capello
47aae7fc07
[lua] Support expressions like: app.range.slices=app.activeSprite.slices
...
Using lua_geti() we can iterate the SlicesObj as a table.
2022-08-31 11:28:37 -03:00
David Capello
6dce23540a
[lua] Move app.selectedSlices to app.range.slices
...
The biggest motivation was that the Range object is already used to
get/set selected objects in the UI, and it's the range used in
operations like Edit > Delete command (which is the case for slices).
2022-08-31 11:17:34 -03:00
lampysprites
4d65b5c925
[lua] Add app.selectedSlices field
2022-08-31 10:36:00 -03:00
David Capello
2789e41d48
[lua] New API version 20
2022-08-31 09:36:27 -03:00
David Capello
6da4000e6c
Make Enter key to "Agree" loading the animation sequence when we modify the duration field
2022-08-31 09:11:59 -03:00
lampysprites
c67902dee3
Request frame duration when opening sequences
2022-08-31 09:06:16 -03:00
Gaspar Capello
277e24c799
Minor refactor on old macros within BMP format
2022-08-30 14:44:47 -03:00
David Capello
877b5e00a3
Add color_scales_tests
2022-08-30 14:14:06 -03:00
Gaspar Capello
bdcabdedf3
Add extended support to BMP files ( fix #3277 , fix #1495 )
...
Before this addition, Aseprite supported following BMP formats:
- Size = 12 (OS/2 BMP 1.0)
- Size = 40 (Windows BMP v3)
Now extended support has been added to the BMP extension:
- Load BMP files with BMP header size:
- Size = 12 (OS/2 BMP 1.0)
- Size = 16 (OS/2 BMP 2.0 - size 16)
- Size = 24 (OS/2 BMP 2.0 - size 24)
- Size = 40 (Windows BMP v3)
- Size = 52 (BITMAPV2INFOHEADER)
- Size = 56 (BITMAPV3INFOHEADER)
- Size = 60 (OS/2 BMP 2.0 - size 60)
- Size = 64 (OS/2 BMP 2.0 - size 64)
- Size = 108 (BITMAPV4INFOHEADER) at the moment colorimetry isn’t supported.
- Size = 124 (BITMAPV5INFOHEADER) at the moment ICC profiles not supported.
- Load BMP with alpha channel.
- Load BMP 2bit color depth.
- Export BMP files with alpha channel (not palette based).
2022-08-30 13:34:32 -03:00
David Capello
282328d6d6
Remove dependency with stringencoders library
2022-08-24 12:50:30 -03:00
David Capello
8a7f6930d0
Fix minor memory leaks loading palettes using std::unique_ptrs
2022-08-23 15:08:01 -03:00
David Capello
ab4088502c
Use FileAbstractImage in .fli and .webp file formats ( #3008 )
2022-08-23 11:33:03 -03:00
David Capello
9f8df8e914
[win] Fix aseprite-thumbnailer with new changes from a66c170ded
2022-08-18 13:53:20 -03:00
David Capello
a66c170ded
Add render::BgOptions to simplify some code
2022-08-17 22:40:25 -03:00
David Capello
4e12e427ef
Rename "checked" -> "checkered" (background, drawing routines, etc.)
...
Also rename setBgCheckedSize -> setBgStripeSize in case we add new
background patterns (like horizontal/vertical/diagonal stripes, etc.)
2022-08-17 22:19:07 -03:00
David Capello
2367c8526b
Replace deprecated macro TYPED_TEST_CASE with TYPED_TEST_SUITE
2022-08-17 21:46:33 -03:00
David Capello
c8c92499b2
Include wintab32.dll sha1 information (related to #3358 )
...
This might be useful to pre-filter one specific buggy wintab32.dll
library to avoid crashes.
2022-08-17 12:01:03 -03:00
Gaspar Capello
e6c90334f9
Fix scrollbar for the Extensions list in Preferences is missing on the first open ( fix #3456 )
2022-08-10 12:01:28 -03:00
David Capello
3a917492ee
Fix crash showing color selector when GPU is enabled
...
It looks like the internal surface has a nullptr color space.
2022-08-09 16:11:57 -03:00
Gaspar Capello
19b18d2a63
Fix reference layer scaled incorrectly after Sprite > Sprite Size ( fix #3461 )
2022-08-09 15:30:20 -03:00
Gaspar Capello
add1128248
Fix RotSprite transparency bug ( fix #3444 )
2022-08-08 10:37:32 -03:00
David Capello
da636253ee
Fix scale factor when using the "Export for Twitter" ( fix #3465 )
...
Regression introduced in b7d5d4a2c9
2022-08-08 10:29:36 -03:00
David Capello
c62aa571aa
Possible fix rendering reference layers in nonreproducible scenario ( fix #3460 )
...
This is a patch, but we don't know why this can happen, so it's highly
probable that other kind of crashes might appear in the near
future (or this doesn't fix the original bug).
2022-08-05 10:30:17 -03:00
David Capello
1f24e0be9f
Fix finding webp from Skia on Windows, macOS, and Linux
2022-08-02 20:20:13 -03:00
David Capello
ccb32562ad
Link with libwebp from Skia if possible
2022-08-02 18:56:34 -03:00
Gaspar Capello
55885ee266
Fix regression: TextBox isn't rendering text (doesn't update the bounds area of the text box)
...
Regression in dd0c296209
(Use
tooltip_text style & color to paint tooltip windows #2554 ).
Prior this fix, text box does not update its bounds area because it
has not a style assigned.
Fix #3442 , fix #3443
2022-08-02 16:39:18 -03:00
David Capello
3e6360d024
Fix crash using deleted os::Surface ( fix #3451 )
...
It looks like processing a specific kPaintMessage with
ui::Widget::sendMessage() might re-create the os::Surface and destroy
the previous one, so we need to keep a reference to the previous
surface just in case to keep it alive.
We aren't able to reproduce this crash, but we've received several
Sentry reports about it, only on Windows and since v1.2.34.1 (not sure
if it's related to that). We'll see if this does fix the crashes or we
have some kind of regression in the future.
2022-08-02 16:22:13 -03:00