diff --git a/README.md b/README.md index 2001c32d..21cae573 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ And you can customize these heavily with plugins, templates and hundreds of opti
| - 🧩 30 plugins + 🧩 31 plugins | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 🎩 Notable contributions | 🌇 GitHub Skyline 3D calendar | -⏱️ Website performances | ||||||||||||||||||||||||||||||||||
|
+ |
|
+ |||||||||||||||||||||||||||||||||||
| ⏱️ Website performances | +🎼 Music plugin | +|||||||||||||||||||||||||||||||||||
Detailed version@@ -210,12 +220,6 @@ And you can customize these heavily with plugins, templates and hundreds of opti |
- ||||||||||||||||||||||||||||||||||||
| 🎼 Music plugin | -🐤 Latest tweets | -|||||||||||||||||||||||||||||||||||
🎼 Favorite tracks version |
+ ||||||||||||||||||||||||||||||||||||
| 🐤 Latest tweets | +🌸 Anilist watch list and reading list | +|||||||||||||||||||||||||||||||||||
With tweets attachments version@@ -232,12 +242,6 @@ And you can customize these heavily with plugins, templates and hundreds of opti |
- ||||||||||||||||||||||||||||||||||||
| 🌸 Anilist watch list and reading list | -🗨️ Stackoverflow plugin | -|||||||||||||||||||||||||||||||||||
Manga version@@ -248,16 +252,16 @@ And you can customize these heavily with plugins, templates and hundreds of opti |
+ ||||||||||||||||||||||||||||||||||||
| 🗨️ Stackoverflow plugin | +✒️ Recent posts | +|||||||||||||||||||||||||||||||||||
|
|
- ||||||||||||||||||||||||||||||||||||
| ✒️ Recent posts | -🗼 Rss feed | -|||||||||||||||||||||||||||||||||||
With posts descriptions and cover images version@@ -265,38 +269,45 @@ And you can customize these heavily with plugins, templates and hundreds of opti |
+ ||||||||||||||||||||||||||||||||||||
| 🗼 Rss feed | +⏰ WakaTime plugin | +|||||||||||||||||||||||||||||||||||
|
|
- ||||||||||||||||||||||||||||||||||||
| ⏰ WakaTime plugin | -💹 Stock prices | -|||||||||||||||||||||||||||||||||||
|
|
+ ||||||||||||||||||||||||||||||||||||
| 💹 Stock prices | +📸 Website screenshot | +|||||||||||||||||||||||||||||||||||
|
|
- ||||||||||||||||||||||||||||||||||||
| 📸 Website screenshot | -💉 Nightscout | -|||||||||||||||||||||||||||||||||||
|
|
+ ||||||||||||||||||||||||||||||||||||
| 💉 Nightscout | ++ | |||||||||||||||||||||||||||||||||||
|
|
+ ||||||||||||||||||||||||||||||||||||
| @@ -649,6 +660,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1 | 🗂️ | 📰 | 🏆 | +🎩 | 🌇 | ⏱️ | 🎼 | @@ -683,6 +695,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1✔️ | ✔️ | ✔️ | +✔️ | ✔️ | ✔️ | ✔️ | @@ -717,6 +730,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1✔️ | ✔️ | ❌ | +❌ | ❌ | ✔️ | ❌ | @@ -751,6 +765,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1❌ | ❌ | ❌ | +❌ | ❌ | ✔️ | ❌ | @@ -785,6 +800,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1❌ | ✔️ | ❌ | +❌ | ❌ | ❌ | ❌ | @@ -838,6 +854,7 @@ See their respective documentation for more informations about how to setup them * [🗂️ Active projects](/source/plugins/projects/README.md) * [📰 Recent activity](/source/plugins/activity/README.md) * [🏆 Achievements](/source/plugins/achievements/README.md) + * [🎩 Notable contributions](/source/plugins/notable/README.md) * [🌇 GitHub Skyline 3D calendar](/source/plugins/skyline/README.md) * **Social** * [⏱️ Website performances](/source/plugins/pagespeed/README.md) diff --git a/action.yml b/action.yml index e9f99357..b38499f6 100644 --- a/action.yml +++ b/action.yml @@ -622,6 +622,14 @@ inputs: description: Unlocked achievements to display default: "" + # ==================================================================================== + # 🎩 Notable contributions + + # Enable or disable plugin + plugin_notable: + description: Display notable contributions in organizations + default: no + # ==================================================================================== # 🌇 GitHub Skyline 3D calendar diff --git a/settings.example.json b/settings.example.json index 129cc3f8..cf119075 100644 --- a/settings.example.json +++ b/settings.example.json @@ -81,6 +81,9 @@ "achievements":{ "enabled": false, "//": "Display achievements" }, + "notable":{ + "enabled": false, "//": "Display notable contributions in organizations" + }, "skyline":{ "enabled": false, "//": "Display GitHub Skyline 3D calendar" }, diff --git a/source/plugins/README.md b/source/plugins/README.md index 194c4039..367999f6 100644 --- a/source/plugins/README.md +++ b/source/plugins/README.md @@ -25,6 +25,7 @@ See their respective documentation for more informations about how to setup them * [🗂️ Active projects](/source/plugins/projects/README.md) * [📰 Recent activity](/source/plugins/activity/README.md) * [🏆 Achievements](/source/plugins/achievements/README.md) + * [🎩 Notable contributions](/source/plugins/notable/README.md) * [🌇 GitHub Skyline 3D calendar](/source/plugins/skyline/README.md) * **Social** * [⏱️ Website performances](/source/plugins/pagespeed/README.md)|