Housekeep and bump to 2.6
This commit is contained in:
parent
47ae72ee80
commit
9435bfdf6d
|
@ -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
|
||||
----------------
|
||||
|
||||
|
|
|
@ -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.*')
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
-- contrib/amdgpu_linux.lua
|
||||
-- AMD GPU widget type for Linux
|
||||
-- Copyright (C) 2022 Rémy Clouard <shikamaru shikamaru fr>
|
||||
--
|
||||
-- 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue