Skip to content

Commit

Permalink
Housekeep and bump to 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
McSinyx committed Jan 3, 2023
1 parent 47ae72e commit 9435bfd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
----------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

# Project information
project = 'Vicious'
copyright = '2020, vicious-widgets'
copyright = '2020-2023, vicious-widgets'

This comment has been minimized.

Copy link
@McSinyx

McSinyx Jan 4, 2023

Author Member

I'm not sure if this is supposed to be the copyright for the docs or the entire project, but either way 2020– doesn't seem to be correct. Anyhow, it's not rendered on the site.

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.*')
Expand Down
7 changes: 5 additions & 2 deletions widgets/amdgpu_linux.lua
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down

0 comments on commit 9435bfd

Please sign in to comment.