From 9435bfdf6d57e053640f1bcd16fb36acb1c25283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Tue, 3 Jan 2023 22:32:02 +0900 Subject: [PATCH] Housekeep and bump to 2.6 --- CHANGELOG.rst | 7 +++++++ docs/source/conf.py | 4 ++-- widgets/amdgpu_linux.lua | 7 +++++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 282750e..e68ab3e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +Changes in 2.6.0 +---------------- + +Added AMD GPU widget type for Linux. + +Fixed typos in contrib widgets documentation. + Changes in 2.5.1 ---------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index c02b16d..9e0cd44 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,11 +6,11 @@ # Project information project = 'Vicious' -copyright = '2020, vicious-widgets' +copyright = '2020-2023, vicious-widgets' author = 'vicious-widgets' # The full version, including alpha/beta/rc tags -release = '2.5.1' +release = '2.6.0' # Add any Sphinx extension module names here, as strings. # They can be extensions coming with Sphinx (named 'sphinx.ext.*') diff --git a/widgets/amdgpu_linux.lua b/widgets/amdgpu_linux.lua index 5334799..8334285 100644 --- a/widgets/amdgpu_linux.lua +++ b/widgets/amdgpu_linux.lua @@ -1,4 +1,4 @@ --- contrib/amdgpu_linux.lua +-- AMD GPU widget type for Linux -- Copyright (C) 2022 Rémy Clouard -- -- This file is part of Vicious. @@ -15,9 +15,12 @@ -- -- You should have received a copy of the GNU General Public License -- along with Vicious. If not, see . + local io = { open = io.open } -local tonumber = tonumber local string = { match = string.match } +local tonumber = tonumber +local type = type + local helpers = require("vicious.helpers") local _mem = nil