Japanese translation of message catalog for Sawfish Window-Manager
修订版 | ef1f979c8952f05708b9fca44da83daadd8e652c (tree) |
---|---|
时间 | 2013-03-31 04:55:19 |
作者 | Christopher Roy Bratusek <nano@tuxf...> |
Commiter | Christopher Roy Bratusek |
ChangeLog/NEWS
@@ -1,6 +1,29 @@ | ||
1 | 1 | 2013-03-30 Christopher Roy Bratusek <nano@tuxfamily.org> |
2 | 2 | * lisp/sawfish/wm/ext/expose.jl: remove. We now have sawfish.wm.tile.* |
3 | 3 | |
4 | + * lisp/sawfish/wm/edge/actions.jl | |
5 | + * lisp/sawfish/wm/edge/conf.jl | |
6 | + * lisp/sawfish/wm/edge/misc.jl | |
7 | + * lisp/sawfish/wm/tile/tiler.jl | |
8 | + * lisp/sawfish/wm/tile/utils.jl | |
9 | + * lisp/sawfish/wm/ext/cabinet.jl: remove all references to sawfish.wm.ext.expose | |
10 | + | |
11 | + * lisp/sawfish/wm/match-window.jl: replace never-expose by never-tile | |
12 | + | |
13 | + * lisp/sawfish/wm/tile/utils.jl: add window-never-expose-p | |
14 | + | |
15 | + * lisp/sawfish/wm/tile/cols.jl: add increase-max-cols, decrease-max-cols, | |
16 | + minor fixups in col-tiler | |
17 | + | |
18 | + * lisp/sawfish/wm/tile/tile.jl: export increase-max-cols, decrease-max-cols, | |
19 | + window-never-expose-p | |
20 | + | |
21 | + * README: fixed my mail address | |
22 | + | |
23 | + * configure.in: small capitalization string-change | |
24 | + | |
25 | + * man/news.texi: update + changed tiling example. | |
26 | + | |
4 | 27 | 2013-03-21 Robert Zenz <Bobby@bonsaimind.org> |
5 | 28 | * themes/mxflat/theme.jl: Fixed $height-content and |
6 | 29 | $width-content not being replaced in title. |
@@ -74,18 +74,22 @@ at 32767. Originally reported with Firefox and Thunderbird 17.0 [Michael Pantele | ||
74 | 74 | @item New Features |
75 | 75 | @itemize @minus |
76 | 76 | @item Tiling. [Jose A. Ortega Ruiz] [Christopher Bratusek] |
77 | -Currently this module is under heavy testing (so you have been warned!). @code{tall-tile} has been | |
78 | -tested to properly work (with some minor hickups), while @code{col-tile} is untested. Example on how | |
79 | -to test the new @code{tall-tile} module (for more infos read @file{lisp/sawfish/wm/tile/readme.org}: | |
77 | +Currently this module is under testing. There are still minor hickups, but both @code{tall-tile} | |
78 | +and @code{col-tile} are working (see also @file{lisp/sawfish/wm/tile/readme.org}): | |
79 | + | |
80 | +@code{tall-tile}: one big window on the left, small windows on the right | |
81 | +@code{col-tile}: tile windows as columns (recommended for multi-head configurations) | |
80 | 82 | |
81 | 83 | @lisp |
82 | 84 | ;; Tiling |
83 | 85 | (require 'sawfish.wm.tile.tile) |
84 | -(tall-tiling 0 #:width 2 #:top 0 #:bottom 1 #:gap 1 #:max 3) | |
86 | +(tall-tiling 0 #:width 1.75 #:top 0 #:bottom 0 #:gap 3 #:max 3) | |
87 | +(col-tiling 0 #:top 0 #:bottom 0 #:gap 3 #:cols 3) | |
85 | 88 | (bind-keys global-keymap |
86 | - "F11" 'tile-workspace | |
87 | 89 | "C-S-KP_Add" 'increase-max-windows |
88 | 90 | "C-S-KP_Subtract" 'decrease-max-windows |
91 | + "C-M-KP_Add" 'increase-cols | |
92 | + "C-M-KP_Subtract" 'decrease-cols | |
89 | 93 | "C-F11" 'next-tiling) |
90 | 94 | @end lisp |
91 | 95 |
@@ -116,6 +120,10 @@ instance during a sawfish session. [Christopher Bratusek] | ||
116 | 120 | taskbar, tray) instance during a sawfish session [Christopher Bratusek] |
117 | 121 | @end itemize |
118 | 122 | @end itemize |
123 | +@item Removed Features | |
124 | +@itemize @minus | |
125 | +@item Removed @code{sawfish.wm.ext.expose} in favour of much more advanced tiling-functions. [Christopher Bratusek] | |
126 | +@end itemize | |
119 | 127 | @item Miscellaneous Changes |
120 | 128 | @itemize @minus |
121 | 129 | @item Updated @code{Elberg-tabbed} and @code{gradient-tabbed} for tab-system as of Sawfish 1.9.1 [fuchur] |