2014-05-26 03:22:25 +00:00
|
|
|
# Next release
|
|
|
|
|
|
|
|
* canvas dialog should show width and height and expansion point
|
|
|
|
* double click or right click a range outline in timeline should open popups or properties
|
|
|
|
|
2014-04-29 04:21:24 +00:00
|
|
|
# Hard to reproduce bugs
|
2014-04-10 00:56:41 +00:00
|
|
|
|
2014-06-06 11:51:27 +00:00
|
|
|
* add PRINTFs to observers, there is something wrong with save as
|
2014-06-05 00:58:18 +00:00
|
|
|
* sometimes, when the background layer is in a strange state:
|
|
|
|
* two layers, hide background, the extra cel/brush preview isn't visible in the mini-editor
|
|
|
|
* timeline: can move background
|
2014-05-26 03:22:25 +00:00
|
|
|
* does lock alpha work correctly?
|
|
|
|
* does onscrollchange notification calls onscrollchange notification?
|
|
|
|
* random clicks on toolbar crashes the program
|
|
|
|
* click Desktop item in file selector crashes the program
|
2014-04-10 00:56:41 +00:00
|
|
|
|
|
|
|
# Tasks
|
|
|
|
|
|
|
|
* Paste in place doesn't work as expected sometimes (copy something
|
|
|
|
from one frame, paste in other frame).
|
|
|
|
- Paste does not paste in the correct position if the cel is moved.
|
|
|
|
|
|
|
|
* onion-skin-bug.ase: See frame 2 with onion skin, there is a bug
|
|
|
|
* add drag-and-drop of colors.
|
|
|
|
* add Mac OS X:
|
|
|
|
- hide OS cursor
|
|
|
|
- Ctrl key should be Cmd key
|
|
|
|
- Use OS menu (the same for Windows?)
|
|
|
|
* update copyright year of source files (automate this in with a script)
|
2012-07-08 04:30:50 +00:00
|
|
|
|
2013-11-10 17:50:37 +00:00
|
|
|
* Remove Image::getPixelAddress(), it shouldn't be public and almost
|
|
|
|
everywhere we should use iterators for images. Also get/put_pixel_fast
|
|
|
|
and ImageImpl::address() are dangerous.
|
2013-01-20 20:09:45 +00:00
|
|
|
* Warning icon when selecting RGB/HSB color in indexed image.
|
2013-11-10 21:36:21 +00:00
|
|
|
* Warning message when we open a file that is already opened
|
2013-08-06 00:20:19 +00:00
|
|
|
(show an option to create a second view, or maybe this should
|
|
|
|
be forbidden).
|
2012-09-01 01:14:42 +00:00
|
|
|
* New sprite with palette of the clipboard
|
|
|
|
* Ctrl+Shift selection should copy and snap axis
|
|
|
|
* "Duplicate sprite" should copy the "Background" layer as Background.
|
2012-07-08 04:30:50 +00:00
|
|
|
* Fix problem applyToTarget() can throw (it's called from other thread)
|
|
|
|
* After flatten show the background if it is hidden.
|
|
|
|
* Alpha when pasting.
|
|
|
|
* Shade drawing mode.
|
|
|
|
* Improve status bar indicators (show origin of selection in floating state).
|
|
|
|
* Export to sprite sheet: if the file we're using is .ase, select .png by default
|
|
|
|
(and then the latest used extension).
|
|
|
|
* Fix problem with export sprite sheet when the cel has negative pos
|
|
|
|
* Add a warning when exporting RGB sprite to GIF, hinting at the quantize function.
|
|
|
|
* MovingPixelsState: Add undo information in each transformation step.
|
2013-08-06 00:20:19 +00:00
|
|
|
* Add IntEntry class in src/ui/ with spin-buttons.
|
2012-07-08 04:30:50 +00:00
|
|
|
* Add feedback to "Shift+S" shortcut to switch "snap to grid".
|
|
|
|
* Add color swatches bar.
|
|
|
|
* Sort palette entries.
|
|
|
|
* Add "Remap" button to palette editor after a palette entry is modified:
|
|
|
|
This button should apply a color curve to the whole sprite to remap
|
|
|
|
old indexes to the new positions.
|
2012-10-31 00:09:04 +00:00
|
|
|
|
2012-07-08 04:30:50 +00:00
|
|
|
# Refactoring
|
|
|
|
|
2014-04-10 00:56:41 +00:00
|
|
|
* Merge everything related to configuration/settings in one class
|
|
|
|
(allow configuration per document). Use cfg.cpp and settings/ dir.
|
|
|
|
* Refactor src/file/ in several layers.
|
2012-07-08 04:30:50 +00:00
|
|
|
* Use streams instead of FILEs.
|
|
|
|
* Destroy modules/gui.h.
|
|
|
|
* Convert update_screen_for_document in an event from contexts or
|
|
|
|
something similar.
|
|
|
|
* Use a class to wrap calls load_window_pos/save_window_pos.
|
|
|
|
* Command::loadParams() should be called one time when the command
|
|
|
|
params is read from the XML file, not each time the command is
|
|
|
|
executed. For this all commands must be got from the CommandsList,
|
|
|
|
then cloned, and finally filled with params.
|
|
|
|
* About Signals/Slots: Add some field in slots to avoid disconnecting
|
|
|
|
them from dead signals.
|
|
|
|
* editors_ -> MultiEditors class widget
|
|
|
|
* convert all widgets to classes:
|
|
|
|
* match UI library design with Vaca library.
|
|
|
|
* move all functions (jwidget_*) to methods in Widget class.
|
|
|
|
* the same for each widget (e.g. jbutton_* to Button widget)
|
|
|
|
* AppHooks to Vaca::Signals
|
|
|
|
* all member functions should be named verbNoun instead of verb_noun or noun_verb.
|
|
|
|
* all functions to handle an object should be converted to member functions:
|
|
|
|
* e.g. jwidget_set_text -> Widget::setText
|
|
|
|
|
2014-04-10 00:56:41 +00:00
|
|
|
# Old issues
|
2012-07-08 04:30:50 +00:00
|
|
|
|
|
|
|
* Ctrl+T should transform the current cel
|
|
|
|
* fix bilinear: when getpixel have alpha = 0 get a neighbor color.
|
|
|
|
* fix sliders in Tools Configuration, they are too big
|
|
|
|
for small resolutions.
|
|
|
|
* rewrite palette-editor to edit multiple-palettes.
|
|
|
|
* fix quantize (one palette for all frames, one palette per frame)
|
|
|
|
* pal-operations (sort, quantize, gamma by color-curves, etc.);
|
|
|
|
* complete palette operations, and palette editor (it needs a slider
|
|
|
|
or something to move between palette changes)
|
|
|
|
* drag & drop colors.
|
2013-11-10 21:27:22 +00:00
|
|
|
* if the Tools Configuration dialog box is activated, Shift+G and
|
|
|
|
Shift+S keys should update it.
|
2012-07-08 04:30:50 +00:00
|
|
|
* add two DrawClick2:
|
|
|
|
* DrawClick2FreeHand
|
|
|
|
* DrawClick2Shape
|
|
|
|
* see the new Allegro's load_font
|
2014-04-10 00:56:41 +00:00
|
|
|
* review ICO files support.
|
2012-07-08 04:30:50 +00:00
|
|
|
* add "size" to GUI font (for TTF fonts);
|
|
|
|
* layer movement between sets in animation-editor;
|
|
|
|
* add all the "set" stuff again;
|
|
|
|
* fix algo_ellipsefill;
|
|
|
|
* view_tiled() should support animation playback (partial support:
|
|
|
|
with left and right keys).
|
|
|
|
* dacap wish-list:
|
|
|
|
* added starred file-items in the file-selector.
|
|
|
|
* tweening of cels (translate, scale, rotate)
|
|
|
|
* tweening of polygons
|
|
|
|
* manuq wish-list:
|
|
|
|
* layer-with-constant-cel
|
|
|
|
* Mateusz Czaplinski ideas:
|
|
|
|
* when move selections, will be good the possibility to see relative
|
|
|
|
position from the starting point of movement;
|
|
|
|
* make drawing the 'marching-ants-rectangle' a prioritaire thing to
|
|
|
|
draw (when move it).
|
|
|
|
* fix the fli reader (both Allegro and Gfli): when a frame hasn't
|
|
|
|
chunks means that it's looks like the last frame;
|
|
|
|
* talk with Elias Pschernig, his "do_ellipse_diameter" (algo_ellipse)
|
|
|
|
has a bug with ellipses of some dimensions (I made a test, and a
|
|
|
|
various sizes have errors).
|