From: <dom...@us...> - 2013-05-04 11:13:16
|
Revision: 349 http://sourceforge.net/p/fvwm-crystal/code/349 Author: dominique_libre Date: 2013-05-04 11:13:13 +0000 (Sat, 04 May 2013) Log Message: ----------- Restrict Fullscreen to non FvwmButtons windows Modified Paths: -------------- ChangeLog INSTALL NEWS fvwm/components/functions/About fvwm/components/functions/Fullscreen Modified: ChangeLog =================================================================== --- ChangeLog 2013-05-04 01:20:12 UTC (rev 348) +++ ChangeLog 2013-05-04 11:13:13 UTC (rev 349) @@ -17,6 +17,7 @@ functions/Prefernces-Menu: Added Thunar desktop preference recipes/*; desktop/FVWM-Crystal-Preferences: moved desktop manager to the recipes recipes/*: make all the recipes to work with apps/Thunar + components/Fullscreen: restrict Fullscreen to non FvwmVuttons windows Mercredi 1 Mai 2913 Dominique Michel updated the version to 3.1.8 Modified: INSTALL =================================================================== --- INSTALL 2013-05-04 01:20:12 UTC (rev 348) +++ INSTALL 2013-05-04 11:13:13 UTC (rev 349) @@ -154,7 +154,7 @@ for reboot/shutdown options in the Exit menu - 'xrandr' for video mode switching - 'gdmflexiserver' (distributed with gdm) for GDM login manager support -- ROX-Filer or Nautilus for nice file manager and icons on the desktop +- Thunar, ROX-Filer or Nautilus for nice file manager and icons on the desktop - 'gnome-session' for session management support. Follow the instructions in 'addons/session-management.README'. It is for Gnome 2, if it doesn't work as explained but you can get it to work, please consider to contribute at least Modified: NEWS =================================================================== --- NEWS 2013-05-04 01:20:12 UTC (rev 348) +++ NEWS 2013-05-04 11:13:13 UTC (rev 349) @@ -1,3 +1,42 @@ +Version 3.1.11 +-------------- + +Time for a new release that provide bugfixes and new features. + +- De-icoification of the full-screened windows have been fixed. They + will appear now in full-screen without border or title. + +- Non wanted qjackctl and medias icons have been fixed. They should + not appear any more as we can control those programs from the + music button and menu. + +- Restrict Fullscreen to non FvwmButtons windows. It was possible to + bring the buttons in full screen, and this is not wanted. + +- Unification of the desktop geometry. All the recipes have now + the same 8 pages by 1 geometry. This fix the lost window issue + whit recipe changes. The "Clean vertival" recipe has been removed + in the process, but it was the same than Vertical anyway. + +- The Icon-Launcher is now available in all the recipe through a + new preference setting: Desktop manager -> Thunar. + This is the same setting than "None", but with icons for all + the mounted partitions. Clicking on those icons will open + Thunar at the corresponding mount point. Simple and fast. + +- Some styles order fixes. + +- Last but not least, the font preferences have been fully rewritten. + They are now under the form of a Font Selector that provide + all the old settings into one dialog. Font styles have been added, + and we can now show the selected font. The example string + can be edited. + The Font Selector is a FvwmScript with full xft support and is + much easier to use than old style Fvwm font selectors using + the core font. Xft support imply also full UTF-8 suport. + This was already the case wirh the old font preferences sytem, + but this new system is both easier to use and better. + Version 3.1.7 ------------- Modified: fvwm/components/functions/About =================================================================== --- fvwm/components/functions/About 2013-05-04 01:20:12 UTC (rev 348) +++ fvwm/components/functions/About 2013-05-04 11:13:13 UTC (rev 349) @@ -5,7 +5,7 @@ *About: Line center *About: Text "FVWM-Crystal" *About: Line center -*About: Text "$[gt.Version]: 3.1.8" +*About: Text "$[gt.Version]: 3.1.11" *About: Line center *About: Line center *About: Text "$[gt.Original author]: Maciej Delmanowski <ha...@gn...>" Modified: fvwm/components/functions/Fullscreen =================================================================== --- fvwm/components/functions/Fullscreen 2013-05-04 01:20:12 UTC (rev 348) +++ fvwm/components/functions/Fullscreen 2013-05-04 11:13:13 UTC (rev 349) @@ -44,8 +44,8 @@ # State 19 = FS (fullscreen), State 20 = visible DestroyFunc Fullscreen AddToFunc Fullscreen -+ I ThisWindow (State 19) Fullscreen-Stop -+ I TestRc (NoMatch) ThisWindow (!State 19) Fullscreen-Start ++ I ThisWindow (State 19, !FvwmButtons) Fullscreen-Stop ++ I TestRc (NoMatch) ThisWindow (!State 19, !FvwmButtons) Fullscreen-Start # fullscreen {{{2 DestroyFunc Fullscreen-Start This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |