betters3tui 0.2.8 → 0.2.9
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/betters3tui.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0d8d6715280cc4d015f6ceba41bb50b1f77376c5a30c3465aba007e39907054
|
|
4
|
+
data.tar.gz: 93dba4e67f88ef8c9e40ef8cf083f4f2009372db0cbf9172620ed54f8246daaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87e96f874491a6e39908b73723872957667d15a2e45931f9034cfc280113bb0ce68b16594762b980b1b3c513bac5c75a856c560135e5bc3362a9fe700e7c8a5d
|
|
7
|
+
data.tar.gz: 673095a5350f62316dfacd19b2c563d61814cce860851d05040a797791f65618abba4fed4e64349bea066930500e93794a7cc181f451864da67b99699bdd8be1
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.2.9] - 2026-02-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **Win32API dependency** - Added missing `win32api` gem requirement and `require 'win32api'` statement for Windows terminal support
|
|
9
|
+
|
|
5
10
|
## [0.2.8] - 2026-02-28
|
|
6
11
|
|
|
7
12
|
### Fixed
|
|
@@ -47,6 +52,7 @@ All notable changes to this project will be documented in this file.
|
|
|
47
52
|
- File download capability
|
|
48
53
|
- Interactive keyboard navigation
|
|
49
54
|
|
|
55
|
+
[0.2.9]: https://github.com/adiprnm/betters3tui/compare/v0.2.8...v0.2.9
|
|
50
56
|
[0.2.8]: https://github.com/adiprnm/betters3tui/compare/v0.2.7...v0.2.8
|
|
51
57
|
[0.2.7]: https://github.com/adiprnm/betters3tui/compare/v0.2.6...v0.2.7
|
|
52
58
|
[0.2.6]: https://github.com/adiprnm/betters3tui/compare/v0.2.5...v0.2.6
|
data/lib/betters3tui.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# frozen_string_literal: true
|
|
3
3
|
|
|
4
|
-
VERSION = "0.2.
|
|
4
|
+
VERSION = "0.2.9"
|
|
5
5
|
|
|
6
6
|
require "json"
|
|
7
7
|
require "aws-sdk-s3"
|
|
@@ -105,6 +105,7 @@ class S3Browser
|
|
|
105
105
|
def setup_terminal
|
|
106
106
|
if windows?
|
|
107
107
|
require 'io/console'
|
|
108
|
+
require 'win32api'
|
|
108
109
|
@console_mode = nil
|
|
109
110
|
begin
|
|
110
111
|
# Get the Windows console handle and save current mode
|