• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

修訂b6bc0a17984e12210989a8212d94a5baac2a9f6a (tree)
時間2000-01-10 02:23:20
作者john <john>
Commiterjohn

Log Message

*** empty log message ***

Change Summary

差異

--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,10 @@
11 2000-01-09 John Harper <john@dcs.warwick.ac.uk>
22
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
58
69 * gnome.jl (gnome-event-proxyer): only proxy root button clicks
710 if we don't want to keep the grab so as to receive future
--- a/lisp/autoload.jl
+++ b/lisp/autoload.jl
@@ -128,4 +128,5 @@
128128 (autoload 'maximize-window-toggle "maximize" t)
129129 (autoload 'maximize-window-vertically-toggle "maximize" t)
130130 (autoload 'maximize-window-horizontally-toggle "maximize" t)
131+(autoload 'toggle-single-window-mode "iconify" t)
131132 ;;; ::autoload-end::
--- a/man/news.texi
+++ b/man/news.texi
@@ -7,6 +7,51 @@ they occurred between. For more detailed information see the
77 @file{ChangeLog} files in the Sawmill source tree.
88
99
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+
1055 @unnumberedsec 0.20
1156
1257 @itemize @bullet
--- a/sawmill.spec.in
+++ b/sawmill.spec.in
@@ -46,7 +46,7 @@ created/edited in a graphical environment.
4646 %setup
4747
4848 %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}
5050 make CFLAGS="$RPM_OPT_FLAGS"
5151
5252 %install
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
11 2000-01-09 John Harper <john@dcs.warwick.ac.uk>
22
3+ * version 0.21
4+
35 * keys.c (lookup_binding): check for non-null current_x_event
46 before accessing it
57