From: <dom...@us...> - 2013-05-07 16:36:24
|
Revision: 371 http://sourceforge.net/p/fvwm-crystal/code/371 Author: dominique_libre Date: 2013-05-07 16:36:21 +0000 (Tue, 07 May 2013) Log Message: ----------- functions/FullScreen: Silent removing of non existing file at restart Modified Paths: -------------- ChangeLog fvwm/components/functions/Fullscreen Modified: ChangeLog =================================================================== --- ChangeLog 2013-05-06 20:02:48 UTC (rev 370) +++ ChangeLog 2013-05-07 16:36:21 UTC (rev 371) @@ -4,7 +4,7 @@ functions/About: version change to 3.1.13-svn a few better quality icons components/Fullscreen: remove temporary files when a full screened window - is closed. + is closed; silent that function at restart components/Thumbnails: fix a regresion, thumbnail was not recovered at restart; introduce a thumbnail recovery delay at restart, needed by the Icon-Launcher Modified: fvwm/components/functions/Fullscreen =================================================================== --- fvwm/components/functions/Fullscreen 2013-05-06 20:02:48 UTC (rev 370) +++ fvwm/components/functions/Fullscreen 2013-05-07 16:36:21 UTC (rev 371) @@ -133,7 +133,7 @@ AddToFunc RecoverFullscreen PipeRead 'for i in $[infostore.TmpDirectory]/fullscreen.19.*; do wid=`basename "$i" | awk --field-separator . \'{print $$3}\'`; echo "+ I WindowId ${wid} ThisWindow Fullscreen-Recover"; done' PipeRead 'for i in $[infostore.TmpDirectory]/fullscreen.20.*; do wid=`basename "$i" | awk --field-separator . \'{print $$3}\'`; echo "+ I WindowId ${wid} ThisWindow Disappear-Recover"; done' -+ I All Test (F $[infostore.TmpDirectory]/fullscreen.20.$[w.id].$[page.ny].$[page.ny].tmp) WindowId $[w.id] Disappear-Recover +#+ I All Test (F $[infostore.TmpDirectory]/fullscreen.20.$[w.id].$[page.ny].$[page.ny].tmp) WindowId $[w.id] Disappear-Recover AddToFunc StartFunction I Schedule 500 RecoverFullscreen @@ -143,7 +143,7 @@ # Be sure the temporary files are destroyed when a window is closed DestroyFunc Window-Fullscreen-Destroy AddToFunc Window-Fullscreen-Destroy -+ i PipeRead 'for file in /tmp/fullscreen.??.$[w.id].?.?.tmp; do rm $file; done' ++ i PipeRead 'for file in /tmp/fullscreen.??.$[w.id].?.?.tmp; do rm $file 2>/dev/null; done' DestroyModuleConfig FvwmEvent-Window-Fullscreen-Destroy: * *FvwmEvent-Window-FullScreen-Destroy: destroy_window Window-Fullscreen-Destroy This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |