From 6c7584eea5bf10285b3c5653019a3a5e1f6b5d23 Mon Sep 17 00:00:00 2001
From: Karanjot786 <99573351+Karanjot786@users.noreply.github.com>
Date: Sun, 2 Aug 2026 03:19:33 +0000
Subject: [PATCH 1/2] docs: auto-generate CONTRIBUTORS.md [skip ci]
---
CONTRIBUTORS.md | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index 9ad7db5e3..bf1af24d7 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -4,7 +4,7 @@ We want to thank all the amazing contributors who have helped make TermUI what i
| Avatar | Contributor | Contributions |
| :---: | :--- | :---: |
-|
| [@Karanjot786](https://github.com/Karanjot786) | 347 |
+|
| [@Karanjot786](https://github.com/Karanjot786) | 348 |
|
| [@Tomeshwari-02](https://github.com/Tomeshwari-02) | 155 |
|
| [@ionfwsrijan](https://github.com/ionfwsrijan) | 92 |
|
| [@srushti-panara](https://github.com/srushti-panara) | 86 |
@@ -144,7 +144,7 @@ We want to thank all the amazing contributors who have helped make TermUI what i
|
| [@nkapoor175](https://github.com/nkapoor175) | 1 |
|
| [@MeghPatel-007](https://github.com/MeghPatel-007) | 1 |
|
| [@ezManish](https://github.com/ezManish) | 1 |
-|
| [@Novice47](https://github.com/Novice47) | 1 |
+|
| [@manasvi-sahare](https://github.com/manasvi-sahare) | 1 |
|
| [@ShubhamSawant726](https://github.com/ShubhamSawant726) | 1 |
|
| [@Sneha6657](https://github.com/Sneha6657) | 1 |
|
| [@sujeetkumar1425](https://github.com/sujeetkumar1425) | 1 |
@@ -160,6 +160,7 @@ We want to thank all the amazing contributors who have helped make TermUI what i
|
| [@saam-07](https://github.com/saam-07) | 1 |
|
| [@sripriya1156](https://github.com/sripriya1156) | 1 |
|
| [@vidushi1129](https://github.com/vidushi1129) | 1 |
+|
| [@Novice47](https://github.com/Novice47) | 1 |
|
| [@Dev-aaditya](https://github.com/Dev-aaditya) | 1 |
|
| [@AbhishekAwasthi47](https://github.com/AbhishekAwasthi47) | 1 |
|
| [@A-adilajaleel](https://github.com/A-adilajaleel) | 1 |
@@ -172,6 +173,7 @@ We want to thank all the amazing contributors who have helped make TermUI what i
|
| [@ravichandra14](https://github.com/ravichandra14) | 1 |
|
| [@bhumindeshpande8-spec](https://github.com/bhumindeshpande8-spec) | 1 |
|
| [@CoderPrateek971](https://github.com/CoderPrateek971) | 1 |
+|
| [@Dippp10-ally](https://github.com/Dippp10-ally) | 1 |
|
| [@DivyaShreeS09](https://github.com/DivyaShreeS09) | 1 |
|
| [@divyanshim27](https://github.com/divyanshim27) | 1 |
|
| [@divyanshisrivastava395](https://github.com/divyanshisrivastava395) | 1 |
@@ -188,4 +190,3 @@ We want to thank all the amazing contributors who have helped make TermUI what i
|
| [@LalithMadhav-CODING](https://github.com/LalithMadhav-CODING) | 1 |
|
| [@sahare77](https://github.com/sahare77) | 1 |
|
| [@maheshshinde9100](https://github.com/maheshshinde9100) | 1 |
-|
| [@manasvi-sahare](https://github.com/manasvi-sahare) | 1 |
From a93eaf913e9b60fdd641aa789d4f69f2beb29f3f Mon Sep 17 00:00:00 2001
From: Mavis TermUI Bot
Date: Mon, 3 Aug 2026 01:41:38 +0000
Subject: [PATCH 2/2] =?UTF-8?q?fix(data):=20address=20#3364=20=E2=80=94=20?=
=?UTF-8?q?3364?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
packages/widgets/src/data/LineGauge.ts | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/packages/widgets/src/data/LineGauge.ts b/packages/widgets/src/data/LineGauge.ts
index 2d35d5b7a..c673e4d0e 100644
--- a/packages/widgets/src/data/LineGauge.ts
+++ b/packages/widgets/src/data/LineGauge.ts
@@ -44,6 +44,26 @@ export class LineGauge extends Widget {
return this._value;
}
+ getShowLabel(): boolean {
+ return this._showLabel;
+ }
+
+ setShowLabel(show: boolean): void {
+ if (this._showLabel === show) return;
+ this._showLabel = show;
+ this.markDirty();
+ }
+
+ getFilledChar(): string {
+ return this._filledChar;
+ }
+
+ setFilledChar(char: string): void {
+ if (this._filledChar === char) return;
+ this._filledChar = char;
+ this.markDirty();
+ }
+
protected _renderSelf(screen: Screen): void {
const rect = this._getContentRect();
const { x, y, width, height } = rect;