Nitpick whitespace and bump version

This commit is contained in:
Nguyễn Gia Phong 2020-09-04 16:59:54 +07:00
parent 5e0cb0c84a
commit f452b5780f
3 changed files with 12 additions and 9 deletions

View File

@ -39,8 +39,8 @@ Please re-read your issue once again to avoid a couple of common mistakes
1. [Fork this repository](https://github.com/vicious-widgets/vicious/fork) 1. [Fork this repository](https://github.com/vicious-widgets/vicious/fork)
2. Check out the source code with: 2. Check out the source code with:
git clone git@github.com:YOUR_GITHUB_USERNAME/vicious.git git clone https://github.com/YOUR_GITHUB_USERNAME/vicious.git
cd vicious cd vicious
3. Start working on your patch. If you want to add a new widget type, 3. Start working on your patch. If you want to add a new widget type,
see the `templates` directory for a more detailed guide. see the `templates` directory for a more detailed guide.
@ -49,7 +49,7 @@ Please re-read your issue once again to avoid a couple of common mistakes
with `luacheck`. This *should fail* at first, but you can continually with `luacheck`. This *should fail* at first, but you can continually
re-run it until you're done. re-run it until you're done.
luacheck --config .luacheckrc . luacheck --config .luacheckrc .
6. Make sure your code works under all Lua versions claimed supported 6. Make sure your code works under all Lua versions claimed supported
by Vicious, namely 5.1, 5.2 and 5.3. by Vicious, namely 5.1, 5.2 and 5.3.
@ -62,11 +62,11 @@ Please re-read your issue once again to avoid a couple of common mistakes
[commit](https://git-scm.com/docs/git-commit) them [commit](https://git-scm.com/docs/git-commit) them
and [push](https://git-scm.com/docs/git-push) the result, like this: and [push](https://git-scm.com/docs/git-push) the result, like this:
git add widgets/bar_baz.lua README.md git add widgets/bar_baz.lua README.md
git commit -m '[bar_baz] Add widget type' git commit -m '[bar_baz] Add widget type'
git add helpers.lua Changes.md git add helpers.lua Changes.md
git commit -m '[helpers] Fix foo' git commit -m '[helpers] Fix foo'
git push git push
10. Finally, [create a pull request](https://help.github.com/articles/creating-a-pull-request). 10. Finally, [create a pull request](https://help.github.com/articles/creating-a-pull-request).
We'll then review and merge it. We'll then review and merge it.

View File

@ -1,3 +1,7 @@
# Changes in 2.4.2
Feature: [hwmontemp] Bring back sysfs path cache
# Changes in 2.4.1 # Changes in 2.4.1
Fixed: Fixed:

View File

@ -334,5 +334,4 @@ end
-- }}} -- }}}
return vicious return vicious
-- }}} -- }}}