giterm 1.1.0 → 2.0.0
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/giterm +7 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d08422f350db0a6c412976efa59390a7656c829d2b1824727b6ddc0bf2791d95
|
4
|
+
data.tar.gz: f062623e119308431c2c03223f8cb83c0e3bcbacf6d1c0262e813b6234038e65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dbec9b0e38d2137f9722222caa0daf0fad5e12589296cf7d4560720a1a7f551ba4b3501460a3623ee4e9040c22634180d4964cbbcb5661903f37721f62c5688
|
7
|
+
data.tar.gz: 267e784b7651610f26afdbd1da8ca106eac503d77abc19aac35fc1b74ee4dc17d43e4788e61eb99b26dcc96dd6ab31a8e1fd3f016d7c8279a98453a2a57e7a24
|
data/giterm
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
# Author: Geir Isene <g@isene.com> (adapted from RTFM)
|
8
8
|
# Github: https://github.com/isene/GiTerm
|
9
9
|
# License: Public domain
|
10
|
-
@version = '
|
10
|
+
@version = '2.0.0'
|
11
11
|
|
12
12
|
# SAVE & STORE TERMINAL {{{1
|
13
13
|
ORIG_STTY = `stty -g 2>/dev/null`.chomp rescue ''
|
@@ -1474,6 +1474,7 @@ def github_search_repositories
|
|
1474
1474
|
@mode = :github_search
|
1475
1475
|
@github_search_results = []
|
1476
1476
|
@index = 0
|
1477
|
+
@p_left.ix = 0 # Reset scroll position
|
1477
1478
|
|
1478
1479
|
# Perform the search
|
1479
1480
|
result = github_request("/search/repositories?q=#{CGI.escape(query)}&sort=stars&order=desc&per_page=50")
|
@@ -2611,6 +2612,11 @@ begin
|
|
2611
2612
|
load_config
|
2612
2613
|
log_debug('Config loaded')
|
2613
2614
|
|
2615
|
+
# Initialize rcurses (required for rcurses 6.0.0+)
|
2616
|
+
log_debug('Initializing rcurses...')
|
2617
|
+
Rcurses.init!
|
2618
|
+
log_debug('Rcurses initialized')
|
2619
|
+
|
2614
2620
|
log_debug('Initializing windows...')
|
2615
2621
|
init_windows
|
2616
2622
|
log_debug('Windows initialized')
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: giterm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: "."
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '6.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '6.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,10 +52,10 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '13.0'
|
55
|
-
description: GiTerm is a powerful terminal interface for Git and GitHub, providing
|
55
|
+
description: 'GiTerm is a powerful terminal interface for Git and GitHub, providing
|
56
56
|
an intuitive TUI for repository management, issue tracking, and pull request handling.
|
57
|
-
|
58
|
-
|
57
|
+
Version 2.0.0: Breaking change - requires rcurses 6.0.0+ with explicit initialization
|
58
|
+
for Ruby 3.4+ compatibility.'
|
59
59
|
email:
|
60
60
|
- g@isene.com
|
61
61
|
executables:
|