From 3448a5915a936594a9e8120165d28358f0f82a23 Mon Sep 17 00:00:00 2001 From: Brandon Castillo Date: Fri, 12 Jun 2026 21:41:12 +0000 Subject: [PATCH] Add charm-channel --- xjs/application.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/xjs/application.py b/xjs/application.py index 902b049..91275bd 100644 --- a/xjs/application.py +++ b/xjs/application.py @@ -22,6 +22,7 @@ class Application: "Scale", "Charm", "Store", + "Channel", "Rev", "OS", "Base", @@ -77,6 +78,11 @@ def __init__( else: self.charm_rev = -1 + if "charm-channel" in app_info: + self.channel: str = app_info["charm-channel"] + else: + self.channel = "NA" + if "exposed" in app_info: self.exposed = app_info["exposed"] @@ -196,6 +202,7 @@ def get_row( self.get_scale_color(), self.charm, self.get_charm_origin_color(), + self.channel, self.get_charm_rev_color(), self.os, self.base, @@ -210,6 +217,7 @@ def get_row( str(self.get_scale()), self.charm, self.charm_origin, + self.channel, str(self.charm_rev), self.os, self.base,