adamantite 0.0.11 → 0.0.13

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/adamantite +2 -0
  3. data/lib/adamantite.rb +8 -2
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a5f9f808e5132a414cc1a5864ebe3e6582aad2c44483e3f3390f62650c28b90c
4
- data.tar.gz: 26bc6bae5819117e6a11c7cf03137436fb37fefb52c6a452ef5ef45c4a473ec8
3
+ metadata.gz: a6e6f271bc9d8fe8008bd42b52607ee735866937a483340d13b5c999c4e8caf3
4
+ data.tar.gz: 913b2831ff46ea1252f39c83ec79cd1594328c0e1bcb17ecd08fc8bca72ce795
5
5
  SHA512:
6
- metadata.gz: 04e4815621eef20b9525e27dc85af4d53ade53643479dfd48ef0af7df79e289fc20578b6520ba45ec4d16969f4f24a3b3605c301dd7426e264be2dcb707d98e6
7
- data.tar.gz: b7f30dcb8de4d785ded9b89df166c2440b99437c330d2821aa3271ae26e9a7e76221ee8513302fed2e9c09eebd41703216d099c0a7826e8f68d824e795a94cb8
6
+ metadata.gz: e796b12ba43cba3a972533835162adc42d6937fdd2435436e0b636739eeda0dade7588f15ca811c173461507770855e493829d1ff13b6f9ed7627b79bcd20786
7
+ data.tar.gz: fb5b93107b2f420a5a6630b62d7ac83735f2938519fcf8e0d2442bad3badff750e99b9526ea5746ade73edc857766b3b0d1c870eb9124943c22d137ea0b3b754
data/bin/adamantite CHANGED
@@ -1,6 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
+ $LOAD_PATH.unshift File.expand_path(File.join(__dir__, '..', 'lib'))
5
+
4
6
  require 'adamantite'
5
7
 
6
8
  Adamantite::AdamantiteApp.launch
data/lib/adamantite.rb CHANGED
@@ -51,7 +51,7 @@ module Adamantite
51
51
  menu('About') do
52
52
  menu_item('Software Information') do
53
53
  on_clicked do
54
- msg_box('For more information please visit adamantitehomepage.com')
54
+ msg_box('For more information please visit https://jakebruemmer.github.io/adamantite/')
55
55
  end
56
56
  end
57
57
  menu_item('Author') do
@@ -59,6 +59,8 @@ module Adamantite
59
59
  msg_box('Jake Bruemmer - https://x.com/jakebruemmer')
60
60
  end
61
61
  end
62
+ # following is needed for Mac to enable easy quitting with CMD+Q shortcut
63
+ quit_menu_item
62
64
  end
63
65
 
64
66
  body do
@@ -119,6 +121,8 @@ module Adamantite
119
121
  cell_rows <=> [self, :stored_passwords]
120
122
  end
121
123
  horizontal_box do
124
+ stretchy false
125
+
122
126
  button('Add Password') do
123
127
  on_clicked do
124
128
  on_save = lambda do |password_object|
@@ -142,6 +146,8 @@ module Adamantite
142
146
  end
143
147
  end
144
148
  horizontal_box do
149
+ stretchy false
150
+
145
151
  label('This is valid Adamantite installation.')
146
152
  end
147
153
  end
@@ -149,7 +155,7 @@ module Adamantite
149
155
  vertical_box do
150
156
  license_label = <<-TEXT
151
157
  No license detected. Please add one to start using Adamantite.
152
- If you need one, visit https://jakebruemmer.github.io/adamantite-info/
158
+ If you need one, visit https://jakebruemmer.github.io/adamantite/
153
159
  for more information.
154
160
  TEXT
155
161
  label(license_label)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adamantite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jake Bruemmer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-29 00:00:00.000000000 Z
11
+ date: 2023-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: glimmer-dsl-libui
@@ -77,13 +77,13 @@ files:
77
77
  - lib/gui/screen/set_master_password_screen.rb
78
78
  - lib/gui/screen/show_screen.rb
79
79
  - lib/gui/screen/update_master_password_screen.rb
80
- homepage: https://jakebruemmer.github.io/adamantite-info/
80
+ homepage: https://jakebruemmer.github.io/adamantite/
81
81
  licenses:
82
82
  - MIT
83
83
  metadata: {}
84
84
  post_install_message: |2
85
85
  Thank you for installing Adamantite. Please visit the project's
86
- homepage https://jakebruemmer.github.io/adamantite-info/ if you
86
+ homepage https://jakebruemmer.github.io/adamantite/ if you
87
87
  run into any issues when installing or running the gem.
88
88
 
89
89
  You can run the gem by running 'adamantite' in your terminal.