1 todo bug item gone. went from .eapp to .eap - hey guess what guys! all your

bars/menus/engage stuff will need fixing (rename your fiels and edit .order
files). :)


SVN revision: 15510
This commit is contained in:
Carsten Haitzler 2005-06-24 02:29:27 +00:00
parent 47bb35a39b
commit 3049cdf300
3 changed files with 30 additions and 29 deletions

51
TODO
View File

@ -157,39 +157,40 @@ These are in no particular order:
2. fixes 2. fixes
* on font apply borders need to be adjuted for size changes * need to hide other windows while doing fullscreen.
* font aply doesnt seem to keep working (edje problem?) unless you restart * bug: on font apply borders need to be adjuted for size changes
* alt +click window (or just click its title) and start a move. if you flip * bug: font apply doesnt seem to keep working (edje problem?) unless you
desktop WHILE moving (with key binding) the window will follow but the pager restart
doesnt update. * bug: alt +click window (or just click its title) and start a move. if you
* if you flip desktops while resizing resize should get aborted, not continue. flip desktop WHILE moving (with key binding) the window will follow but the
* if i downlock my machine to like 400mhz (make it sloooow) or load it down pager doesnt update.
with lots of load and then hold down ctrl+alt+right for a while windows on * bug: if you flip desktops while resizing resize should get aborted, not
desktops vanish... there must be a race condition with a map/unmap event continue.
and something else... they still are around in x- just e hides them and * bug: if i downlock my machine to like 400mhz (make it sloooow) or load it
never shows them again down with lots of load and then hold down ctrl+alt+right for a while
* resize of xmms playlist is broken when sizing up windows on desktops vanish... there must be a race condition with a
* this same bug can be seen resizing eclipse - it stays 1 event behind map/unmap event and something else... they still are around in x- just e
* Hide other windows while doing fullscreen. hides them and never shows them again
* quit app while in fullscreen black bg stays * bug: resize of xmms playlist is broken when sizing up
* if focus changes while in fullscreen, un-fullscreen the app and deal with * bug: this same bug can be seen resizing eclipse - it stays 1 event behind
focus * bug: quit app while in fullscreen black bg stays
* pager problems. Seems to loose or mess up windows sometimes. * bug: if focus changes while in fullscreen, un-fullscreen the app and deal
with focus
* pug?: pager problems. Seems to loose or mess up windows sometimes.
* bug?: xine's ui window/panel is under its video window when u go * bug?: xine's ui window/panel is under its video window when u go
fullscreen. is this correct? fullscreen. is this correct?
* bug: pager doesnt handle container/zone resize properly (and goes a weird * bug: pager doesnt handle container/zone resize properly (and goes a weird
size)??? (try resize screen to like 480x640 (new aspect)) size)??? (try resize screen to like 480x640 (new aspect))
* .eapp needs to become .eap :) * bug: sometimes the mouse gets locked to a window with a mouse grab of some
* sometimes the mouse gets locked to a window with a mouse grab of some sort sort in x (it gets the down event and not the up?) so e thinks its down but
in x (it gets the down event and not the up?) so e thinks its down but it it isn't
isn't * bug: maximised apps when e restarts are not recognised as maximised
* maximised apps when e restarts are not recognised as maximised * bug: sometimes windows that get shut down/closed get unparented but the whole
* sometimes windows that get shut down/closed get unparented but the whole
border stays around - something is keeping extra references maybe? it is border stays around - something is keeping extra references maybe? it is
hidden, until you flip desktops then it appears again - but with no client hidden, until you flip desktops then it appears again - but with no client
around. currently they have a dangling reference - need to find out WHO around. currently they have a dangling reference - need to find out WHO
added that ref and didnt remove it (i haven't seen this for ages now) added that ref and didnt remove it (i haven't seen this for ages now)
* fix action delete (can segv if action is stored for "long runing actions" * bug: fix action delete (can segv if action is stored for "long runing actions"
like move/resize) like move/resize)
* bug: if you have 2 zones and you fill up zone 2 (right) mostly and then run * bug: if you have 2 zones and you fill up zone 2 (right) mostly and then run
a big xev (xev -g 1280x1024) that wont fit it gets placed offscreen to the a big xev (xev -g 1280x1024) that wont fit it gets placed offscreen to the

Binary file not shown.

View File

@ -129,7 +129,7 @@ e_app_new(const char *path, int scan_subdirs)
if (ecore_file_is_dir(a->path)) if (ecore_file_is_dir(a->path))
{ {
snprintf(buf, sizeof(buf), "%s/.directory.eapp", path); snprintf(buf, sizeof(buf), "%s/.directory.eap", path);
if (ecore_file_exists(buf)) if (ecore_file_exists(buf))
_e_app_fields_fill(a, buf); _e_app_fields_fill(a, buf);
else else
@ -1033,7 +1033,7 @@ _e_app_cb_monitor(void *data, Ecore_File_Monitor *em,
printf("BUG: Weird event for .order: %d\n", event); printf("BUG: Weird event for .order: %d\n", event);
} }
} }
else if (!strcmp(file, ".directory.eapp")) else if (!strcmp(file, ".directory.eap"))
{ {
if ((event == ECORE_FILE_EVENT_CREATED_FILE) if ((event == ECORE_FILE_EVENT_CREATED_FILE)
|| (event == ECORE_FILE_EVENT_MODIFIED)) || (event == ECORE_FILE_EVENT_MODIFIED))
@ -1049,7 +1049,7 @@ _e_app_cb_monitor(void *data, Ecore_File_Monitor *em,
} }
else else
{ {
printf("BUG: Weird event for .directory.eapp: %d\n", event); printf("BUG: Weird event for .directory.eap: %d\n", event);
} }
} }
else else
@ -1247,7 +1247,7 @@ _e_app_is_eapp(const char *path)
return 0; return 0;
p++; p++;
if ((strcasecmp(p, "eapp"))) if ((strcasecmp(p, "eap")))
return 0; return 0;
return 1; return 1;