All Projects

IDProjectTask Type  ascSeveritySummaryStatusOperating SystemProgressAssigned To
 11 Iocaste EditorBug ReportHigh loading save game ClosedAll
100%
Brige Task Description the loading process seems to work but some data is not filled properly (f.e. missing areas). This results in nullpointer errors
 39 Iocaste EditorBug ReportHigh MemoryLeaks due to Duplicate method ClosedWin32
100%
Michael Pfeuti Task Description change duplicate method to a copy constructor (issue occurs with the clipboard structure and the actions)
 147 Iocaste EditorBug ReportHigh no selection (pic/area) possible ClosedAll
100%
Michael Pfeuti Task Description it is possible to deselect everything in the two list. this results in a chrash (we assume that there is always a pic selected when we can select a area)
 157 Iocaste EditorBug ReportHigh animation is not copied with a copy of an object ClosedAll
100%
Michael Pfeuti Task Description
 37 Iocaste EditorBug ReportMedium Crash beacause of Saving ClosedAll
100%
Brige Task Description When not all information of a action (PictureStateChange and PictureChange) are given => Chash
38Iocaste EditorBug ReportMediumresolve index battleNewAll
0%
Task Description there are many index attributes which seem obsolete. the index of a layer isn't assigned correctly. either use only indices as unique identifiers or name. but don't mix decision 06.02.2011: - use indices
177Iocaste EditorBug ReportMediumedit object deletes actionsNewWin32
0%
Task Description when an object has action and its image is edited it loses its actions (see objecteditdialog in OnOk() there we create a new action instead of editing the old)
 2 Iocaste EditorBug ReportLow flickering with rightclick on tabs ClosedLinux
100%
Michael Pfeuti Task Description the whole tab panel gets reloaded and therefore flickering. previously selected tab is unselected.
17Iocaste Game EngineBug ReportLowResolution settingNewAll
0%
Task Description resize pictures and area to correct resolution. solve this with a special action.
 18 Iocaste EditorBug ReportLow progressbar while loading saved game ClosedAll
100%
Michael Pfeuti Task Description progressbar while loading saved game
 19 Iocaste EditorBug ReportLow open game adds imgs to current game ClosedAll
100%
Michael Pfeuti Task Description open game adds imgs to current game and does not create a new game.
28xfce4-linelight-pluginBug ReportLowgeneral refactoringNewAll
0%
Task Description use gthreads and other gtk specific methods
29xfce4-linelight-pluginBug ReportLowaccelerate link creationNewAll
0%
Task Description make creation of folder with links (when clicking on section name) faster
 32 xfce4-linelight-pluginBug ReportLow email test task ClosedWin32
100%
Task Description asd
 34 Iocaste EditorBug ReportLow Action Order ClosedAll
100%
Michael Pfeuti Task Description Only first layer can be managed
 35 Iocaste EditorBug ReportLow Crash when action del ClosedAll
100%
Michael Pfeuti Task Description When an action area (not in layer 0) is selected in the list and deleted => crash
 36 Iocaste EditorBug ReportLow Memory Management (Assigned Img) ClosedAll
100%
Michael Pfeuti Task Description The only open Images should be the one of the current Picture.
40xfce4-linelight-pluginBug ReportLowMemory leakNewWin32
0%
Task Description memory leak with list items
 132 UniGameBug ReportLow Deif's room ClosedWin32
100%
Task Description
151Iocaste EditorBug ReportLowupdate references of items when copy/cut themNewAll
0%
Task Description
 156 Iocaste EditorBug ReportLow Replace Duplicate with Copy Constructor ClosedAll
100%
Michael Pfeuti Task Description this includes memory leak fixing there are many places that cause memory leaks because I was too lazy to do it properly CAUTION: for the duplication of abstract instances we need this method. when we have a AbstractAction and we want to duplicate it we cannot use the copy constructor.
 162 Iocaste EditorBug ReportLow Animation Speed control ClosedAll
100%
Michael Pfeuti Task Description it should be possible to specify at how many fps an animation should be replayed
171Iocaste EditorBug ReportLowHierarchy/groups for inventory item/objectsNewAll
0%
Task Description to organise all items allow the user to put them in groups. same is should also be possible for objects/characters in the character/object pool
172Iocaste EditorBug ReportLowIntroduce SharedPointersNewAll
0%
Task Description
174Iocaste EditorBug ReportLowGame Creation WizardNewWin32
0%
Task Description when creating a game certain information should be given that do not change - the possible acitons (talk to, go to, ...) - the intentory style (MI1, MI2 static or MI3 right click popup or MI5 button open) and also the area where the intentory pops up
175Iocaste EditorBug ReportLowaction affect only local layer/pic after exportNewWin32
0%
Task Description for example move area in another picture should place a flag where the area has moved to. then the on enter actions should respect these flags
178Iocaste EditorBug ReportLowDefault text fontNewAll
0%
Task Description in show text you always have to select the font
180Iocaste EditorBug ReportLowFix TransformationsNewAll
0%
Michael Pfeuti Task Description use gcdc and its affine transform
181Iocaste EditorBug ReportLowRemove IDs from the xml import/exportNewAll
0%
Task Description We don't need to manage the IDs in the code. the ID's are only necessary during the loading process to make sure we rebuild the correct pointer relationships. Thus, the exporter should manage the creation of the IDs.
 3177 Graphic Utility LibraryBug ReportLow Mutable String ClosedAll
100%
Task Description make string mutable. it's not worth the pain of having immutable/noncopyable strings. Especially without smart pointers. It would become easier but still you cannot write string x ("ksjcnsk"= string y = x; for(..) { y = x.Replace(...); } we need to create many instances on the heap and delete them again.
 3178 Graphic Utility LibraryBug ReportLow TIFF LZW/PackBits compression ClosedAll
100%
Task Description LZW and PackBits compressed images are not read correctly. They differ slighty from the ground truth (provided in unsigned char in a header). note that the differ exactly in the same magnitude. when i write the read image in PNG it look +/- right. so there must be some systematic error. I suspect it to be the TIFFReadRGBAImageOriented function
3179Graphic Utility LibraryBug ReportLowTIFFReadRGBAImageOriented Premultiplication rounding er...NewWin32
0%
Task Description TIFFReadRGBAImageOriented executes an alpha premultiplication even when the alpha value is stored as EXTRASAMPLE_UNASSALPHA. This leads to rounding errors. example: (correct mathematical rounding) gt: 226 and alpha 0.5 -> 127 read the premultiplied value: 226*127/255 = 112.56 -> 113 converting to nonpremultiplied value: 113*255/127 = 226.89 -> 227 gt: 225 and alpha 0.5 -> 127 read the premultiplied value: 225*127/255 = 112.06 -> 112 converting to nonpremultiplied value: 112*255/127 = 224.88 -> 225 so we have a difference of 1 or 0 between the ground truth and the read value after undoing the premultiplication. (incorrect mathematical rounding) gt: 226 and alpha 0.5 -> 127 read the premultiplied value: 226*127/255 = 112.56 -> 112 converting to nonpremultiplied value: 112*255/127 = 224.88 -> 224 so incorrect mathematical rounding leading to much worse results. Consider using a different way to read the tiff image (for instance ReadEncodedStrip).
 3189 Graphic Utility LibraryBug ReportLow Folder creation, existence testing, deletion ClosedWin32
100%
Task Description Folder class to handling the mentioned operations.
 3190 Graphic Utility LibraryBug ReportLow Clean Test Output folder ClosedWin32
100%
Michael Pfeuti Task Description the test output folder is not clear. this can lead to wrong test results
 3191 Graphic Utility LibraryBug ReportLow remove pugi dependency in header ClosedAll
100%
Task Description XMLAttribute etc include the pugi header in the header. this shouldn't be that way. Furthermore the conversion constructor from pugi -> gul should not be public. every thing must be done internally.
 3192 Graphic Utility LibraryBug ReportLow timing ClosedAll
100%
Task Description timing macro that prints a timed stack trace. enable/disabled by a define switch
3193Graphic Utility LibraryBug ReportLowFile IONewWin32
0%
Task Description add file IO like writing to and reading from a file. this way we have less dependency on the GetData method of the String class
 3195 Graphic Utility LibraryBug ReportLow OpenAL for audio playback ClosedWin32
100%
Task Description Start code base for sound and audio handling. (video playback, syth., audio effects sandbox,....)
3197Graphic Utility LibraryBug ReportLowc++11 timingNewWin32
0%
Task Description use http://en.cppreference.com/w/cpp/chrono/high_resolution_clock instead of unix timing or glfw timing.
3198Graphic Utility LibraryBug ReportLowallow float fps in video writingNewWin32
0%
Task Description c->time_base = av_d2q(1.f/fps, 65535);
3199Graphic Utility LibraryBug ReportLowenum classNewWin32
0%
Task Description Implement easy usable enum class based on http://stackoverflow.com/questions/1965249/how-to-write-java-like-enums-in-c make sure the have int->type and type->int conversion, toString method, and iteration facility.
3Iocaste EditorBug ReportVery Lowimage zoomNewLinux
50%
Task Description initial image zoom is not fit to screen
 5 Iocaste EditorBug ReportVery Low rearrangement of sash panels ClosedAll
100%
Task Description when app starts the rearrangement of sash panels can be seen
176Iocaste EditorFeature RequestMediumxml exportNewAll
0%
Task Description replace whitespaces in strings with _
 4 Iocaste EditorFeature RequestLow move areas between layers ClosedAll
100%
Michael Pfeuti Task Description add a menu item to move areas between layers to the right click menu of the action areas.
 6 Iocaste EditorFeature RequestLow Sound action ClosedAll
100%
Michael Pfeuti Task Description an action that play a sound file
 7 Iocaste EditorFeature RequestLow background sound  ClosedAll
100%
Michael Pfeuti Task Description assign background sound to a image
8Iocaste EditorFeature RequestLowstart menu for gameNewAll
0%
Task Description set the welcome screen of the exported game. (new game, load, settings, ...)
9Iocaste EditorFeature RequestLowvideo actionNewAll
0%
Task Description action that play a video file
 10 Iocaste EditorFeature RequestLow action area with image ClosedAll
100%
Michael Pfeuti Task Description so far action areas are invisible in the final game. it should be possible that a area shows an image. By this, one image is not so static. it should also be possible to change to images through an action event. exp: open door vs. closed door
Showing tasks 1 - 50 of 105 Page 1 of 31 - 2 - 3 -

Available keyboard shortcuts

Tasklist

Task Details

Task Editing