all repos — tint2 @ b672357f784788232a04a76d7509918c83114a03

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Add packaging version check script
o9000 mrovi9000@gmail.com
commit

b672357f784788232a04a76d7509918c83114a03

parent

302d8ec3b212d094cb85de3cd5ca303fbbe3ce5b

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M packaging/version_status.pypackaging/version_status.py

@@ -320,6 +320,8 @@ versions.append(("", version, ""))

return "OpenBSD", "openbsd", versions +# Upstream + def get_tint2_version(): readme = http_download_txt("https://gitlab.com/o9000/tint2/raw/master/README.md") version = readme.split("\n", 1)[0].split(":", 1)[-1].strip()

@@ -351,9 +353,8 @@ else:

status = ":warning: Out of date" print "| {0} {1} | {2} | {3} | {4} |".format(icon, dist, r[0], r[1], status) utc_datetime = datetime.datetime.utcnow() - utc_datetime.strftime("%Y-%m-%d %H:%M UTC") print "" - print "Last updated:", utc_datetime + print "Last updated:", utc_datetime.strftime("%Y-%m-%d %H:%M UTC") if __name__ == "__main__":