rumai 4.1.2 → 4.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/rumai/inochi.rb +2 -2
- data/lib/rumai/wm.rb +1 -1
- data/man/man1/rumai.1 +6 -3
- metadata +25 -32
data/lib/rumai/inochi.rb
CHANGED
|
@@ -18,12 +18,12 @@ module Rumai
|
|
|
18
18
|
##
|
|
19
19
|
# Number of this release of this project.
|
|
20
20
|
#
|
|
21
|
-
VERSION = '4.1.
|
|
21
|
+
VERSION = '4.1.3'
|
|
22
22
|
|
|
23
23
|
##
|
|
24
24
|
# Date of this release of this project.
|
|
25
25
|
#
|
|
26
|
-
RELDATE = '2011-
|
|
26
|
+
RELDATE = '2011-08-21'
|
|
27
27
|
|
|
28
28
|
##
|
|
29
29
|
# Description of this release of this project.
|
data/lib/rumai/wm.rb
CHANGED
|
@@ -1056,7 +1056,7 @@ module Rumai
|
|
|
1056
1056
|
|
|
1057
1057
|
def calculate_equilateral_triangle
|
|
1058
1058
|
num_clients = num_managed_clients
|
|
1059
|
-
return [] unless num_clients > 1
|
|
1059
|
+
return [[],0,[]] unless num_clients > 1
|
|
1060
1060
|
|
|
1061
1061
|
# calculate the dimensions of the rising sub-triangle
|
|
1062
1062
|
num_rising_columns, num_rising_summit_clients =
|
data/man/man1/rumai.1
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
.\" Title: rumai
|
|
3
3
|
.\" Author: [see the "AUTHORS" section]
|
|
4
4
|
.\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
|
|
5
|
-
.\" Date: 2011-
|
|
5
|
+
.\" Date: 2011-08-21
|
|
6
6
|
.\" Manual: \ \&
|
|
7
|
-
.\" Source: \ \& 4.1.
|
|
7
|
+
.\" Source: \ \& 4.1.3
|
|
8
8
|
.\" Language: English
|
|
9
9
|
.\"
|
|
10
|
-
.TH "RUMAI" "1" "2011\-
|
|
10
|
+
.TH "RUMAI" "1" "2011\-08\-21" "\ \& 4\&.1\&.3" "\ \&"
|
|
11
11
|
.\" -----------------------------------------------------------------
|
|
12
12
|
.\" * Define some portability stuff
|
|
13
13
|
.\" -----------------------------------------------------------------
|
|
@@ -856,6 +856,9 @@ Its exit status will indicate whether all tests have passed\&. It may also print
|
|
|
856
856
|
.sp
|
|
857
857
|
\m[blue]\fBFork this project on GitHub\fR\m[] and send a pull request\&.
|
|
858
858
|
.SH "HISTORY"
|
|
859
|
+
.SS "Version 4\&.1\&.3 (2011\-08\-21)"
|
|
860
|
+
.sp
|
|
861
|
+
This release fixes a bug in the equilateral triangle calulation used by the inward and outward automated client arrangements\&.
|
|
859
862
|
.SS "Version 4\&.1\&.2 (2011\-04\-21)"
|
|
860
863
|
.sp
|
|
861
864
|
This release fixes a bug in the inward automated client arrangement where clients in the middle column were divided into separate columns when they really should have been in the same column\&.
|
metadata
CHANGED
|
@@ -1,64 +1,57 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rumai
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 4.1.3
|
|
4
5
|
prerelease:
|
|
5
|
-
version: 4.1.2
|
|
6
6
|
platform: ruby
|
|
7
|
-
authors:
|
|
7
|
+
authors:
|
|
8
8
|
- Suraj N. Kurapati
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
date: 2011-04-21 00:00:00 Z
|
|
12
|
+
date: 2011-08-21 00:00:00.000000000 Z
|
|
14
13
|
dependencies: []
|
|
15
|
-
|
|
16
|
-
description: Rumai is a pure [Ruby] interface to the [wmii] window manager. Its name
|
|
17
14
|
is a portmanteau of "Ruby" and "wmii", which I pronounce as "vim eye".
|
|
15
|
+
description: ! "Rumai is a pure [Ruby] interface to the [wmii] window manager. Its
|
|
16
|
+
name\r is a portmanteau of \"Ruby\" and \"wmii\", which I pronounce as \"vim eye\"."
|
|
18
17
|
email:
|
|
19
|
-
executables:
|
|
18
|
+
executables:
|
|
20
19
|
- rumai
|
|
21
20
|
extensions: []
|
|
22
|
-
|
|
23
21
|
extra_rdoc_files: []
|
|
24
|
-
|
|
25
|
-
files:
|
|
22
|
+
files:
|
|
26
23
|
- bin/rumai
|
|
27
|
-
- lib/rumai.rb
|
|
28
|
-
- lib/rumai/ixp.rb
|
|
29
|
-
- lib/rumai/inochi.rb
|
|
30
24
|
- lib/rumai/ixp/message.rb
|
|
31
25
|
- lib/rumai/ixp/transport.rb
|
|
32
|
-
- lib/rumai/irb.rb
|
|
33
26
|
- lib/rumai/fs.rb
|
|
27
|
+
- lib/rumai/inochi.rb
|
|
28
|
+
- lib/rumai/irb.rb
|
|
29
|
+
- lib/rumai/ixp.rb
|
|
34
30
|
- lib/rumai/wm.rb
|
|
31
|
+
- lib/rumai.rb
|
|
35
32
|
- LICENSE
|
|
36
33
|
- man/man1/rumai.1
|
|
37
34
|
homepage: http://snk.tuxfamily.org/lib/rumai/
|
|
38
35
|
licenses: []
|
|
39
|
-
|
|
40
36
|
post_install_message:
|
|
41
37
|
rdoc_options: []
|
|
42
|
-
|
|
43
|
-
require_paths:
|
|
38
|
+
require_paths:
|
|
44
39
|
- lib
|
|
45
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
41
|
none: false
|
|
47
|
-
requirements:
|
|
48
|
-
- -
|
|
49
|
-
- !ruby/object:Gem::Version
|
|
50
|
-
version:
|
|
51
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ! '>='
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
47
|
none: false
|
|
53
|
-
requirements:
|
|
54
|
-
- -
|
|
55
|
-
- !ruby/object:Gem::Version
|
|
56
|
-
version:
|
|
48
|
+
requirements:
|
|
49
|
+
- - ! '>='
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '0'
|
|
57
52
|
requirements: []
|
|
58
|
-
|
|
59
53
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 1.
|
|
54
|
+
rubygems_version: 1.8.10
|
|
61
55
|
signing_key:
|
|
62
56
|
specification_version: 3
|
|
63
57
|
summary: Ruby interface to the wmii window manager
|
|
64
58
|
test_files: []
|
|
65
|
-
|