Japanese translation of message catalog for Sawfish Window-Manager
修訂 | b6bc0a17984e12210989a8212d94a5baac2a9f6a (tree) |
---|---|
時間 | 2000-01-10 02:23:20 |
作者 | john <john> |
Commiter | john |
*** empty log message ***
@@ -1,7 +1,10 @@ | ||
1 | 1 | 2000-01-09 John Harper <john@dcs.warwick.ac.uk> |
2 | 2 | |
3 | - * groups.jl (iconify-other-groups): new function, iconifies all | |
4 | - windows not in the current group | |
3 | + * version 0.21 | |
4 | + | |
5 | + * iconify.jl (toggle-single-window-mode): new function | |
6 | + | |
7 | + * group-funs.jl (map-other-window-groups): new function | |
5 | 8 | |
6 | 9 | * gnome.jl (gnome-event-proxyer): only proxy root button clicks |
7 | 10 | if we don't want to keep the grab so as to receive future |
@@ -128,4 +128,5 @@ | ||
128 | 128 | (autoload 'maximize-window-toggle "maximize" t) |
129 | 129 | (autoload 'maximize-window-vertically-toggle "maximize" t) |
130 | 130 | (autoload 'maximize-window-horizontally-toggle "maximize" t) |
131 | +(autoload 'toggle-single-window-mode "iconify" t) | |
131 | 132 | ;;; ::autoload-end:: |
@@ -7,6 +7,51 @@ they occurred between. For more detailed information see the | ||
7 | 7 | @file{ChangeLog} files in the Sawmill source tree. |
8 | 8 | |
9 | 9 | |
10 | +@unnumberedsec 0.21 | |
11 | + | |
12 | +@itemize @bullet | |
13 | + | |
14 | +@item Frame pattern definitions (foreground, background, font) may now | |
15 | +take alists as well as the old single object, or list of four objects. | |
16 | +Possible states are @code{inactive}, @code{focused}, | |
17 | +@code{highlighted}, @code{clicked}, @code{inactive-highlighted}, | |
18 | +@code{inactive-clicked}. (Last two are new) | |
19 | + | |
20 | +@item New program @code{sawmill-themer}. A GUI for creating simple | |
21 | +themes (those without any parts defined by functions) | |
22 | + | |
23 | +@item New module @code{gnome-int}, loaded by @code{sawmill-defaults} if | |
24 | +GNOME is around, sets up some GNOME'ish things | |
25 | + | |
26 | +@item New command @code{toggle-single-window-mode} | |
27 | + | |
28 | ||
29 | +Garc? Etxebarria), nl (Han-Wen Nienhuys) | |
30 | + | |
31 | +@item Optional removal of tooltips after time period (Morgan Schweers) | |
32 | + | |
33 | +@item @kbd{Any-RET} completes interactive move or resize | |
34 | + | |
35 | +@item Work around Imlib's annoying image caching, @code{make-image} now | |
36 | +@emph{always} returns a new image | |
37 | + | |
38 | +@item Fixed gc bug when building window frames | |
39 | + | |
40 | +@item Fixed X property handling on Alpha's (George Lebl) | |
41 | + | |
42 | +@item Make @code{call-command} accept closures | |
43 | + | |
44 | +@item Make @code{(cursor . nil)} work correctly in frame definitions | |
45 | + | |
46 | +@item Grab on frame window, not client window (ICCCM compliant) | |
47 | + | |
48 | +@item Fixed the ``uniconify to current workspace'' option | |
49 | + | |
50 | +@item Added window-maximization predicates to the gaol | |
51 | + | |
52 | +@end itemize | |
53 | + | |
54 | + | |
10 | 55 | @unnumberedsec 0.20 |
11 | 56 | |
12 | 57 | @itemize @bullet |
@@ -46,7 +46,7 @@ created/edited in a graphical environment. | ||
46 | 46 | %setup |
47 | 47 | |
48 | 48 | %build |
49 | -./configure --enable-capplet --enable-themer --with-readline --with-gnome-prefix %{_prefix} --prefix %{_prefix} %{_host} | |
49 | +./configure --enable-capplet --enable-themer --with-readline --with-gnome-prefix=%{_prefix} --prefix %{_prefix} %{_host} | |
50 | 50 | make CFLAGS="$RPM_OPT_FLAGS" |
51 | 51 | |
52 | 52 | %install |
@@ -1,5 +1,7 @@ | ||
1 | 1 | 2000-01-09 John Harper <john@dcs.warwick.ac.uk> |
2 | 2 | |
3 | + * version 0.21 | |
4 | + | |
3 | 5 | * keys.c (lookup_binding): check for non-null current_x_event |
4 | 6 | before accessing it |
5 | 7 |