diff --git a/resources/avatars/zneix.png b/resources/avatars/zneix.png new file mode 100644 index 000000000..814cd573d Binary files /dev/null and b/resources/avatars/zneix.png differ diff --git a/resources/contributors.txt b/resources/contributors.txt index 965e14d46..5286e89ec 100644 --- a/resources/contributors.txt +++ b/resources/contributors.txt @@ -3,10 +3,14 @@ # TODO: Parse this into a CONTRIBUTORS.md too # Adding yourself? Copy and paste this template at the bottom of this file and fill in the fields in a PR! -# Name | Link | Avatar (Loaded as a resource) | Title (description of work done). Contributor is what we use for someone who has contributed in general (like sent a programming-related PR) +# Name | Link | Avatar (Loaded as a resource) | Title (description of work done). -fourtf | https://fourtf.com | avatars/fourtf.png | Author, main developer -pajlada | https://pajlada.se | avatars/pajlada.png | Collaborator, co-developer +# Avatar should be located in avatars/ directory. Its size should be 128x128 (get it from https://github.com/username.png?size=128). +# Make sure to reduce avatar's size as much as possible with tool like pngcrush or optipng and run ./generate_resources.py +# Contributor is what we use for someone who has contributed in general (like sent a programming-related PR) + +fourtf | https://fourtf.com | :/avatars/fourtf.png | Author, main developer +pajlada | https://pajlada.se | :/avatars/pajlada.png | Collaborator, co-developer Cranken | https://github.com/Cranken | | Contributor hemirt | https://github.com/hemirt | | Contributor @@ -32,8 +36,9 @@ Mm2PL | https://github.com/mm2pl | | Contributor gempir | https://github.com/gempir | | Contributor mfmarlow | https://github.com/mfmarlow | | Contributor dnsge | https://github.com/dnsge | | Contributor -zneix | https://github.com/zneix | | Contributor +zneix | https://github.com/zneix | :/avatars/zneix.png | Contributor y0dax | https://github.com/y0dax | | Contributor + # If you are a contributor add yourself above this line Defman21 | https://github.com/Defman21 | | Documentation diff --git a/resources/resources_autogenerated.qrc b/resources/resources_autogenerated.qrc index 2fdebb30c..2ca5cee5b 100644 --- a/resources/resources_autogenerated.qrc +++ b/resources/resources_autogenerated.qrc @@ -2,6 +2,7 @@ avatars/fourtf.png avatars/pajlada.png + avatars/zneix.png buttons/addSplit.png buttons/addSplitDark.png buttons/ban.png diff --git a/src/autogenerated/ResourcesAutogen.cpp b/src/autogenerated/ResourcesAutogen.cpp index 2b31dc7e0..b0d962ce6 100644 --- a/src/autogenerated/ResourcesAutogen.cpp +++ b/src/autogenerated/ResourcesAutogen.cpp @@ -6,6 +6,7 @@ Resources2::Resources2() { this->avatars.fourtf = QPixmap(":/avatars/fourtf.png"); this->avatars.pajlada = QPixmap(":/avatars/pajlada.png"); + this->avatars.zneix = QPixmap(":/avatars/zneix.png"); this->buttons.addSplit = QPixmap(":/buttons/addSplit.png"); this->buttons.addSplitDark = QPixmap(":/buttons/addSplitDark.png"); this->buttons.ban = QPixmap(":/buttons/ban.png"); diff --git a/src/autogenerated/ResourcesAutogen.hpp b/src/autogenerated/ResourcesAutogen.hpp index 87fc932e3..b520c9d49 100644 --- a/src/autogenerated/ResourcesAutogen.hpp +++ b/src/autogenerated/ResourcesAutogen.hpp @@ -11,6 +11,7 @@ public: struct { QPixmap fourtf; QPixmap pajlada; + QPixmap zneix; } avatars; struct { QPixmap addSplit;