diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7d157cf..42b0332 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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) 2. Check out the source code with: - git clone git@github.com:YOUR_GITHUB_USERNAME/vicious.git - cd vicious + git clone https://github.com/YOUR_GITHUB_USERNAME/vicious.git + cd vicious 3. Start working on your patch. If you want to add a new widget type, 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 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 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 and [push](https://git-scm.com/docs/git-push) the result, like this: - git add widgets/bar_baz.lua README.md - git commit -m '[bar_baz] Add widget type' - git add helpers.lua Changes.md - git commit -m '[helpers] Fix foo' - git push + git add widgets/bar_baz.lua README.md + git commit -m '[bar_baz] Add widget type' + git add helpers.lua Changes.md + git commit -m '[helpers] Fix foo' + git push 10. Finally, [create a pull request](https://help.github.com/articles/creating-a-pull-request). We'll then review and merge it. diff --git a/Changes.md b/Changes.md index 0c184a2..12e14b3 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,7 @@ +# Changes in 2.4.2 + +Feature: [hwmontemp] Bring back sysfs path cache + # Changes in 2.4.1 Fixed: diff --git a/init.lua b/init.lua index e4f7568..7408fe5 100644 --- a/init.lua +++ b/init.lua @@ -334,5 +334,4 @@ end -- }}} return vicious - -- }}}