lxi_rb 0.10.3 → 0.10.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a93864f70d7ea209966823d01dfd44fa4502b2f319ece123359f5910a1c59b94
4
- data.tar.gz: 2ccee720ae359a979439bd85edb2fc95d190b38e3e9258ba2aa1c2750316a801
3
+ metadata.gz: f2fd402ad4dc4bd81b67efe59b6770d467109bf1e4b106589eb0e7803573ada6
4
+ data.tar.gz: 27d035da26e1cbdad9a690210cf30daad02997618b3bbbf3c92b52ae2fa7e00f
5
5
  SHA512:
6
- metadata.gz: 4adcd8a2727d38843256fa849f034b61280e5ba2d983f3fb6fbc4eb0f204aa2e5c66ab2a6253a3d61f8f5abbada3af7839346e7299f7789427172a521f4d953b
7
- data.tar.gz: 44fdb91fe50c5a490e6fb87b925b44daf5bc330791543b0f90a6e3abccd4b061d0a230204fd9c009c42af23c2d5964a21af362fac8003b85bdce4030e265f8f0
6
+ metadata.gz: e4733f40c3c8c1147fe0ba417d3ca316eee6562e81c1a3dd8cd0b93ed800c3a402e0c1af018df5c5460a9f8509569af3b02eeef9a741b66cf9a5456b3d4ae017
7
+ data.tar.gz: e094f1304bda11d3e09557fc31b643387d0f1621b41bf0f302ed700fea8aedaedf8bae74fb13e2d7b5233c85cfc2ee7a3b97c7655b66b68e55fd16612b58be33
data/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@
4
4
  All notable changes to this project will be documented in this file.
5
5
 
6
6
  - - -
7
+ ## [v0.10.5](https://github.com/robcarruthers/lxi_rb/compare/v0.10.4..v0.10.5) - 2023-06-29
8
+ #### Miscellaneous Tasks
9
+ - **(ffi)** Remove discover_if function - ([beeba82](https://github.com/robcarruthers/lxi_rb/commit/beeba8228094aa7cbb9c0ae0e0955a7e0b887885)) - [@robcarruthers](https://github.com/robcarruthers)
10
+
11
+ - - -
12
+
13
+ ## [v0.10.4](https://github.com/robcarruthers/lxi_rb/compare/v0.10.3..v0.10.4) - 2023-06-28
14
+ #### Miscellaneous Tasks
15
+ - Add to LIBLXI search path - ([c6f329b](https://github.com/robcarruthers/lxi_rb/commit/c6f329b2a232b81dcd16bed201c493e42dc402ac)) - [@robcarruthers](https://github.com/robcarruthers)
16
+
17
+ - - -
18
+
7
19
  ## [v0.10.3](https://github.com/robcarruthers/lxi_rb/compare/v0.10.2..v0.10.3) - 2023-05-24
8
20
  #### Refactoring
9
21
  - **(device)** Refine query method. Update readme - ([e837565](https://github.com/robcarruthers/lxi_rb/commit/e837565b92b362dedda8dc3908f757dedf00c418)) - [@robcarruthers](https://github.com/robcarruthers)
data/lib/lxi/constants.rb CHANGED
@@ -4,7 +4,7 @@ module Lxi
4
4
  LXI_OK = 0
5
5
  LXI_ERROR = -1
6
6
 
7
- LIBLXI_PATHS = %w[liblxi liblxi.so.1].freeze
7
+ LIBLXI_PATHS = %w[liblxi liblxi.so.1 /snap/lxi-tools/1597/usr/lib/x86_64-linux-gnu/liblxi.so].freeze
8
8
 
9
9
  MDNS_LIBS = %w[mdns avahi-client].freeze
10
10
  end
data/lib/lxi/functions.rb CHANGED
@@ -25,7 +25,6 @@ module Lxi
25
25
  # Expose liblxi functions
26
26
  attach_function :init, :lxi_init, [], :int
27
27
  attach_function :discover, :lxi_discover, [LxiInfo.ptr, :int, :lxi_discover_type], :int
28
- attach_function :discover_if, :lxi_discover_if, [LxiInfo.ptr, :string, :int, :lxi_discover_type], :int
29
28
  attach_function :connect, :lxi_connect, %i[string int string int lxi_protocol_type], :int
30
29
  attach_function :__send, :lxi_send, %i[int string int int], :int
31
30
  attach_function :receive, :lxi_receive, %i[int pointer int int], :int
data/lib/lxi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lxi
4
- VERSION = '0.10.3'
4
+ VERSION = '0.10.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lxi_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Carruthers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-24 00:00:00.000000000 Z
11
+ date: 2023-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi