• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

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

修订版ef1f979c8952f05708b9fca44da83daadd8e652c (tree)
时间2013-03-31 04:55:19
作者Christopher Roy Bratusek <nano@tuxf...>
CommiterChristopher Roy Bratusek

Log Message

ChangeLog/NEWS

更改概述

差异

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,29 @@
11 2013-03-30 Christopher Roy Bratusek <nano@tuxfamily.org>
22 * lisp/sawfish/wm/ext/expose.jl: remove. We now have sawfish.wm.tile.*
33
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+
427 2013-03-21 Robert Zenz <Bobby@bonsaimind.org>
528 * themes/mxflat/theme.jl: Fixed $height-content and
629 $width-content not being replaced in title.
--- a/man/news.texi
+++ b/man/news.texi
@@ -74,18 +74,22 @@ at 32767. Originally reported with Firefox and Thunderbird 17.0 [Michael Pantele
7474 @item New Features
7575 @itemize @minus
7676 @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)
8082
8183 @lisp
8284 ;; Tiling
8385 (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)
8588 (bind-keys global-keymap
86- "F11" 'tile-workspace
8789 "C-S-KP_Add" 'increase-max-windows
8890 "C-S-KP_Subtract" 'decrease-max-windows
91+ "C-M-KP_Add" 'increase-cols
92+ "C-M-KP_Subtract" 'decrease-cols
8993 "C-F11" 'next-tiling)
9094 @end lisp
9195
@@ -116,6 +120,10 @@ instance during a sawfish session. [Christopher Bratusek]
116120 taskbar, tray) instance during a sawfish session [Christopher Bratusek]
117121 @end itemize
118122 @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
119127 @item Miscellaneous Changes
120128 @itemize @minus
121129 @item Updated @code{Elberg-tabbed} and @code{gradient-tabbed} for tab-system as of Sawfish 1.9.1 [fuchur]