awesomer 1.1.0 → 1.1.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.
Files changed (3) hide show
  1. data/History.txt +8 -0
  2. data/lib/awesomer.rb +2 -2
  3. metadata +5 -4
@@ -1,3 +1,11 @@
1
+ === 1.1.1 / 2008-07-08
2
+
3
+ * Bugfix: check for socket (not file) on connection.
4
+
5
+ === 1.1.0 / 2008-04-24
6
+
7
+ * Supports setting the default statusbar when using widget_tell.
8
+
1
9
  === 1.0.2 / 2008-03-29
2
10
 
3
11
  * Multiple arg support.
@@ -26,7 +26,7 @@ require 'socket'
26
26
  # end
27
27
  #
28
28
  class Awesomer
29
- VERSION = '1.1.0'
29
+ VERSION = '1.1.1'
30
30
 
31
31
  attr_accessor :screen
32
32
  attr_accessor :statusbar
@@ -57,7 +57,7 @@ class Awesomer
57
57
  def connect
58
58
  @socket = Socket.new(Socket::AF_UNIX, Socket::SOCK_DGRAM, 0)
59
59
  path = File.join(ENV['HOME'], ".awesome_ctl.#@screen")
60
- if File.exists? path
60
+ if File.socket? path
61
61
  @socket.connect(Socket.pack_sockaddr_un(path))
62
62
  else
63
63
  sleep 1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesomer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eivind Uggedal
@@ -9,17 +9,18 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-24 00:00:00 +02:00
12
+ date: 2008-07-08 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: hoe
17
+ type: :development
17
18
  version_requirement:
18
19
  version_requirements: !ruby/object:Gem::Requirement
19
20
  requirements:
20
21
  - - ">="
21
22
  - !ruby/object:Gem::Version
22
- version: 1.5.1
23
+ version: 1.7.0
23
24
  version:
24
25
  description: Awesomer is a ruby library for interacting with the +awesome+ window manager. It replaces the +awesome-client+ distributed with the window manager.
25
26
  email: eu@redflavor.com
@@ -60,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
61
  requirements: []
61
62
 
62
63
  rubyforge_project: awesomer
63
- rubygems_version: 1.0.1
64
+ rubygems_version: 1.2.0
64
65
  signing_key:
65
66
  specification_version: 2
66
67
  summary: Library for interacting with the awesome window manager