Releases: weiseng18/pixelart
Releases · weiseng18/pixelart
[1.7.1] minor bugfix for hex color input
[1.7.0] Export PNG can now be upscaled
Feature
- User can now upscale their raw
.pix
file into a larger PNG.- For example, using a 16 pixel by 16 pixel
.pix
file, user can scale up to 10x, resulting in a 160 pixel by 160 pixel.png
file, where each pixel in the.pix
file is represented by a 10 by 10 square in the.png
file.
- For example, using a 16 pixel by 16 pixel
Code changes
- CSS now has its own folder containing all the
.css
files- Possibly transitioning into having more classes to store CSS attributes, and these classes can be applied to elements created in javascript, instead of setting attributes in javascript
- tweaked 1.6 GIF options menu code to allow it to be re-used for the PNG options menu
- moved createGIF() into save.js and renamed gif.js to savemenu.js
[1.6.2] fix bug where parameters for createGIF() were not passed
In 1.6.0 and 1.6.1, the parameters or createGIF() were not passed into the function. This resulted in the GIF option menu to be not functional and had no effect on the exporting of GIF.
[1.6.1] fix bug preventing user from typing at all in RGB/Hex color picker
The keypress
event for tools keytriggers seems to have overwritten typing capability in the input fields for the RGB and Hex section of the color picker.
This version fixes this bug, issue #17. There are other known color picker bugs, but this is the only bug that majorly affects usage, so this is released as its own version.
[1.6.0] GIF creation
- Can now create a GIF based on the current frames
- Features a GIF creation options menu
- Options available for GIF creation
- scale: 1 to 10
- delay between frames: 100 to 1000 ms
[1.5.1] several bugfixes
- User now cannot trigger tools via keypress while still at start menu
- Fix issues relating to moving empty selection in select tool
- Binded event listeners for select tool now works correctly as intended
- Prevent multiple event listeners of the same type on selectCanvas leading to multiple triggers of
mousedown
/mousemove
/mouseup
effects
[1.5.0] simple keybindings
- Added keybindings to trigger tools
- Dynamically rendered
- Added current keybind to tooltip of tools
- Dynamically rendered
[1.4.2] bugfix issue #16
This version fixes #16.
[1.4.1] select tool bugfixes
[1.4.0] implement delete frame, and added more ways to use eyedropper
- User can delete current frame
- Eyedropper can be used via:
- Middle click during bucket tool
- Middle click during line tool
- It is disabled after the first point in the line tool is selected; however, even if it is enabled during this phase, the user is actually unable to see the actual point the user is hovering on, and thus eyedropper would be useless.