mullvadrb 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b06202dd0245fa8332044957b4915e35b1d5ef452e99e84a0c757bbe829b0c4
4
- data.tar.gz: 7cce851045dacc5223bd0dde4ae672745d02f017fa4628339595c889c0d8b218
3
+ metadata.gz: 5ea238a3050a91a341b127d1592a584f5e3284c6a1d4a55efc54984f42721446
4
+ data.tar.gz: ee88ee974f1cf2d0c0d2b8ecb2cdd0ed137d36a0784ab18f562ca90da9939d03
5
5
  SHA512:
6
- metadata.gz: 5d93386a5e958dfce396a29da52b2c245799abf3816056889494dcc3315bb7e23087487dd113f07f407c781f72a757a240924c605c770cb35adfe970e3dac2e3
7
- data.tar.gz: e1025f30b585fd45917c8d96ff837a4da6665019e8f982b217c237c923e86d3fd5d6c8ae176f91a560409a22291e070ca2981b26c5f5286efa4f0f17dce00a88
6
+ metadata.gz: 949b88bc19849a85ff9981b7e7e1e151cc766fb54289eb9f3d5fbf718654960c1dcfa66c5629f76b20f060f0c5be6e50e45498c9ef373617e253a726d731b00d
7
+ data.tar.gz: 2e5c26fb1ffc1a2395dd4b993acf6b5b6bda7a806f378e2bbf16c7391a293cb58888be308b141395724ee3563c9196b7318a2f60b04d92f20e56dab722c523b8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 0.0.5
2
+
3
+ - Updates display for menu, adds separation between main functionality and settings.
4
+ - Sets the process name to 'mullvadrb'
5
+
1
6
  # 0.0.4
2
7
 
3
8
  Adds support for internationalization, translations can be added easily now. ¡Disponible en Español! The configuration file `backend.conf` has been replaced by `mullvadrb.yml` which will store the backend and locale preferences.
@@ -11,7 +11,7 @@ en:
11
11
  connecting: "📞 Connecting ☎ \n"
12
12
  connecting_to: "Connecting to %{server}"
13
13
  devices: "Devices"
14
- disconnect: "Disconnect"
14
+ disconnect: "Disconnect\n"
15
15
  disconnected: "\n⚠ 🚨 DISCONNECTED 🚨⚠"
16
16
  error_connecting: "Error connecting"
17
17
  error_disconnecting: "Error disconnecting"
@@ -11,7 +11,7 @@ es:
11
11
  connecting: "📞 Conectando ☎ \n"
12
12
  connecting_to: "Conectándose a %{server}"
13
13
  devices: "Dispositivos"
14
- disconnect: "Desconectar"
14
+ disconnect: "Desconectar\n"
15
15
  disconnected: "\n⚠ 🚨 DESCONECTADO 🚨⚠"
16
16
  error_connecting: "Error conectando"
17
17
  error_disconnecting: "Error desconectando "
data/lib/mullvadrb.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+ Process.setproctitle('mullvadrb')
2
3
 
3
4
  require 'i18n'
4
5
  require 'tty-prompt'
data/mullvadrb.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'mullvadrb'
3
- s.version = '0.0.4'
3
+ s.version = '0.0.5'
4
4
  s.summary = 'A TUI to use with Mullvad VPN'
5
5
  s.description = 'A Terminal User Interface to use with Mullvad VPN'
6
6
  s.authors = ['Fernando Briano']
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
8
8
  s.files = `git ls-files`.split($/)
9
9
  s.require_paths = ['lib']
10
10
  s.homepage = 'https://github.com/picandocodigo/mullvad-ruby'
11
- s.license = 'GPL-3.0'
11
+ s.license = 'GPL-3.0-only'
12
12
  s.required_ruby_version = '>= 3.0'
13
13
  s.executables << 'mullvadrb'
14
14
  s.add_dependency 'countries'
@@ -17,7 +17,6 @@ Gem::Specification.new do |s|
17
17
  s.metadata = {
18
18
  'bug_tracker_uri' => 'https://github.com/picandocodigo/mullvadrb/issues',
19
19
  'changelog_uri' => 'https://github.com/picandocodigo/mullvadrb/blob/master/CHANGELOG.md',
20
- 'homepage_uri' => 'https://github.com/picandocodigo/mullvadrb',
21
20
  'source_code_uri' => 'https://github.com/picandocodigo/mullvadrb'
22
21
  }
23
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mullvadrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Briano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-07 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: countries
@@ -76,11 +76,10 @@ files:
76
76
  - mullvadrb.gemspec
77
77
  homepage: https://github.com/picandocodigo/mullvad-ruby
78
78
  licenses:
79
- - GPL-3.0
79
+ - GPL-3.0-only
80
80
  metadata:
81
81
  bug_tracker_uri: https://github.com/picandocodigo/mullvadrb/issues
82
82
  changelog_uri: https://github.com/picandocodigo/mullvadrb/blob/master/CHANGELOG.md
83
- homepage_uri: https://github.com/picandocodigo/mullvadrb
84
83
  source_code_uri: https://github.com/picandocodigo/mullvadrb
85
84
  post_install_message:
86
85
  rdoc_options: []