updated news file
[wmaker-crm.git] / NEWS
blob9fc06b4aeb163d7d86b6a674d55820b5f9c8009e
2 NEWS for veteran Window Maker users
3 -----------------------------------
5 --- 0.92.0
7 GNUstep Installation Directory
8 ------------------------------
10 WPrefs is now installed in /usr/local/bin and /usr/local/share by default.
11 If you use GNUstep and want it to install in /usr/GNUstep/Applications,
12 you may specify --with-gnustepdir=/usr/GNUstep
13 If the GNUSTEP_LOCAL_ROOT environment variable is defined when configure is
14 executed, it will be used (and you don't need to use --with-gnustepdir)
16 Cached Pixmaps Directory
17 ------------------------
19 The directory where Window Maker stores the cached application pixmaps for
20 its later use has changed from ~/GNUstep/.AppInfo/WindowMaker to
21 ~/GNUstep/Library/WindowMaker/CachedPixmaps for better compatibility with
22 the GNUstep path structure.
23 Also WPrefs now stores internal data in ~/GNUstep/Library/WindowMaker/WPrefs
24 (it was ~/GNUstep/.AppInfo/WPrefs before)
26 X Input Methods support in WINGs
27 --------------------------------
29 Preliminary support for X Input Methods was added to textfield and text
30 widgets in WINGs. Input for text in other languages than English should
31 work now (except for kanji which will most likely not work, even though
32 it wasn't tested).
35 --- 0.91.1
37 To disable the panel shown during Alt-tabbing, you may put the following in
38 ~/GNUstep/Defaults/WindowMaker
40 SwitchPanelImages= None;
44 --- 0.91.0
46 Alt-Tab Window Switching
47 ------------------------
49 You can change the appearance of the panel shown during Alt-Tab window switching
50 with the SwitchPanelImages option:
52  (selected_icon_tile_image, background_image, width, height)
54 selected_icon_tile_image is the image used to highlight the currently selected
55 window icon. It must be 64x64 pixels.
57 background_image is the image used in the background of the panel. It must
58 be at least 64x80.
60 width and height are the width and size of the central part of the image.
61 When drawing the panel, the image will be split as:
62                            |W |
63                         +--+--+--+
64                         |  |  |  |
65                         +--+--+--+ -
66                         |  |  |  | H
67                         +--+--+--+ -
68                         |  |  |  |
69                         +--+--+--+
71 The 4 corner images will be copied in their original sizes and the rest will
72 be scaled to the final panel size.
74 background_image, width and height are optional. If you leave them out,
75 a gray panel will be used. If your machine is not very fast, you may want 
76 to use it.
79 --- 0.90.0
82 NetWM / EWMH Support
83 --------------------
85 Support for the EWMH standard has been added. Applications from GNOME 2.x and
86 KDE 3.x should now interoperate better with Window Maker.
88 Support for the obsolete/legacy GNOME 1.x, KDE 1.x and OpenLook(!) hints was
89 wiped out for the sake of sanity.
92 Antialiased font support
93 ------------------------
95 With the addition of Xft2 support in the WINGs library, now
96 Window Maker can display antialiased text with TrueType or any scalable fonts.
98 You can pick fonts for Window Maker in the Font configuration section of 
99 WPrefs.
101 Antialiased text is enabled by default, but can be disabled by adding
103 AntialiasedText = NO; in ~/GNUstep/Defaults/WMGLOBAL
105 This will disable antialiased text for any WINGs based application. If you
106 only want to disable them for a specific application only, like WindowMaker
107 for example, then add the same option in the applications configuration file,
108 in this case ~/GNUstep/Defaults/WindowMaker
109 For WindowMaker, this can also be achieved from the Expert panel in WPrefs.
111 Note that bitmapped fonts look much better than TrueType when antialiasing is
112 disabled.
114 Global Submenus
115 ---------------
117 Global menus allow for system wide menus that are added to every users
118 application menus. They are located in /usr/etc/WindowMaker/,
119 /usr/local/etc/WindowMaker or whatever is your sysconf directory
120 for WindowMaker. There are 2 files:
122 GlobalMenu.pre, which is added to the beginning of the menu and
123 GlobalMenu.post, which is added to the end of the menu.
125 These are to be proplist format menus, for example:
127 (("Foobar", EXEC, foobar),
128  ("Blabla", EXEC, blabla))
130 or, in case you want a submenu:
132 (("Submenu", 
133         ("Foobar", EXEC, foobar),
134         ("Blabla", EXEC, blabla)))
137 UTF-8 Support
138 -------------
140 Window Maker now uses UTF-8 internally (and thus can display UTF-8 text
141 in window titles and other places). Menus and po files must now be
142 encoded in UTF-8. If your menus contain non ASCII characters, you can convert
143 them to UTF-8 with the following command:
145 iconv -f <current-file-encoding> -t utf-8 <filename> > <filename>.utf8
147 For example:
149 iconv -f iso-8859-1 -t utf-8 menu > menu.utf
150 mv menu.utf menu
153 Icon Panel for Alt-Tabbing
154 --------------------------
156 A panel with icons for the windows that you can switch to will appear
157 when you press Alt-Tab. You can navigate through the windows with Alt-Tab
158 (Alt-Shift-Tab) or with the left/right keys once the panel is shown.
162 --- 0.80.0
164 Shading/Unshading windows using mouse wheel on their titlebar
165 -------------------------------------------------------------
167 In addition to the known methods of shading/unshading a window,  one can now
168 do this by using the mouse wheel on the window's titlebar. The mouse events
169 are interpreted via a mapping in the global WINGs configuration file,
170 WMGLOBAL, by the MouseWheelUp and MouseWheelDown directives which will do
171 shading and unshading respectfully.
173 However, to avoid unwanted triggers of shading/unshading the window, two
174 consecutive mouse wheel events in the same direction are required. The
175 trigger won't occur if the events are separated by more than a double-click's 
176 worth of time, which is technically speaking like making a double-click with
177 the button that corresponds to the mouse wheel direction.
179 Practically speaking, this means that you have to move the mouse wheel up
180 or down quickly, like when you want to quickly scroll over something big.
183 Shared application icons
184 ------------------------
186 Real application icon sharing was implemented in place of the collapse
187 appicon thing. With this applications of the same instance.class will
188 have a single shared application icon and hiding will hide all windows
189 of the aplications attached to that appicon as if there is a single
190 application. This feature is enabled by default for all applications in
191 the global WMWindowAttributes defaults domain using:
193 "*" = {SharedAppIcon = Yes;};
195 If you're not satisfied with this or want the old behaviour back you
196 can revert this (either in the global domain for all users or in your
197 personal WMWindowAttibutes domain) using SharedAppIcon = No; for "*"
198 It can also be enabled/disabled for individual applications as needed.
200 Setting this option can be done using the window's inspector panel in the
201 "Application Specific" section. You can set/unset it for all applications by
202 using the "Defaults for all windows" in the "Window Specification" section
204 Basically using this can have 2 major scenarios:
205 1. Leave it on by default, but disable it for the few specific
206    applications that do not behave well with it. (default)
207 2. Leave it off by default, and enable it for all applications for
208    which you want it enabled.
210 At this point all applications we tested work ok, some of them even
211 work better with this feature turned on: for example xmms and Corel's
212 WorkPerfect8 now only have 1 appicon (they used to have 2 without this
213 feature).
215 This feature is turned off by default for the following applications
216 because it's incompatible with them:
217 1. all GNUstep applications
218 2. applications with an application menu (wterm, Aileron, etc)
219 3. all applications with withdrawn windows only (this means all dockapps)
221 As a side note: wterm can use the shared appicon feature as long as it
222 doesn't use the appmenu (will do this by default). If you start it
223 using the appmenu (wterm -wm) it will disable the shared appicon
224 feature because apps with appmenus are incompatible with this feature.
226 If an application is a GNUstep application or if it has an appmenu, it's
227 detected automatically and the shared appicon is disabled automatically
228 without any user intervention or need to configure anything.
231 Dock/Clip stealing appicons
232 ---------------------------
234 This feature is different form the Clip's "Autoattract Icons" feature
235 as it won't attach any new icon to the dock/clip.
236 What it does, is when you start an application by other means than
237 dock/clip, like for example using the main menu or a terminal, it will
238 search the dock/clips for the presence of an appicon for that
239 application, that is not already running at that moment and will attach
240 the started application to that appicon in the dock/clip if available,
241 making it look like the dock/clip just stole the appicon for the started
242 application. There is an animation for this to offer visual feedback
243 that this happened.
247 --- 0.70.0
249 New dock option
250 ---------------
252 Copy/paste launch in dock.
253 ==========================
255 For example, put netscape %s in the Docked icon for Netscape, select an url
256 somewhere and then middle-click the icon. The command will be launched with
257 the "pasted" string.
260 Xinerama Support
261 ================
263 Supported Xinerama features:
265 - Normal maximization of windows will maximize to only one of the screens,
266 the one where the cursor pointer is.
268 - Full Maximize command in window menu
270 - Place dialogs in the middle of the head where the pointer is
272 - Try to place windows inside one head in non-manual placement modes
275 Less dependancies
276 -----------------
278 starting with 0.70.0 libPropList is no longer required to build Window
279 Maker. PropList handling code was added to WINGs being now better
280 integrated with all the rest. For more details check the Changelog and the 
281 following files:
282 ./WINGs/ChangeLog
283 ./WINGs/NEWS
284 ./WINGs/WINGs/WUtil.h
285 ./WINGs/WINGs/proplist-compat.h
289 --- 0.65.1
291 Removed FocusFollowMouse option, only SloppyFocus present now.
293 Added None option to MoveDisplay and ResizeDisplay
297 --- 0.65.0
299 Single AppIcon
300 --------------
302 Removed --single-appicon patch and replaced it with a application
303 specific collapsing option. Check inspector panel and appicon menu.
305 New options to configure the workspace mouse actions
306 ----------------------------------------------------
308 The following options were removed from the WindowMaker defaults configuration
309 file:
311 SelectWindowsMouseButton, WindowListMouseButton and ApplicationMenuMouseButton.
313 They were replaced with the following 3+1:
315 MouseLeftButtonAction, MouseMiddleButtonAction and MouseRightButtonAction plus
316 MouseWheelAction
318 In the old way because all gravitated around the workspace actions to which
319 specific mouse buttons could have been bound, it allowed one to specify in
320 the configuration file settings which would have led to weird situations
321 that also had undesirable results.
322 For example the same mouse button (for example left) could have been
323 assigned to all workspace actions: 'select windows', 'show window list menu'
324 and 'show applications menu' which of course were not only impossible to
325 accomplish while still having a properly working workspace, but they also
326 allowed one to specify some settings in the configuration file that were
327 never in fact translatable to proper workspace actions.
329 To void this kind of user interface inconsistency, the new options now
330 gravitate around the physical device (the mouse and its buttons) to which
331 specific workspace actions can be bound. This way, even if one assigns the
332 same action to all mouse buttons, that situation while gives redundant and
333 unpractical settings it will still translatable to proper workspace actions:
334 all buttons will execute the same action, but a button will execute only one
335 action at a time.
337 The new options take the following values:
338 all Mouse...ButtonAction can have one of the following values:
340 None, SelectWindows, OpenApplicationsMenu or OpenWindowListMenu
342 MouseWheelAction can be one of None or SwitchWorkspaces
344 If you had the default actions bound to mouse buttons before, then it will
345 work for you without any intervention in the configuration files.
346 Else you need to use WPrefs.app to bind the actions to the mouse buttons
347 again to your old settings. Also if you want to change the mouse wheel
348 behavior regarding workspaces you can now (use WPrefs.app to do this).
350 Client supplied icons
351 ---------------------
353 Window Maker saves the client supplied icons in 
354 ~/GNUstep/Library/WindowMaker/CachedPixmaps in XPM format for later use 
355 when the app is no longer running (to have the image to display for docked 
356 icons for example).
358 Until recently the XPM images saved by Window Maker were incorrect, but a
359 recent fix in the code to save XPM's fixed them. But with this fix, all
360 previously saved XPM's in that directory are no longer readable (they give
361 wrong images on screen or fail to load).
363 To avoid the need for the user to fix this by hand editing WMWindowAttributes 
364 and removing all references to icons in ~/GNUstep/Library/WindowMaker/CachedPixmaps 
365 which can be annoying, new code was added to Window Maker to permit the 
366 regeneration of images in ~/GNUstep/Library/WindowMaker/CachedPixmaps if they are missing.
368 With this addition, all you need to do to fix your old broken images, is to
369 delete all *.xpm files from ~/GNUstep/Library/WindowMaker/CachedPixmaps. Next time the
370 application that is supplying an icon image will start the icon will be
371 recreated if missing, but this time it will be saved with the new XPM save
372 code which produces good XPM images.
373 All the rest of the process is transparent to the user.
375 Hermes library support
376 ----------------------
378 If configure finds hermes library (an optimized pixel format conversion
379 library) installed it will use it to do the pixel format conversion in
380 the wraster library for some cases (TrueColor visuals without dithering).
381 Currently the hermes routines cannot convert to an indexed destination,
382 so we can't use hermes for PseudoColor, GrayScale and StaticGray visuals.
383 Also hermes only does dithering for just 2 combinations of source/destination
384 bits/masks none of them useful to out needs so for dithering we still
385 use out routines.
387 The Hermes library is completely optional, you can build Window Maker
388 without having it, it just speeds up the things a little for some
389 situations.
391 hermes library is available here: http://www.clanlib.org/hermes/
394 --- 0.64.0
396 No Polling of Configuration Files
397 ---------------------------------
399 Running Window Maker with one of -nopolling or --no-polling command line
400 options will make it not to poll every 3 seconds for changes in its
401 configuration files (good for laptops to let them spin disks down when idle).
403 Note:
404 For the ones used with Jim Knoble's 'no polling' patch, this is the same,
405 except that the need to #define ENABLE_NO_POLLING in wconfig.h was removed
406 and the behaviour is always available if you use the command line option.
409 --- 0.63.0
412 Interwoven Gradient
413 -------------------
415 interwoven gradients rip^Winspired on blackbox. Will render a texture that
416 interweaves 2 different ones.
418 (igradient, from1, to1, thickness1, from2, to2, thickness2)
420 Will render a interwoven texture with the 2 specified gradients,
421 with each section having the specified thickness.
423 wmagnify
424 --------
426 The wmagnify utility will magnify the area on teh screen where
427 your mouse pointer is located, updating it in real-time.
429 tip: maximize it horizontally, make it Omnipresent and Always at Bottom.
430 Then leave it in the bottom of the screen.
432 workspace border
433 ----------------
435 2 options (WorkspaceBorder and WorkspaceBorderSize) were added to allow one to
436 set a small (0..5 pixels) border for the workspace. This border will not be
437 covered by windows when maximizing, allowing one to easily access the clip
438 or map a menu using the mouse in the border area, even when there are
439 windows maximized in both horizontal and vertical directions.
440 WorkspaceBorder can be one of (None, LeftRight, TopBottom, AllDirections)
441 while WorkspaceBorderSize is the size in pixles of the border not to be
442 covered by windows when maximizing (usually a small amount 0..5 pixles).
444 Both options can be set using WPrefs.app in the "Miscelaneous Ergonomic
445 Preferences" section. WPrefs will always limit WorkspaceBorderSize in the
446 (0..5) range.
448 Note that if "full screen maximization" option is set for a window, that
449 window will ignore this border area, maximizing to full screen.
452 --- 0.62.0
455 Optimizations!!
456 ---------------
458 Code for converting wrlib images into X Pixmaps was optimized in many ways,
459 both in the original C code and in assembly for Pentium(tm) processors (with
460 and without MMX(tm)). Depending on the bit depth/color mode and CPU model,
461 performance increases can go up to 150%
464 Weendoze Window Cycling (alt-tab)
465 ---------------------------------
467 Window cycling was changed to weendoze style. 
470 NoBorder Window Attribute
471 --------------------------
473 The NoBorder window attribute (to be put in
474 ~/GNUstep/Defaults/WindowAttributes) was added and will remove the
475 1 pixel border around windows.
478 Removed "Keep Attracted Icons" option from Clip's menu
479 ------------------------------------------------------
481 Since this option brought more confusion than usefulness among users, and
482 since it was usable only in a very limited context, being able to fill up
483 the Clip very easily, it was removed.
484 An alternative way of gaining the same functionality is to use the "Keep icon"
485 entry in the Clip's main menu. Or select multiple icons before calling that
486 entry, to make it apply to more than one icon.
488 Note: "Keep icon", as the obsoleted "Keep Attracted Icons" had nothing to do
489       with holding icons in Clip, while the application is running. Once they
490       are attracted, they are kept until the application close. Using
491       "Keep icon", will only assure that the icon will be kept, even after the
492       application is closed.
494 Please don't ask for this option back. It's error prone, and very unintuitive.
495 Considering it's very restrictive usability, and it's very ambiguous topic, it
496 does not need a special entry in the Clip's menu, taking in count that there
497 are already better alternative ways of gaining the same functionality.
500 Removed DisplayFont Option
501 ---------------------------
503 The font for the geometry size will be controlled by the default
504 WINGs font (SystemFont in WMGLOBAL) now.
507 Others
508 ------
510 - added DONT_SCALE_ICONS compile time option
511 - added --dont-restore cmd line option. When passed to wmaker, it
512   wont restore the state saved previously.
514 --- 0.61.1
516 New libPropList
517 ---------------
519 new libPropList-0.9.1 is REQUIRED to build Window Maker 0.61.1.
520 go grab it and install it first.
523 --- 0.60.1
526 Window Edge Attraction
527 ----------------------
529 Window edge attraction was now added.
531 Attraction = YES/NO;
533 will enable/disable gravity to edge's boder.
534 The strength of gravity can be controled by modify `EdgeResistance' value
535 in WindowMaker configuration file.
538 Titlebar Draw String Plugin
539 ---------------------------
541 FTitleColor, UTitleColor, PTitleColor, MenuTitleColor can be assigend with
542 drawstring plugin instead of plain color. For example:
544     FTitleColor = (
545         function,
546         libwmfun.so,
547         drawPlainString,
548         gold,
549         black,
550         gray49
551     );
553 will invoke function drawplainstring from libwmfun.so and pass 3 colors for
554 arguments. To code new plugin, please see plugin.h for more informations.
557 --- 0.60.0
560 User Menu
561 ---------
563 The user menu is now a compile time option disabled by default. 
564 Supply --enable-usermenu to configure to enable it.
567 root menu INCOMPATIBLE changes
568 ------------------------------
570 EXEC <program> will execute the named program
572 SHEXEC <command> will execute the shell command.
574 If you want to execute something like blabla > /dev/null, then use SHEXEC
576 Dont forget to update your menus.
579 New Option For setstyle
580 -----------------------
582 The --ignore flag will tell setstyle to not change the option that is
583 specified, when modifying the Window Maker configurations. For example:
585 setstyle --ignore MenuStyle sometheme.themed will cause the MenuStyle
586 option to not be changed.
588 setstyle --ignore FTitleBack --ignore UTitleBack --ignore PTitleBack bla.themed
589 will load the theme, but keep the titlebar background related options as
590 before.
593 MultiByte Text Support Changes
594 ------------------------------
596 The --enable-kanji configure option is not needed anymore and was removed.
597 To enable support for multibyte text, you must:
598 - set the LANG environment variable to the appropriate value
599 - change the font configurations to contain font sets in the appropriate
600   encodings in both ~/G/D/WindowMaker and ~/G/D/WMGLOBAL (for WPrefs)
601 - set the MultiByteText option to YES in both of the above files
604 New Options
605 -----------
607 WorkspaceNameDisplayPosition =
608 none/center/top/bottom/topleft/topright/bottomleft/bottomright
611 SmoothWorkspaceBack = YES/NO
613 will enable smoothing of scaled workspace background images.
617 Application User Menu Path Changes
618 ----------------------------------
620 Default configuration for user specific menus installed in
621 /usr/local/share/WindowMaker/UserMenus or $(datadir)/WindowMaker/UserMenus
622 and ~/GNUstep/Library/WindowMaker/UserMenus.
625 Omnipresent icons in Clip
626 -------------------------
628 Added ability to set icons docked in Clip to be omnipresent on all workspaces.
629 To set/reset this flag use the clip menu.
630 The Clip menu changed in the following way:
631  - if you bring up the menu from the Clip's main icon, it will contain as
632    before the "Rename Workspace" entry in the second position.
633  - however, if you bring up the menu from any other icon in clip, the
634    "Rename Workspace" menu entry is replaced by "Omnipresent" or
635    "Toggle Omnipresent" depending on the context.
637 This entry will work in the following way, depending on the context:
639 1. If there is no icon selected in the clip, then the menu will contain the
640    entry named "Omnipresent" which will be checked accordingly to the current
641    state of the icon (omnipresent or not), and will let you change the
642    omnipresent state of the icon you brought the menu from.
643 2. If one or more icons are already selected when the Clip menu is called, the
644    entry will be named "Toggle Omnipresent" and will apply to all selected
645    icons trying to toggle their omnipresent state. The icons which will be
646    succesfully changed to their new state as requested, will be unselected,
647    while the ones that will fail for some reason to gain their new state,
648    will remain selected.
650 In both cases if there is no success in setting what user requested a panel
651 will inform user of the failure.
652 (Note: trying to set an icon to not-omnipresent will never fail. Failures can
653        be met only when trying to set omnipresent for an icon).
655 The icons set to omnipresent will be marked with a triangle in the upper left
656 corner, having the color of the IconTitleColor.
658 An icon can be set to omnipresent, only if its position is free in all the
659 workspaces, else you will be informed of the problem and asked to fix it first.
660 Also when dragging an omnipresent icon around in Clip, all the icons docked in
661 all the workspaces are shown while the dragging is done, to let one easily see
662 where are free slots in all workspaces.
664 For advanced users, there is also a shortcut to set/reset the omnipresent
665 state of an icon: just use "Shift+MiddleButton" (button2) on the icon you want
666 to change.
667 In this case only the mark in the upper left corner will appear in case of
668 success, or nothing will happen if icon cannot be made omnipresent (advanced
669 users are expected to know why the icon failed to be made omnipresent, so they
670 don't need a panel to explain them why ;) ).
672 Now before you load your gun to start a flame war because this is against your
673 principles you love so much, please sit down and think that this is a feature,
674 which, if you don't use, the old behaviour of the Clip is totally preserved.
675 It just adds some extra capabilities to the Clip for people who think that this
676 is useful.
679 XDND drop on dock support
680 -------------------------
682 Support for XDE on dock is now replaced by XDND.
683 To enable, edit src/wconfig.h
687 --- 0.53.0
689 New Options
690 -----------
692 ** MenuStyle
694 MenuStyle=<style>; will change the menu texture style.
696 <style> can be:
697 normal (default): for the traditional one texture per item, with bevels in 
698 each
700 singleTexture: for a single texture that spans the whole menu, with bevels
701 in each item
703 flat: singleTexture without the bevels
706 ** ResizebarBack
708 ResizebarBack=<texture>;
710 where <texture> is any of the textures you normally use in titlebars and
711 other places.
713 If the style file/theme does not contain a ResizebarBack option, setstyle
714 will automatically hack it so that wmaker will make the theme work like 
715 before.
718 New crash dialog panel
719 ----------------------
721 From now on, whenever a fatal situation appears, Window Maker will display a
722 dialog panel to the user and let him choose what to do.
723 The options are:
724 - Abort and leave a core file (usefull for debugging and getting backtraces)
725 - Restart Window Maker (default behaviour)
726 - Start alternate window manager (the one defined as fallback, or if not
727   possible fvwm or twm in this order).
729 If it will not be able to restart or start the alternate window manager, it
730 will abort and leave the core file.
733 Application User Menu
734 ---------------------
736 Applications with an appicon can have a user defined menu.
738 This menu will emulate keyboard events, and will be sent to the applications'
739 window(s), thus the application must accept key combinations (CTRL+N for
740 instance).
742 To enable this feature, #define USER_MENU in src/wconfig.h and place menu
743 files in ~/GNUstep/Defaults/UserMenus (/usr/local/etc/WindowMaker/UserMenus
744 globally).
746 The user menu is in PropList format and the filename is in:
747 <instance name>.<class name>.menu or application's main window.
748 (Example: the menu for xcalc would be - xcalc.XCalc.menu)
750 Example user menu syntax:
753   "Calculator",
754   ("Put 1", SHORTCUT, "2"),
755   ("Functions",
756     ("Put 2", SHORTCUT, "2"),
757     ("Put 3,4 and 5", SHORTCUT, (3,4,5))
758   ),
759   ("Exit", SHORTCUT, "Control+q")
764 --- 0.52.0
767 Appearance Editing in WPrefs
768 ----------------------------
770 Added Appearance/Texture editing capability in WPrefs. Workspace background
771 selection is not yet finished.
774 Themes
775 ------
777 Removed all themes from the source tree, and moved them in a separate package.
778 You can download the new package from the same place as this package:
779 ftp://ftp.windowmaker.org/pub/beta/srcs/
780 Look after WindowMaker-extra-<version-number>.tar.gz
781 Also WindowMaker-extra pack include the old WindowMaker-data.tar.gz which only
782 contained icons.
783 Look for the greatest version number when you download this package.
786 get-wraster-flags script change
787 -------------------------------
789 The name of the options passed to get-wraster-flags changed, to allow a better
790 name compatibility with the naming conventions used by other software.
791 The name change was as follows:
792 --lflags was changed in --ldflags
793 To allow backward compatibility, with already written software, the old
794 --lflags option is still recognized, but you are encouraged to move the the
795 new --ldflags.
799 --- 0.51.2
802 New Themes
803 ----------
805 Added 2 new cool themes (actually I added in 0.51.1, but forgot
806 to put it here...) from largo (LeetWM) and BadlandZ (STEP2000).
809 Full Screen Maximization
810 ------------------------
812 The FullMaximize window attribute will allow the window to
813 be maximized to the full size of the screen (ignoring anything
814 like titlebar, resizebar, dock, panels etc). It should be usefull
815 for programs that must use the whole screen, like games or things 
816 like presentation programs.
819 --- 0.51.1
821 KDE Application Menu script
822 ---------------------------
824 wkdemenu.pl is a converter from KDE application menu structures to wmaker 
825 menu that can be used as a piped menu. Look wkdemenu.sh for how to use it.
828 Window Edge Resistance
829 ----------------------
831 Window edge resistance was now added. No, feature freeze hasn't been
832 removed. Its just part of the edge resistance rewrite ;)
835 New Theme
836 ---------
838 Added SteelBlueSilk theme
840 Installation Path Changes
841 -------------------------
843 Default configuration data installed in /usr/local/etc/WindowMaker
844 or $(sysconfdir)/WindowMaker
847 --- 0.51.0
849 Window Maker has become a GNU program (part of the GNU Project).
851 Title text drop shadow
852 ----------------------
854 drop shadow option added for titlebar text. This is a compile time 
855 option which needs to be defined in src/wconfig.h after you run
856 configure and before you run make.
858 New options and syntax for your WindowMaker domain file are:
860   Shadow = yes/no;
861   FShadowColor = <color>;  
862   PShadowColor = <color>;
863   UShadowColor = <color>;
864   MShadowColor = <color>;
866 The shadow option is dynamic (no need for a restart).
867 MShadowColor is for the menu title text.
869 libPropList
870 -----------
872 WARNING!!! libPropList was removed from the Window Maker distribution
873 and is being distributed separately. If you dont have it installed yet,
874 get it from ftp.windowmaker.org/pub/libs and install before building
875 Window Maker.
878 signal handling change
879 ----------------------
880 SIGHUP will exit wmaker instead of restarting it!!! This is because
881 GNOME expects the window manager to exit instead of restarting...
882 Complaints should go to gnome people. SIGUSR1 will restart wmaker now.
885 script change
886 -------------
887 WINGs-flags was removed, and replaced by get-wraster-flags.
888 Please remove WINGs-flags from your system, since it was obsoloted by
889 get-wraster-flags.
890 Continuing to use WINGs-flags can lead to hazardous effects, since is no
891 longer updated.
894 docklib
895 -------
897 docklib is a little library for making dock applets. It's in the
898 docklib-0.0.tar.gz file. Unpack it and read the README file there.
901 Option Changes
902 --------------
904 Removed OnTopTransients option
906 Added OpenTransientOnOwnerWorkspace
909 Olwm Hint Support
910 -----------------
912 OPEN LOOK(tm)/olwm hints support was added.
914 Read the appropriate section in the README file.
918 --- 0.50.1
920 New option for WorkspaceBack. mpixmap is the same as spixmap, but
921 it will scale the pixmap by keeping the aspect ratio (maximize or maxpect).
922 The option only works for workspace backgrounds.
924 Also added IGNORE_PPOSITION compile time flag, which is equivalent
925 to NoPPosition from fvwm. 
930 --- 0.50.0
933 KDE and GNOME
934 -------------
936 Added full support for GNOME and KWM hints. 
937 Read the INSTALL file to see how enable them.
939 Everything in the so called GNOME window manager bla bla bla pseudo-spec is
940 implemented.
942 As for KDE stuff, it implements 90% of everything kwm does, adds some
943 Window Maker specific extensions to it and still uses half of the memory
944 kwm does, which should be enough to let you dump kwm ;) For details on what
945 exactly is implemented, see comments in src/kwm.c Read the README.KDE file 
946 for more information.
949 WARNING: Some KDE hints are badly designed, so doing things like using
950 kpanel's desktop switcher/pager and Window Maker's internal workspace
951 management functions to create, destroy and rename workspaces at the same 
952 time might cause unknown effects. To be on the safe side, only
953 use either of them to manage workspaces. Switching workspaces is hopefully,
954 safe, so you can switch workspaces from wherever you want.
958 Workspace Specific Background Images
959 ------------------------------------
961 Use the WorkspaceSpecificBack to set background images for specific
962 workspaces. The WorkspaceBack is used as the default background image.
964 Example:
966 WorkspaceSpecificBack = ((solid, red), (cpixmap, ship.jpg, gray), (), 
967                                 (dgradient, red, blue))
969 This will set the background image of workspace 1 to (solid, 0),
970 2 to ship.jpg and 4 to a gradient. Workspace 3 and other workspaces
971 will have the image defined by WorkspaceBack.
973 Note that this uses quite some memory...
976 setstyle/getstyle
977 -----------------
979 setstyle now accepts the -nofonts flag, which will load the style
980 file ignoring all font related options.
982 Example:
984 setstyle -nofonts Blabla.style
987 getstyle can be used to create theme packs. See the usage in the
988 WindowMaker/README.themes file.
992 New Texture Type
993 ----------------
995 Textured gradients will tile a texture pixmap and combine it with a gradient, 
996 using an arbitrary opaqueness. 
998 Syntax is (thgradient, <file>, <opaqueness>, <color1>, <color2>)
999           (tvgradient, <file>, <opaqueness>, <color1>, <color2>)
1000           (tdgradient, <file>, <opaqueness>, <color1>, <color2>)
1001 where:
1002 <color1> and <color2> are the colors for the gradient,
1003 <file> is the texture file and
1004 <opaqueness> is the opaqueness to merge the texture witht the gradient,
1005 ranging from 0 to 255.
1007 Example:
1009 (thgradient, "BlueImage.jpeg", 120, white, black)
1011 The BlackTexture style and Checker theme are examples.
1013 Hints:
1015 You can use any type of pixmap file for this, but small (like 64x32)
1016 grayscale pixmap files should get the best results (fast and low memory
1017 usage). You can use color pixmaps, but it is harder to get the desired effect
1018 with them.
1020 Be warned that this texture type is the slowest.
1024 New Options
1025 -----------
1027 IconTitleBack and IconTitleColor control the color of the
1028 miniwindow title. Both of them are colors.
1030 Example:
1031 IconTitleColor=white;
1032 IconTitleBack=black;
1035 Since this introduces an incompatibility in themes and getting flamed by the
1036 themes ppl isn't the most pleasant thing ("Whaddafuk you're thinking!? You
1037 just broke 500 themes!!!" ;) the setstyle command was hacked so that it will
1038 make old themes work as before, by trying to automatically set the above
1039 options. Note that in some cases it will not have exactly the same results as
1040 before.
1043 StartMaximized window attribute. Will maximize the window when it
1044 is mapped.
1047 AutoRaiseLower option for the Clip. This allows automatic Raise/Lower of the
1048 Clip icons when the mouse pointer enter/leave the Clip. To avoid unwanted
1049 raising/lowering there is a time threshold before raising/lowering.
1050 The thresholds can be changed in wconfig.h by changing one or both of
1051 AUTO_LOWER_DELAY and AUTO_RAISE_DELAY (expressed in miliseconds).
1052 For example if you set AUTO_RAISE_DELAY to 0, then the Clip will be raised as
1053 soon as the mouse pointer enters it's area. Setting AUTO_RAISE_DELAY to a very
1054 big value, will make the Clip to practically do not auto raise unless clicked,
1055 but to be automatically lowered after AUTO_LOWER_DELAY (ms) when leaved.
1058 New ThemePack Format
1059 --------------------
1061 Starting with this version, a new format of themes is being supported.
1062 Before you open pine and start composing your flame, rest assured that
1063 the old format is still supported. The new format is documented
1064 in the WindowMaker/README.themes file.
1067 Root Menu 
1068 ---------
1070 The -noext option for OPEN_MENU will strip whatever is after the last .
1071 in file names that appear on the opened directory. So,
1073 OPEN_MENU ~/bg WITH xv -root -quit
1075 will create a menu with all the images in ~/bg without the extension.
1079 --- 0.20.3
1082 Icon (miniwindow) stacking
1083 --------------------------
1085 If you want miniwindows to reside under normal windows, edit
1086 wconfig.h and change WNormalLevel (just grep for it) to
1087 WDesktopLevel
1090 5 Button Mouse
1091 --------------
1093 If you have a 5 button mouse and want to give some utility for
1094 the extra 2 buttons, edit the appropriate line in src/wconfig.h
1095 Clicking Button4 in the root window will switch you to the previous 
1096 workspace and Button5 will do that for the next.
1099 Option Changes
1100 --------------
1102 put NoWindowOverDock back
1104 KeepOnBottom window attribute
1107 -static command line option
1108 ---------------------------
1110 wmaker -static will start Window Maker in static mode. This will
1111 prevent wmaker from checking or making any configuration changes.
1112 That makes it possible to run wmaker before running wmaker.inst
1115 Hysteresis for menu item selection
1116 ----------------------------------
1118 Hopefully it's intelligent enough, so you won't notice it.
1120 In case you want to know what's it, it's equivalent to that
1121 (insanely long) 2 second delay present in that Windoze95 menu, 
1122 but more usefull than annoying (I hope :). To see it, do the following
1123 with your current wmaker version and later with 0.20.3:
1125 - open the apps menu and stick it
1126 - click in the item for the "Workspaces" submenu and hold
1127 - drag the mouse to the 4th or bigger entry (like "Workspace 4") in a
1128 straight line, trying to select the target item before the submenu
1129 is unmapped when you dragged over other items in the main menu
1133 Window Shortcuts
1134 ----------------
1136 Window shortcuts are shortcuts to arbitrary windows. You can make up to 4
1137 shortcuts. To assign a previously bound shortcut to a window use the "Select
1138 Shortcut" submenu in the window commands menu. If the shortcut is not yet
1139 assigned for any window, you can hit the shortcut to assign it to the active
1140 window. The shortcut will do the same as clicking in an entry in the window
1141 list menu. The keys for the shortcuts are defined in the ~/G/D/WindowMaker
1142 file or in WPrefs.app
1144 Option names are:
1146 WindowShortcut1Key through WindowShortcut4Key
1149 --- 0.20.2
1152 The name of WindowMaker was changed to Window Maker.
1154 Window creation animation disabled by default.
1156 xdaliclock -shape
1157 -----------------
1159 If you use it edit src/wconfig.h and #define OPTIMIZE_SHAPE or disable the
1160 titlebar and resizebar for the window. OPTIMIZE_SHAPE will remove the
1161 flickering for xdaliclock and other programs that change their shapes often,
1162 but will increase network traffic considerably. So, if you use xdaliclock
1163 from a remote machine it can get slow.
1166 Applications Menu
1167 -----------------
1169 The applications menu will now use the shell in the SHELL environment
1170 variable to execute EXEC menu commands. If it is unset (I think it's always
1171 automatically set by the shell program) it will use /bin/sh
1174 Extra fancy icon kaboom :)
1175 --------------------------
1177 Edit src/wconfig.h and #define ICON_KABOOM_EXTRA to get
1178 more effects for the icon undocking animation.
1180 Options for superfluous stuff are even more superfluous, so this
1181 will not become runtime.
1184 XDE drag and drop support
1185 -------------------------
1187 Support for XDE drag and drop was added (by "]d" <id@maliwan.org>).
1188 To enable, edit src/wconfig.h
1189 The support works with gtk 1.1.2
1192 libPropList
1193 -----------
1195 libPropList will now be built automatically by wmaker. Wich means
1196 the (simplified) building process is now:
1198 ./configure
1199 make
1200 make install
1202 instead of:
1204 tar xzf libPropList.tar.gz
1205 (cd libPropList; make)
1206 make
1207 make install
1209 You also don't need to worry about GNOME libPropList incompatibilities
1210 anymore. 
1213 Bug with focus lost in sloppy focus fixed
1214 -----------------------------------------
1216 The bug only occurs in sloppy or auto focus modes, with AutoFocus disabled
1217 and Superfluous enabled. There is no easy/clean way to fix this, so Window
1218 Maker will disable the animation of window creation if the focus mode is
1219 either sloppy or auto AND AutoFocus=NO.
1221 If you want the animation, enable AutoFocus or use manual focus mode
1222 (prefered). 
1225 The NoWindowUnderDock option was removed
1226 ----------------------------------------
1227 To obtain the same result, use the "Keep Dock On Top" option in the dock menu.
1230 Persistent Program Suplied Icons
1231 --------------------------------
1233 Application supplied icons are now stored, so that the dock will keep
1234 showing them after the app is exited. The icons are stored at
1235 ~/GNUstep/Library/WindowMaker/CachedPixmaps
1238 Sound support
1239 -------------
1241 Sound support is now on by default. Even if you don't use sound the overhead
1242 is very small, and has no impact on performance. If you still want to
1243 optimize it and remove a few hundred of bytes, then use --disable-sound or
1244 --enable-sound=no options when you configure Window Maker.
1247 --- 0.20.0
1249   
1250 Multihead support. wmaker will now manage all screens that are attached to the
1251 display. 
1252 ------------------------------------------------------------------------------
1253   
1255 It does so from a single process (instead of spawning a new process for each
1256 screen, like fvwm does). This keeps memory usage a lot lower than fvwm.
1258 State files have a suffix .n, where n is the number of the screen.
1260 Since I don't have a real multiheaded machine, it probably has bugs.
1262 Superfluous
1263 -----------
1265 Yet another useless superfluous animation. Find out what exactly it is
1266 by yourself :)
1269 exitscript
1270 ----------
1272 ~/G/L/W/exitscript will be called automatically when wmaker is exited.
1275 New runtime options
1276 -------------------
1278 1. Miniaturization animation is now selectable by a runtime option
1279 Add a line with
1281 IconificationStyle = <style>;
1283 to your WindowMaker configuration file.
1284 <style> can be one of: Zoom, Twist, Flip or None
1285 Case doesn't matter, and default is Zoom.
1288 2. Edge resistance.
1289 This can be controlled by setting:
1291 EdgeResistance = xxx;
1293 in your WindowMaker configuration file.
1294 xxx is an integer greater than 0 and represents the number of pixels of edge
1295 resistance. Setting it to 0 (default) will disable this feature.
1297 New theme
1298 ---------
1300 A new theme named Night, is available in this distribution.
1304 --- 0.19.3
1306 GIF support was added. You will need libgif 2.2 to use it.
1308 cpixmap added. Syntax is the same as tpixmap or spixmap
1311 --- 0.19.2
1313 getstyle will include IconBack info in Style files.
1315 --- 0.19.0
1317 libPropList was updated. If you have it installed, you must upgrade or
1318 WPrefs will crash because of bugs in libPropList.
1320 New options
1321 -----------
1323 Balloons!
1324 ---------
1326 WindowTitleBalloons = YES;
1327 will enable balloons for window titles that are not fully visible.
1329 MiniwindowTitleBalloons = YES;
1330 will enable balloons for miniwindow titles.
1332 AppIconBalloons = YES;
1333 for application icons (docked or not)
1336 IconPosition
1337 ------------
1339 IconPosition (the position of the icons) is specified as:
1341 IconPosition = c1c2c3;
1343 where:
1345 c1 can be t or b (meaning top or bottom)
1346 c2 can be l or r (meaning left or right)
1347 c3 can be v or h (meaning vertical or horizontal)
1349 case is insensitive.
1351 For example, 
1352 IconPosition = blh;
1354 is the old iconPosition position.
1356 IconPosition = trv;
1358 will place the icons over the Dock.
1360 New window attribute
1361 --------------------
1363 EmulateAppIcon = YES; will make the window have an application icon.
1364 Only use this option for fully specified windows (like rxvt.Rxvt).
1365 NEVER use in generic window specifications (like * or rxvt).
1366 You must restart the application for the attribute to take effect.
1369 WPrefs.app
1370 ----------
1372 Read WPrefs/README
1375 --- 0.18.1
1377 Boolean balues have changed!!! YES, Y and any non-zero integer will
1378 mean TRUE and anything else (including True) will mean FALSE. This
1379 is to conform to the OpenStep values used for booleans and
1380 not cause headaches later, when GNUstep apps also starts using
1381 defaults and users will try using True wich won't get recognized.
1384 --- 0.18.0
1386 Clip
1387 ----
1389 Clip button layout was changed. IT IS TEMPORARY AND THE DEFINITIVE LOOK
1390 WILL BE DIFFERENT!!!
1393 libPropList
1394 -----------
1396 More bugs were fixed in it. Upgrade the library if you have an older version
1397 installed, with the one included.
1400 Property list menus
1401 -------------------
1403 Format for property list menus has changed! The redundant array for
1404 submenus was removed, so a menu that looked like:
1406 ( Applications,
1407   ("Xterm", EXEC, "xterm"),
1408   ( 
1409     (Paint,
1410         ("Gimp", EXEC, "gimp"),
1411         ("XV", EXEC, "xv")
1412     )
1413   )
1416 must be changed to:
1418 ( Applications,
1419   ("Xterm", EXEC, "xterm"),
1420   (Paint,
1421         ("Gimp", EXEC, "gimp"),
1422         ("XV", EXEC, "xv")
1423   )
1428 Misc
1429 ----
1431 NUMLOCK_HACK is back. This time it works and is enabled by default.
1432 If you think you don't need it and promise me that you won't send 
1433 "bug" reports saying that shortcuts stop working after a while, you can
1434 disable it ;) It will save some memory and CPU.
1437 Configuration
1438 -------------
1440 Removed the SwapMenuButton option and added 3 finer grained options:
1442 SelectWindowsMouseButton
1443 WindowListMouseButton
1444 ApplicationMenuMouseButton
1446 Values that can be used are Left, Middle, Right and Button1 through Button5
1447 Left is equivalent to Button1, Middle to Button2 and Right to Button3
1450 Removed the WorkspaceChangeDelay option and corresponding action.
1451 Removed AClipColor and IClipColor
1454 Added the SelectKey back
1457 Changed default binding of Window commands menu from F10 to Control+Escape
1459 --- 0.17.4
1461 Misc
1462 -----
1464 libPropList has changed! Upgrade it before compiling wmaker.
1466 Hopefully the bugs that caused wmaker to crash if an error is found
1467 in the config files is fixed. If you do crash wmaker with a bad
1468 file, please try to find out the smallest possible portion of the file
1469 that still crashes wmaker and send it to me.
1472 New Options
1473 -----------
1475 PixmapPath was split to PixmapPath and IconPath. PixmapPath is the path
1476 for the pixmaps used as textures and IconPath is for the icons. 
1477 Don't forget to add IconPath to your current configuration file.
1479 There's also a new library in ~/GNUstep/Library/Icons. You should place
1480 your icons there, since icons are not a WindowMaker specific resource.
1483 DontConfirmKill=YES; will disable the confirmation panel for Kill
1486 --- 0.17.3
1488 Interface Changes
1489 -----------------
1491 Unhide Here in the appicon menu was changed to be the first entry.
1492 This way you can unhide the appicon with a single click without
1493 even moving the pointer.
1496 Clip Commands
1497 -------------
1499 The collect icons commands was renamed to attract icons and
1500 the attract icons options was renamed to Auto attract icons.
1502 The Remove Selected Icons was renamed to Remove Icon(s). It will
1503 act as before if some icon is selected and will remove the clicked
1504 icon (without confirmation) if it is not.
1506 Added a Keep Icon(s) command that will keep the selected icons if
1507 any is selected and the current one if none.
1509 The Move To command was renamed to Move Icon(s) To.
1512 --- 0.17.0
1514 If you have libPropList installed, you might want to reinstall it,
1515 replacing with the included libPropList. It has a small bug fix.
1517 Misc. Changes
1518 -------------
1520 Removed --with-gnome and made MWM_HINTS defined by default.
1521 This means that "GNOME support" will work with no additional
1522 flags passed to configure. 
1524 Added support for KDE, by adding a DisableWorkspaceMouseActions option.
1525 Set it to YES and run krootwm to be able to use everything in kfm.
1528 Shortcuts for Root Menu
1529 -----------------------
1531 There is now a new SHORTCUT optional keyword for the menus.
1532 For example, you can bind Control-F1 to xterm with:
1534 "XTerm" SHORTCUT Control+F1 EXEC xterm
1536 or F2 to ARRANGE_ICONS with:
1538 "Arrange Icons" SHORTCUT F2 ARRANGE_ICONS
1541 All commands allowed in the menu file accept the keyword, except for
1542 MENU and OPEN_MENU
1545 Interface Changes
1546 -----------------
1548 ** Configuration of docked applications is now done in a panel instead of
1549 in the menu. 
1551 ** Added a command menu for application icons
1553 ** Shift double-click on the application icon will unhide the app
1554 in the current workspace.
1557 Option Changes
1558 --------------
1560 NotMiniaturizable option changed to NoMiniaturizeButton
1561 NotClosable option changed to NoCloseButton
1564 Speed options values are now UltraFast, Fast, Medium, Slow or UltraSlow
1565                                               ^^^^^^
1567 Removed the Select keyboard binding. You can access it in the window
1568 commands menu.
1570 Removed the ClipMaxIcons option and made it a compile time option.
1572 Removed the ConstrainWindowSize option
1574 Renamed NoSound to DisableSound
1576 Renamed NoAutowrap to DontLinkWorkspaces
1578 Renamed NoDithering to DisableDithering
1580 Renamed NoAnimations to DisableAnimations
1582 Removed the LeftHanded option and added a SwapMenuButton option.
1583 SwapMenuButton will make the rubberband selection in the root window
1584 be bound to the right button and the root menu to the left button.
1587 New way to display temporary icons
1588 ----------------------------------
1590 The icons that are attracted by Clip, but will not be kept after the
1591 application close, are now using a different color for shading, unlike previous
1592 version that always used white. This will improve look for very different color
1593 combinations, and allow the user to control the look of the shaded icon.
1594 The color used for shading the icons is computed as follows:
1596 First a color is computed depending on the IconBack type:
1597  - for solid the color is the solid color itself.
1598  - for simple gradients the color is (from_color + to_color)/2.
1599  - for multiple gradients, the color is the first color in list.
1600  - for pixmaps, the color is the solid color specified for that pixmap.
1602 Then the color is made lighter by multiplying each red/green/blue filed with
1603 1.7 and limiting each field to 0xff in case they exceed this value.
1604 Then this new color will be used by superposing it with the icon we want to
1605 shade, using a proper alpha value.
1607 To control the color for shading is simple:
1609 - In case of multi gradients you just need to put the first color, as the color
1610 you like. WindowMaker do not use the first color in the list to directly build
1611 the gradient, but only when it needs a solid color for something (like in this
1612 case).
1614 - For pixmaps, put the needed color as the solid color the syntax for pixmaps
1615 require. This color is also not used when displaying normal icons, just when
1616 solid colors are needed (like this case).
1618 - For solid color, or simple gradients, in case the color it uses after
1619 computing is not good enough, you can always convert the solid or simple
1620 gradient to a multi gradient with the same look, and use that one. In this
1621 case is simple, just put the needed color as first color in list.
1623 Please note that this will not slow down WindowMaker, because the IconBack is
1624 read only once at startup, and then only if it is changed. After reading it WM
1625 will construct the image of the tile, and use the image instead of recomputing
1626 the gradient every time.
1628 Here are 2 examples of converting solid or simple gradient to a same looking
1629 multi gradient:
1631 IconBack = (solid, Blue);
1632 will become
1633 IconBack = (mhgradient , LightBlue, Blue, Blue);
1634 using LightBlue as color for shading.
1636 IconBack = (dgradient, "#284569", "#082420");
1637 will become
1638 IconBack = (mdgradient, "#183454", "#284569", "#082420");
1639 looking the same, but using #183454 for shading.
1642 New Sound Server Location
1643 -------------------------
1645 The sound server new URL is http://www.frontiernet.net/~southgat/wmsound
1646 Also it seems to be running on FreeBSD too (with little changes maybe).
1649 --- 0.16.1
1651 WINGs
1652 -----
1654 The path for the WINGs resource files was changed. If you don't
1655 do make install, you must move /usr/local/share/WindowMaker/Resources to
1656 /usr/local/share/WINGs
1659 New Options
1660 -----------
1662 The following new options are available:
1663 NewStyle = Yes/No; (static) Replaces --enable-newstyle
1664 DisableDock = Yes/No; (static) Same as -nodock command line option.
1665 DisableClip = Yes/No; (static) Same as -noclip.
1666 Superfluous = Yes/No; (dynamic) Replaces --enable-superfluous.
1668 NOTES.
1669 - The static options are only read at startup. Changing them, needs to restart,
1670   so they will be accounted.
1671 - DisableDock and DisableClip have lower precedence than -nodock -noclip
1672   command line options. If both option/command line option are given, then the
1673   command line option will be accounted.
1676 Start Hidden option
1677 -------------------
1679 The start hidden option was fixed, and made to be an application wide option.
1680 It will apply to every window the application owns. Also its place in the
1681 Attribute Inspector panel, changed accordingly, to reflect this.
1682 The start miniaturized is however still applying to particular windows of an
1683 application, unless the option is set for the class.
1684 Start miniaturized, will override start hidden if both set.
1686 IMPORTANT NOTE.
1687 Because of the way Netscape Communicator is implemented, it is NOT possible
1688 to set the start hidden or miniatirized flags for it. This is because Netscape
1689 chooses to send a second map event to the window it maps. This makes the
1690 window to receive a second map request and to be unhidden or maximized back,
1691 immediately after it was hidden or miniaturized by WindowMaker at startup.
1695 --- 0.16.0
1697 Misc. Changes
1698 -------------
1700 The NextMenuBehaviour option was renamed to WrapMenus
1701 The WorkspaceTiedMiniwindows option was renamed to StickyIcons
1703 The .tif files were renamed to .tiff
1706 Selecting Mini Windows
1707 ----------------------
1709 Now miniaturized windows can be selected as well as normal windows.
1710 You can do this by Shift-Click-ing them. They will be marked, and will follow
1711 you through workspaces like normal selected windows do.
1712 Miniaturizing a window will no longer deselect the window, but will place the
1713 icon and mark it as selected.
1714 The only difference between miniaturized and normal window selection is that
1715 for the moment the rubber-band selecting method works only for normal windows.
1718 Icon Selection Panel in Attributes Editor
1719 -----------------------------------------
1721 Now, selecting icons is as easy as clicking in the file name in a list.
1724 Simplified Options
1725 ------------------
1727 IconSlideStep, IconSlideSlowDown and IconSlideDelay were merged to 
1728 IconSlideSpeed
1730 MenuScrollStep and MenuScrollDelay were merged to MenuScrollSpeed
1732 ShadeStep and ShadeDelay were merged to ShadeSpeed
1735 Valid values for them are: Fast, Normal, Slow or UltraSlow
1737 If you want to fine tune the values, they can be changed in wconfig.h
1738 Send me your set of values with an indication of how fast is your hardware,
1739 so that I can make the default values more adequate.
1742 New Window Attributes
1743 ---------------------
1745 Added StartMiniaturized and StartHidden as window attributes and
1746 removed the previous implementation. Also removed the dock menu entries.
1747 They are now settable in the Attributes Panel.
1749 Also added DontSaveSession attribute. This way, you won't end up with multiple
1750 unwanted copies of the same app after the previous session is restored.
1751 I start X with a xterm in .xinitrc instead of wmaker, wich will cause the
1752 xterm restored by wmaker be duplicate. Just add -name something to the
1753 xterm started form .xinitrc and mark DontSaveSession=YES for that window.
1757 User Specifiable Visual IDs
1758 ---------------------------
1760 wmaker now supports different visuals than the default one. It isn't of much
1761 use for most people, but can be usefull for lucky SGI users who want it
1762 to use TrueColor instead of the default PseudoColor.
1764 wmaker -visualid VISUAL_ID
1766 where VISUAL_ID is the hex code for the visual you want.
1768 Note: I don't have an SGI box and haven't tested it...
1772 Starting Workspace
1773 ------------------
1775 The starting workspace is identified in the following order:
1776 1. If the app is omnipresent will be mapped on the current workspace.
1777 2. Else if the application have a StartWorkspace option set as attribute
1778    then this one will be used.
1779 3. Else, if the application was started from Clip, the workspace on which
1780    the Clip from where it was started is used.
1781 4. Else the current workspace is used.
1783 Restoring saved sessions will always use the saved workspace, no matter
1784 what other options are, except onmipresent.
1788 --- 0.15.1
1790 Workspace specific mini windows
1791 -------------------------------
1793 The minimized windows can be workspace specific, being more consistent with
1794 the rest. This is because minimized window represents just another state of a
1795 window (like normal or shaded), which all are workspace specific.
1796 This (or the old "present anywhere") behavior can be set using an option in
1797 the WindowMaker database: WorkspaceTiedMiniWindows = Yes/No;
1799 New way to animate the blowing icons
1800 ------------------------------------
1802 There is now a compile time option that allows one to set how the icons are
1803 animated when detaching from dock/clip in superfluous mode.
1804 By default the classic "Falling pieces" animation is used.
1805 If SPREAD_ICON is #define-ed in wconfig.h, then a "Spread in four directions"
1806 animation is used instead. Take a look at the section where this is described
1807 in src/wconfig.h
1808 By default there is #undef SPREAD_ICON to select "Falling pieces" animation.
1810 Auto Colapse for Clip
1811 ---------------------
1813 The clip now supports an option named "Auto Collapse" which can be set from
1814 the clip main menu. When set, clip will stay collapsed, and will show itself
1815 when the mouse moves over it. While the mouse is over it, or over any of the
1816 icons attached to the clip, the clip will stay uncollapsed, letting you to
1817 access the attached icons. This is not true for applications like asclock, or
1818 applets of that kind, because the icon window do not belongs to WindowMaker,
1819 but to the application itself. For such icons you must keep the mouse over the
1820 icon groundplate, else it will collapse back. But usually these type of icons
1821 will not stay in a collapsed clip, since one needs to see what they show.
1822 When the clip is leaved it will collapse back after a delay of 1 second, unless
1823 the mouse is moved back to the clip area. The delay can be set modifying
1824 AUTO_COLLAPSE_DELAY in wconfig.h. Default is 1000 (ms) which means 1 second.
1829 --- 0.15.0
1831 Changed name from Fiend to Clip
1832 -----------------------------------
1834 All occurrences of word Fiend with or without capital F were replaced with
1835 the corresponding Clip (same capital).
1836 This affects all configuration files under ~/GNUstep that contain this word.
1837 It can be refered as "Workspace Dock" too.
1840 New option in Clip menu, and extended Clip behavior
1841 ---------------------------------------------------
1843 The following new items are available in the dock menu:
1845 1. Attract Icons
1846 2. Keep Attracted Icons
1847 3. Collect Icons
1848 4. (Un)select All Icons
1849 5. Remove Selected Icons
1850 6. Move To
1851 7. Start miniaturized    (also available for regular dock)
1852 8. Start hidden          (also available for regular dock)
1853 9. Selected
1854 10. Set icon...          (also available for regular dock)
1857 Here is what they do:
1859 1. "Attract Icons" will let the Clip to attract and attach any new appicon that
1860    is created when an application starts. It will not do this if the Clip is
1861    full. If the Clip is Collapsed then the appicon will be hidden after it is
1862    attached.
1863 2. "Keep Attracted Icons" will tell the Clip to keep the attracted appicons,
1864    after the application is closed. Without this the appicons will vanish,
1865    leaving the Clip in the original state. If you move an appicon that was
1866    attracted from Clip to regular Dock, it will be kept when closed, no matter
1867    what "Keep Attracted Icons" is set to in Clip.
1868 3. "Collect Icons" will collect all appicons that are not yet attached to Dock
1869    or Clip, and attach them to the current workspace Clip. The value of
1870    "Keep Attracted Icons" will apply when applications close. If Clip is
1871    collapsed, the appicons will be hidden.
1872 4. "(Un)select All Icons" will select all icons in the clip if none is
1873    selected, or it will deselect all selected ones. The selected icons are
1874    marked using a small triangle in the bottom right corner of the appicon.
1875    The color of the mark is set using SClipColor in WindowMaker domain
1876    database.
1877 5. "Remove Selected Icons" will remove from Clip all selected icons. The ones
1878    that still run, will be detached, all the others will vanish.
1879 6. "Move To" will transfer all selected icons to another workspace and attach
1880    them to the Clip in that workspace. If none is selected, only the one the
1881    mouse was pressed on will be moved.
1882 7. "Start miniaturized" will launch (or autolaunch if set) the application in
1883    a miniaturized state.
1884 8. "Start hidden" will launch (or autolaunch if set) the application in a
1885    hidden state. Note that only one of the two can be set at a time.
1886 9. "Selected" can be used to toggle the selected state of the appicon
1887    individually. The same can be achieved using Shift-LeftClick on the appicon.
1888    In fact the intended way of toggling the selected state is by using
1889    the Shift-LeftClick on icon. The menu entry is just another way to do the
1890    same.
1891 10. "Set icon..." will allow one to set the image for the appicon. The image
1892    will be updated without restart, and also all appicons in the same
1893    instance.class as the one we set for, will be updated.
1895 So a simple way of avoiding the screen to be filled up with appicons is to set
1896 the "Attract Icons" in the Clip. Also the "Keep Attracted Icons" can be set to
1897 No, so the attracted icons will be deleted when application exits, thus leaving
1898 the Clip clean. If also one to not want to see the appicons that keep filling
1899 the Clip, he can set the Clip to be Collapsed.
1901 Getting rid of unneeded icons in Clip is as simple as selecting them
1902 individually using Shift-LeftClick, and then using the "Remove selected Icons"
1903 entry in menu.
1906 Support for different visuals.
1907 ------------------------------
1909 WindowMaker is now able to support any visual, except DirectColor, in any
1910 depth from 1bpp to 32bpp.
1912 One can start the X server with different visuals, by passing the X server the
1913 right option. For XFree 3.3.x is -cc <id>.
1914 WindowMaker is not yet able to choose a different visual from the Default one
1915 on a given screen, but can use any default visual it finds, except the direct
1916 color visual.
1917 For example starting X like (for XFree 3.3.x, and if the driver for the
1918 card supports this. Read the man page for your X server):
1919 startx -- -bpp 8 -cc 0 will give you the StaticGray visual.
1920 startx -- -bpp 8 -cc 1 will give the GrayScale visual
1921 and so on.
1923 Wrlib code is now generic, and will support any visual except DirectColor in
1924 any depth. Programs written with wrlib can work on different visuals from
1925 the default visual for a given screen.
1926 Behavior in different visuals can be tested using the testgrad program in
1927 wrlib subdirectory in distribution.
1928 testgrad -h will show the usage.
1930 Multidiagonal gradients are also implemented now in wrlib, and a new algorithm
1931 is used to speed up the generation of diagonal gradients.
1934 New arrangement of the directory structure under ~/GNUstep/
1935 ---------------------------------------------------------------
1937 To better adapt to theme support the directory structure changed under
1938 ~/GNUstep/Library/WindowMaker
1940 1. Style directory moved to Styles.
1941 2. Added the following directories: Backgrounds, IconSets, Pixmaps, Sounds and
1942    Themes.
1943 3. The .style files no longer get copied in the user's Styles directory.
1944    Instead they are read from the global /usr/local/share/WindowMaker/Styles
1945    directory.
1947 Under ~/GNUstep/Defaults the following changes occurred:
1949 1. A default WMState is installed by wmaker.inst.
1950    It contains the dockit program assigned to the top icon of the dock, and
1951    the wmsetbg program assigned for the drop command on both dock's and clip's
1952    main icon.
1953    Double clicking the dock's main icon will bring up dockit that will let you
1954    dock any application that do not have an application icon.
1955    Dropping an image on dock's or clip's main icon, from an Offix DND aware
1956    application, will put the image on the background tiled, and will update
1957    WindowMaker domain database file.
1958 2. Syntax of WMState changed a little. The old position will not be restored
1959    when you will first start the new version, but after that it will be
1960    normally remembered. This is because now the main clip icons is only saved
1961    once, not for every workspace.
1962    You should replace Fiend with Clip in any place where it appears, if you
1963    want to keep the old WMState file, else it will not work.
1964 3. At compile time, it will detect if you have support for tif, and will
1965    install a WMWindowAttributes with corresponding image name extension
1966    (.tif or .xpm). This is true only for pixmaps that come with the source
1967    distribution and get installed under /usr/local/share/WindowMaker/Pixmaps
1969 The menu file changed a lot. Old menu file will *not* work with new theme
1970 support, so please upgrade.
1973 New behavior of OPEN_MENU command
1974 ---------------------------------
1976 The OPEN_MENU command now supports the following syntax:
1977 1. File menu handling.
1978    // opens file.menu which must contain a valid menu file and inserts
1979    // it in current position
1980    OPEN_MENU file.menu
1981 2. Pipe menu handling.
1982    // opens command and uses it's stdout to construct menu.
1983    // Command's output must be a valid menu description.
1984    OPEN_MENU | command
1985 3. Directory handling.
1986    // Opens one or more directories and construct a menu with all
1987    // the subdirectories and executable files in them sorted alphabetically.
1988    OPEN_MENU /some/dir [/some/other/dir ...]
1989 4. Directory handling with command.
1990    // Opens one or more directories and construct menu with all
1991    // subdirectories and readable files in them sorted alphabetically,
1992    // preceding each of them with command.
1993    // WITH is a required keyword!!!
1994    OPEN_MENU /some/dir [/some/other/dir ...] WITH command -options
1996 Please note that because of the 'WITH' keyword old menu files no longer work
1997 for the OPEN_MENU with a command.
2000 Theme support
2001 -------------
2003 Theme support is now as easy as untar-ing a tarball in the right place.
2004 Because of the way OPEN_MENU works, they can be installed on a global
2005 shareable basis, or for personal user use.
2006 Themes installed under ~/GNUstep will be available only for a user, but
2007 if if they are installed under /usr/local/share/WindowMaker they will be seen
2008 by all users. This is also true for style files, background images, pixmaps,
2009 etc that get installed under /usr/local/share/WindowMaker.
2010 Themes can be saved or loaded using the Appereance menu.
2012 Also support for different IconSets is available. You can save or load a new
2013 IconSet using the Appereance menu.
2015 Setting background images is now as simple as putting the images in the right
2016 place (~/GNUstep/Library/WindowMaker/Backgrounds or
2017 /usr/local/share/WindowMaker/Backgrounds, or any other place in your
2018 PixmapPath). Then use the Appereance menu. They will be instantly available
2019 since they are opened by a OPEN_MENU command. Also the image do not need to
2020 have a .jpg or any other extension. It will be recognized anyhow.
2021 As an example please see the OpenStep theme supplied with WindowMaker.
2022 The OpenStep image is a jpeg file without extension.
2024 Please keep in mind that anything under /usr/local/share/WindowMaker will be
2025 available for all users.
2028 New options for wmsetbg and getstyle
2029 ------------------------------------
2031 wmsetbg now accepts the following options:
2032 usage: wmsetbg [-options] image
2033 options:
2034  -d             dither image
2035  -m             match  colors
2036  -t             tile   image
2037  -s             scale  image (default)
2038  -u             update WindowMaker domain database
2039  -D <domain>    update <domain> database
2040  -c <cpc>       colors per channel to use
2042 By default, it will try to guess if dithering is needed or not and proceed
2043 accordingly.
2044 Using -d or -m will force it to dither or match colors.
2046 Dithering for more than 15bpp is generally not needed, and will only result
2047 in a slower processing.
2048 Don't use dithering except when needed, because it is slower. Else rely on
2049 wmsetbg which will detect if dithering is needed and use it.
2051 -u will update the WorkspaceBack in the default database domain file in
2052    ~/GNUstep/Defaults/WindowMaker, and let WindowMaker refresh the screen.
2053    Please note that this option only works under WindowMaker, and will have no
2054    effect under other window managers, since it rely on WindowMaker to update
2055    the image after it reads the updated defaults database.
2057 -D <domain> is same as above, but will update the domain <domain> instead of
2058    the default WindowMaker domain.
2060 -c <cpc> will set the color per channel to use. Only needed for PseudoColor
2061    visuals. WindowMaker will automatically pass the value read from the
2062    WindowMaker domain database.
2065 getstyle now have the -t option, that instructs it to read all options
2066 related to theme. Without -t getstyle will read only style options that
2067 means it will not read WorkspaceBack and IconBack.
2068 Use -t when you want to make a theme and need all theme options to be saved.
2069 Else it will extract just a style file.
2072 Session management support
2073 --------------------------
2075 Two new commands are available for use in menus:
2077 SAVE_SESSION and CLEAR_SESSION.
2079 SAVE_SESSION:
2080 will take a snapshot of all running applications, and their current hints
2081 (shaded, hidden, minimized, geometry and workspace they are on),
2082 and save it inside the WMState file. Also the current workspace we are on is
2083 saved. The applications that are running and were started from dock or clip are
2084 marked, so they will be attached to the corresponding dock/clip when restored.
2085 This state is restored every next session, until a new one is saved or
2086 CLEAR_SESSION is used.
2088 CLEAR_SESSION:
2089 will clear any previous saved session.
2091 There is also a run time option named SaveSessionOnExit = Yes/No; that allows
2092 one to automatically save the state of desktop when leaving WindowMaker.
2093 This way next session, the state of the desktop before last exit is restored.
2095 Please note that if this option is set to Yes, than any manual saving of the
2096 state, or any clearing of the state will be overridden when exiting
2097 WindowMaker.
2099 These options are available under the "Workspace" menu.
2102 User WindowMaker configuration files are now merged with global ones
2103 --------------------------------------------------------------------
2105 When starts WindowMaker will look for database domain files under
2106 $GNUSTEP_USER_ROOT/Defaults or ~/GNUstep/Deafults to be read. (In this order).
2108 If they are not available then it will scan for them in
2109 $GNUSTEP_LOCAL_ROOT/Defaults, $GNUSTEP_SYSTEM_ROOT/Defaults or
2110 /usr/local/GNUstep/Defaults (in this order).
2112 Even if the file was found or not, it will always load the corresponding domain
2113 file under /usr/local/share/WindowMaker/Defaults.
2115 Then if the user file was found it will merge it over the global file, else
2116 the global file will be used.
2118 This way any settings that are set by the system administrator in the shared
2119 file will be available for users that do not have them in their config files.
2120 Any option the user have in his config file will override the one in the
2121 shared domain file.
2123 So any new runtime options that appear in WindowMaker domain, do not need to
2124 be set in all user files, except the ones the user wants a different behavior
2125 from the default set for all users in the shared file.
2127 Also it is possible for the user to not have any personal domain databases, and
2128 the global shared ones will be used, but it still needs to have the directory
2129 structure, so WMState gets written on session exit.
2130 So all it needs to have is ~/GNUstep/Defaults directory available.
2133 New behavior of the Slide Icons
2134 -------------------------------
2136 Animation constants are now runtime.
2137 They are:
2138 IconSlideDelay = 0;
2139 IconSlideStep = 5;
2140 IconSlideSlowDown = 50;
2142 To better adapt both slow and fast machines the behavior of sliding icons
2143 changed in the following manner:
2145 Old one was to keep moving the icon with a constant step (default 5 pixels)
2146 until it reached the destination.
2148 Now it will use a new parameter named IconSlideSlowDown to speed up or slow
2149 down the moving.
2151 Instead of moving it with a constant step it will use IconSlideSlowDown to
2152 divide the distance to the destination, and use this value as the first step.
2153 Then is will compute the remaining distance and will again use
2154 IconSlideSlowDown to divide it and get the new step. And so on.
2155 When the step to move becomes smaller than IconSlideStep, IconSlideStep will
2156 be used further until the destination is reached.
2158 This way a nice deceleration effect is achieved, since while the icon
2159 approaches destination, it will use smaller steps, gibing the illusion that
2160 the icons is moving slower.
2162 IconSlideDelay will give the pause between steps, and is expressed in ms.
2164 Giving large values to IconSlideSlowDown (>1024 for 1024x768 screen) will
2165 result in the old "constant step advance" behavior, since the computed step
2166 will always be smaller than IconSlideStep, and the last will be used instead.
2168 Making IconSlideSlowDown = 0 or 1, will result in an instant jump to the
2169 destination without any animation.
2172 Attribute editor
2173 ----------------
2175 Because the icon images on screen automatically update after any change in
2176 WMWindowAttributes domain file, the use of both Save and Apply buttons is no
2177 longer needed. If one wants to just apply the setting to the current window
2178 only, he will only use the Apply button.
2179 If he wants them saved for all applications in the same instance and/or class
2180 the using the Save button will write them to disk, and automatically
2181 WindowMaker will update all the icons that need to be updated on screen.
2184 Sound support
2185 -------------
2187 Some basic sound support is now part of WindowMaker. The sound server is not
2188 yet part of WindowMaker distribution, so you need to download it separately.
2189 This is because is linux specific, and need some changes before it can be
2190 included.
2191 Until them if you have a linux system and want to use sound, use the
2192 wmsound-0.5 available at http://www.geocities.com/SiliconValley/Bay/7874
2193 Download that package, and only build the sound server there.
2194 DO NO APPLY ANY PATCHES FROM THERE!, because they are already applied.
2195 Just build the sound and copy the executable in /usr/local/bin
2196 Follow the rest of the install steps described there, except the patch-ing
2197 procedure.
2199 To enable sound for WindowMaker pass --enable-sound to configure.
2201 Also use NoSound = Yes/No; to enable/disable sound at runtime without killing
2202 the sound server.
2204 If you cannot set the sound to work yet, then is not for you.
2205 Wait until the sound server will be fixed and will be part of WindowMaker.
2208 New entries in WindowMaker domain database
2209 ------------------------------------------
2211 The following entries have been added to the runtime options:
2213   SaveSessionOnExit = No;
2215 will autosave (or not) the session state on exit.
2217   WindowPlaceOrigin = "64, 64";
2219 will offset all windows in auto or cascade placement mode with the value
2220 (in pixels) before placing them on screen. First is horizontal direction and
2221 second is vertical.
2222 This do not apply to windows that request a specific position on screen.
2223 This is useful if you want your Clip on the top left corner to not be
2224 overlapped by mapping windows.
2225 It will let it to have a row and a column of docked appicons near the screen
2226 edge, that will not be overlapped by windows.
2227 If you set it to "128, 128" it will have 2 rows and 2 columns not overlapped.
2230   NoSound = No;
2232 Enable/disable sound at runtime without the need of killing the sound server.
2235   MenuScrollDelay = 10;
2236   MenuScrollStep = 5;
2238 Constants for the menu scrolling animation.
2240   IconSlideDelay = 0;
2241   IconSlideStep = 5;
2242   IconSlideSlowDown = 50;
2244 Constants for the icons sliding on screen. Explained above.
2246   ShadeDelay = 0;
2247   ShadeSteps = 15;
2249 Animation parameters for shading a window. How many steps it will take, and the
2250 delay between steps in ms.
2252   DoubleClickTime = 250;
2254 The time for the double click to be considered so. Expressed in ms.
2256   SClipColor = "#6f8ae2";
2258 Color for selected icons in Clip.
2260 All delays are expressed in ms.
2264 --- 0.14.1
2267 *** Enhanced fiend clone.
2269 Here are the new fiend features:
2270 1. Keys for raising/lowering the fiend, and their default values:
2271    FiendLowerKey = None;
2272    FiendRaiseKey = None;
2273    FiendRaiseLowerKey = None;
2275    All reside in WindowMaker configuration file.
2277 2. Added posibility to launch the workspace menu with button1 click on the
2278    idle indicator of fiend, or with button3 click on workspace name on the
2279    fiend.
2281 3. Added Control-button1-click on fiend's idle indicator, to create a new
2282    workspace and move to it. Same action as New item in Workspace menu.
2284 4. Fiend's idle indicator do have a color that reflects its normal/collapsed
2285    state.
2287 5. The delay between changing workspaces from fiend is now a runtime option:
2289    WorkspaceChangeDelay = 700;
2291    in WindowMaker configuration file.
2293 6. Application icons can be moved between dock and fiend now.
2295 7. The way workspaces are changed is controlled now by two runtime options:
2297    AdvanceToNewWorkspace=Yes/No;
2298    CycleWorkspaces=Yes/No;
2300    Both apply to either fiend navigating buttons or to next/prev worksapace
2301    keybindings. Both default to No, and are in WindowMaker configuration file.
2303 8. Also added posibility to advance to new workspace, no matter what value
2304    AdvanceToNewWorkspace have, with Control-button1-click on "next workspace"
2305    fiend button.
2308 *** Theme support ***
2310 Spixmap and tpixmap now work. Their syntax is:
2312 SomeStyleOption = (spixmap, file, color);
2313 SomeStyleOption = (tpixmap, file, color);
2315 - spixmap means scaled pixmap, so the image in the file will be scaled to
2316 adapt to the destination's size.
2317 - tpixmap means tiled pixmap, and the image from file will be tiled in the
2318 destination.
2320 file is searched in the PixmapPath, but can be a full path name.
2322 Color is used depending on which Style option is applied.
2323 For example in case of titlebars, color is used for miniwindows titles color.
2324 You are not restricted in selecting that color, but is better to put one
2325 that matches the overall color of the image.
2327 Currently they apply to all the options that accept (solid, color), or any
2328 type of gradient.
2329 This means they also apply to WorkspaceBack and IconBack, which allows theme
2330 support with the simple use of the setstyle and getstyle utilities.
2331 There is no need for an extra theme manager, just to include the needed
2332 options in the style files.
2334 In case of WorkspaceBack, color is used to be set in the background until
2335 the image gets loaded and displayed. This is to avoid the stippled screen
2336 the X server shows, in case the image is big and loads slow.
2337 There is a small utility in the util directory, named wmsetbg which is
2338 used to set the background image. This is needed for windowmaker not to
2339 freeze while loading and scaling the image.
2340 Currently it is hardcoded in windowmaker to use wmsetbg to set the background
2341 image, and is better to use it since is smaller that other image manipulation
2342 programs, and it is compiled with support for same image types as windowmaker.
2343 Since it comes and is installed with WindowMaker, there will be no need to
2344 download and use an external app, which also may not have support for the same
2345 image types as windowmaker.
2349 --- 0.14.0
2351 *** Fiend clone.
2353 The fiend clone is a dock extender, that lets you dock more than the default
2354 10-12 icons in the dock. It actually lets you dock how many icons you like,
2355 with a current default of 25 per workspace. The fiend have different docked
2356 icons on every workspace. Also the fiend main icon shows you the workspace
2357 you're on and lets you navigate through the workspaces with the small green
2358 buttons on the low right corner.
2359 To save screen space the fiend can be collapsed to the main icon either
2360 from the fiend menu (available with right click on the fiend icons), or
2361 with a double left click on the main fiend icon, which is a toggle for
2362 the collapsed/uncollapsed state.
2363 Collapsed state is marked by a different title color.
2364 Pressing on the small buttons on the low right corner, the workspaces are
2365 changed in increments of 1 to the left or right, but keeping the button
2366 pressed over them will continuously advance through workspaces until the
2367 mouse is moved away from the buttons or the button is released.
2368 The delay between workspace changes is set by FIEND_WKS_CHANGE_DELAY in
2369 src/wconfig.h, and defaults to 700 ms.
2370 Unlike the dock, fiend can hold icons in any directions, and can be placed
2371 in any position on screen.
2373 When an icons is to be docked, but the position can be either in the dock
2374 or in the fiend, the dock will be used first, and the icon will be docked
2375 there.
2377 Here are the new runtime options introduced by the fiend:
2378 Files are located in ~/GNUstep/Defaults/
2380 In WMWindowAttributes:
2381        "Logo.WMFiend" = {Icon = "Cone.xpm";};  - icon for the fiend
2383 In Windowmaker:
2384         FiendMaxIcons = 25;           - the max number of icons in fiend per
2385                                         workspace
2386         FiendTitleFont = "-*-helvetica-bold-r-normal-*-10-*-*-*-*-*-*-*";
2387                                       - the font used to show the current
2388                                         workspace
2389         FiendTitleColor = black;      - color for the uncollapsed fiend title
2390         CFiendTitleColor = "#616161"; - color for the collapsed fiend title
2391         AFiendColor = "#00ba70";      - color for the workspace changing
2392                                         buttons, when active
2393         IFiendColor = "#008000";      - color for the workspace changing
2394                                         buttons, when idle
2396 For the ones who don't want to use fiend, there is a option to wmaker named
2397 -nofiend that can be feed to the command line when starting wmaker.
2398 (This is the equivalent for -nodock, but removes fiend clone).
2400 The syntax of WMState file have changed, but you don't have to worry because
2401 WindowMaker will know to read the old format and will save it and further
2402 will use the new one. You do not need to change your file, for the new version
2403 to work.
2406 --- 0.13.1
2408 *** Enhanced Attribute editor.
2410 Now you can save defaults for all windows.
2411 Please note that only Icon, KeepInsideScree, and sometimes NoAppIcon
2412 can be useful in a normal environment. But others may have other opinion ;)
2413 If you set AlwaysUserIcon default for all windows, note that apps like
2414 asclock, wmload, wmmail, wmrack, will show that icon instead of their
2415 window.
2417 Now Attribute editor also counts for defaults saved for all windows,
2418 (not only the default "No" for all options hardcoded in WindowMaker),
2419 when saving options for some instance.class specification. This is to
2420 save disk space by saving only the options that differs from global defaults
2421 (either defaults for all windows or the hardcoded valued in WindowMaker).
2423 Attribute Editor now updates on the fly the appicon image or creates/deletes
2424 the appicon if you set that options in the Inspector panel and Apply them.
2425 Modifying Icon file, NoAppIcon or AlwaysUserIcon and Applying them will
2426 result in the image update for the app-icon.
2428 Note that if you apply but not save these options, the miniwindow image will
2429 not be updated. This is because app-icon is always on screen so it can be
2430 updated, but miniwindow image is read from the defaults database and from disk
2431 every time you minimize the window and is destroyed when you restore.
2434 --- 0.13.0
2436 *** Atribute editor is working ;).
2438 How it works is quite obvious.
2439 Anyway, here is a short description.
2441 Save   - only save the configuration in defaults database and updates
2442          WMWindowAttributes
2443 Apply  - only applies the values to the current window
2444 Revert - reverts the values from the defaults database
2446 Note that Save and Revert count for the window specification
2447 (instance & class), that are selected, and save/use the values for/from
2448 that.
2450  The Update button will show the icon who's name was typed in the textfield
2451 If the textfield is empty, will try to use the default icon.
2452 Also saving with and empty textfield for icon, uses the default icon.
2454  The Default button will use the icon in the textfield as default icon
2455 and save that value in WMWindowAttributes (Note that in this case is no
2456 need to press the Save button!). Also if the textfield is empty it will
2457 try to use the old default icon, if available.
2459 *** Now menus are saved between sessions, or over a restart.
2461  Just stick them to the desktop, and you will find them over sessions
2462 until you close them.
2463  Please note that only the root_menu, the window switch_menu and the
2464 workspaces_menu can be saved this way.
2466 *** Changed the lousy Windoze menu behaviour.
2468 This applies to 'NextMenuBehaviour = NO;'
2470  Now the items are no more automatically selected if you launch the menu
2471 and the mouse is over some item, if you use a short click to launch the
2472 menu (shorter than the default DBL click time).
2473  If you use a longer click or keep the mouse pressed, the item under mouse
2474 will be selected after that delay, and launched when you will release the
2475 mouse button.
2476  If the click was short, a second one is needed to launch the item.
2478 *** Autoarrange icons is now a runtime option
2481 AutoArrangeIcons = YES/NO;
2482 in 'WindowMaker'.
2484 *** Added configurable horizontal resize threshold
2487   HorizontalResizeThreshold = <n>;
2489 This will make the n pixels at the exterior side of the corner handle
2490 of the resize bar to restrict to horizontal only resize.
2491 Also you can use Shift-click&drag anywhere on the corner handle to
2492 restrict the resize only to horizontal.
2493 Note that the Shift-click&drag does not depend of the configured threshold
2494 and works completely independent.
2496 *** New option for OPEN_MENU (pipe from command)
2498 OPEN_MENU | /foo/bar/script
2500 will make a menu that is dinamically constructed by /foo/bar/script
2503 --- 0.12.0
2505 *** New option for OPEN_MENU
2507 OPEN_MENU /foo/bar/pics xv -root -quit
2509 will make a menu with all files in /foo/bar/pics and precede them
2510 with EXEC xv -root -quit
2512 thus, making a menu with entries like:
2515 "marble.gif" EXEC xv -root -quit marble.gif
2516 "water.jpg" EXEC xv -root -quit water.jpg
2520 *** Multicolor gradients
2522 (mhgradient, colorX, color1, color2, color3, ..., colorn)
2523 (mvgradient, colorX, color1, color2, color3, ..., colorn)
2525 You can put any number of colors >= 2. 
2527 colorX is a special color that is used as the solid color of the
2528 texture when wmaker needs a solid color (like in miniwindow title and
2529 resizebar)
2531 *** PixmapPath format changed
2533 What used to be
2535 PixmapPath = "/usr/local/share/pixmaps:~/foobar";
2537 must now be
2539 PixmapPath = ("/usr/local/share/pixmaps", "~/foobar");
2542 *** Added OffiX DND in dock
2544 Use the "Set drop arguments..." command in the menu and put a %d
2545 where the dropped object string should be substituted, like:
2547 xedit %d
2549 *** Escape thingies for menu and dock commands:
2551 %w - substitute with current selected X window ID
2552 %s - substitute with current selection
2553 %d - substitute with last dropped object
2554 %a(some text) - opens a input box with "some text" as a title. Then,
2555 the text typed will be substituted there
2557 \r, \n - substitute with corresponding characters
2560 *** The WMState file format has changed a little.
2561 The Command field for the dock application list is now a normal string,
2562 instead of a list. So, remove the parentheses and the commas for the command
2563 and join all the parts. Example:
2565 if it used to be
2567 Command = ( xterm," -geometry", "+10+10" );
2569 then make it
2571 Command = "xterm -geometry +10+10";
2574 --- 0.10.2
2576 AutoFocus = NO; disables automatic focusing of windows
2577 when they are first mapped
2580 --- 0.10.1
2582 titlebar gradients are in a single piece now
2584 the WMDock file was merged into the WMState file. You can insert this
2585 file in WMState and set it's key to Dock. For example, if your WMDock
2586 contains:
2589         Applications = { {Command = (); }};
2590         Position = "-64,0";
2591         Lowered = NO;
2594 and WMState contains:
2597         Workspaces = ( "Workspace 1" );
2600 then you can merge both and have:
2603         Workspaces = ( "Workspace 1" );
2604         Dock = {
2605                 Applications = { {Command = (); }};
2606                 Position = "-64,0";
2607                 Lowered = NO;
2608         };
2613 The configuration format has changed!! Forget everything about the old
2614 format.
2616 dockapp was removed and the old version will not work anymore. 
2618 the dialogs require tcl/tk. they will be rewritten in plain C
2621 These are some tips for people upgrading from older versions and don't want
2622 too many unused files around. There is no problem if you decide to keep 
2623 them for a while.
2625         you can  rm -r ~/gnustep if you don't want anything from there
2627         remove the files in /usr/local/share/WindowMaker before installation
2629         the /usr/local/share/pixmaps directory can be removed