diff --git a/HISTORY.md b/HISTORY.md index 121a3f2..3d3f06e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,8 +6,9 @@ - ℹ️ - Information - ♻️ - Edited -## 0.2.7 - [00/08/2022] +## 0.2.7 - [14/04/2023] - ➕ - Added environment variable for custom input timeout +- ✔️ - User input is converted to lowercase ## 0.2.6 - [03/08/2022] - ➕ - Added environment variable for custom password file path diff --git a/shard.lock b/shard.lock index 31703b6..0633d42 100644 --- a/shard.lock +++ b/shard.lock @@ -2,5 +2,5 @@ version: 2.0 shards: ameba: git: https://github.com/crystal-ameba/ameba.git - version: 1.0.0 + version: 1.4.3 diff --git a/shard.yml b/shard.yml index 02cf981..29cb2e3 100644 --- a/shard.yml +++ b/shard.yml @@ -11,8 +11,8 @@ targets: development_dependencies: ameba: github: crystal-ameba/ameba - version: ~> 1.0.0 + version: ~> 1.4.0 -crystal: 1.5.0 +crystal: 1.7.0 license: MIT diff --git a/src/pmng.cr b/src/pmng.cr index 5bbe828..82e3a35 100644 --- a/src/pmng.cr +++ b/src/pmng.cr @@ -94,7 +94,7 @@ module Pmng passwords_finded_array = 0 passwords_array.each do |item| - if item.url.includes?(password_string.to_s) + if item.url.includes?(password_string.to_s.downcase) Functions.show_item(item) puts "-----".colorize(:dark_gray).mode(:bold)