tiling 1.0 → 1.0.1
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/NEWS +5 -0
- data/VERSION +1 -1
- data/lib/tiling/mover.rb +2 -0
- metadata +3 -4
- data/TODO +0 -5
data/NEWS
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0
|
1
|
+
1.0.1
|
data/lib/tiling/mover.rb
CHANGED
@@ -4,6 +4,8 @@ module Tiling
|
|
4
4
|
# Move a window.
|
5
5
|
class Mover
|
6
6
|
def self.move id, x, y, width, height
|
7
|
+
WMCtrl.instance.action_window(id, :change_state, 'remove', 'fullscreen')
|
8
|
+
WMCtrl.instance.action_window(id, :change_state, 'remove', 'maximized_horz', 'maximized_vert')
|
7
9
|
WMCtrl.instance.action_window(id, :move_resize, 0, x, y, width, height)
|
8
10
|
end
|
9
11
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-04-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ruby-wmctrl
|
@@ -53,8 +53,7 @@ files:
|
|
53
53
|
- NEWS
|
54
54
|
- README.markdown
|
55
55
|
- Rakefile
|
56
|
-
|
57
|
-
homepage: https://github.com/lkdjiin/tiling
|
56
|
+
homepage: http://lkdjiin.github.com/tiling
|
58
57
|
licenses:
|
59
58
|
- MIT
|
60
59
|
post_install_message:
|