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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/lib/betters3tui.rb +2 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f163b7db0b942399b20d4282c2f1f211a3f29b22d91c3e96d8cec144aa974725
4
- data.tar.gz: 0d32d3a731580847b1a2cc36430c564876c90dc62f59957018f5c211ae965b9c
3
+ metadata.gz: e0d8d6715280cc4d015f6ceba41bb50b1f77376c5a30c3465aba007e39907054
4
+ data.tar.gz: 93dba4e67f88ef8c9e40ef8cf083f4f2009372db0cbf9172620ed54f8246daaa
5
5
  SHA512:
6
- metadata.gz: 2c1f146b0ac1cb24726186f5dc9627d1bbf473181bc786a4690b7a82e8ee670926eb91ac9bb2e813e0ac48c25ef360b2030574eb0549521d636f58950ccad7e5
7
- data.tar.gz: 5de653abe8d434b5379320142c0b5c148b23ed470cd50ee6960edd911dde7a7d2d1a10bc3001d9b0b57354603a89219f1e056f419c21d610c0dac552cf2abf99
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.8"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: betters3tui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adi Purnama