diff --git a/README.md b/README.md index 1d5562a0..0ffa54e1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Generate your metrics that you can embed everywhere, including your GitHub profi
| - 🧩 23 plugins + 🧩 24 plugins | |||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 🌇 GitHub Skyline 3D calendar | ✨ Stargazers over last weeks | -🌟 Recently starred repositories | |||||||||||||||||||||||||||
|
+ |
|
+ ||||||||||||||||||||||||||||
| 🌟 Recently starred repositories | +📌 Starred topics | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 📌 Starred topics | -🧮 Repositories traffic | -||||||||||||||||||||||||||||
Mastered and known technologies version@@ -166,15 +170,15 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
+ |||||||||||||||||||||||||||||
| 🧮 Repositories traffic | +🌸 Anilist watch list and reading list | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 🌸 Anilist watch list and reading list | -🎼 Music plugin | -||||||||||||||||||||||||||||
Manga version@@ -185,6 +189,12 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
+ |||||||||||||||||||||||||||||
| 🎼 Music plugin | +⏱️ Website performances | +||||||||||||||||||||||||||||
🎼 Favorite tracks version |
- |||||||||||||||||||||||||||||
| ⏱️ Website performances | -✒️ Recent posts | -||||||||||||||||||||||||||||
Detailed version@@ -210,35 +214,34 @@ Generate your metrics that you can embed everywhere, including your GitHub profi |
+ |||||||||||||||||||||||||||||
| ✒️ Recent posts | +🐤 Latest tweets | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 🐤 Latest tweets | -⏰ WakaTime plugin | -||||||||||||||||||||||||||||
|
|
+ |||||||||||||||||||||||||||||
| ⏰ WakaTime plugin | +💉 Nightscout | +||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
| 💉 Nightscout | -- | ||||||||||||||||||||||||||||
|
|
- |||||||||||||||||||||||||||||
|
@@ -534,22 +537,6 @@ systemctl status github_metrics
-
-
-
⚠️ HTTP errors code- -Following error codes may be encountered on web instance: - -| Error code | Description | -| ------------------------- | -------------------------------------------------------------------------- | -| `400 Bad request` | Invalid query (e.g. unsupported template) | -| `403 Forbidden` | User not allowed in `restricted` users list | -| `404 Not found` | GitHub API did not found the requested user | -| `429 Too many requests` | Thrown when rate limiter is trigerred | -| `500 Internal error` | Server error while generating metrics images (check logs for more details) | -| `503 Service unavailable` | Maximum user capacity reached, only cached images can be accessed for now | - -🔗 HTTP parameters@@ -595,6 +582,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1👨💻 |
🧑🤝🧑 |
🗂️ |
+ 🌇 |
✨ |
🌟 |
📌 |
@@ -622,6 +610,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
✔️ |
✔️ |
✔️ |
+ ✔️ |
✔️ |
✔️ |
✔️ |
@@ -649,6 +638,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
✔️ |
✔️ |
✔️ |
+ ❌ |
✔️ |
❌ |
❌ |
@@ -676,6 +666,7 @@ https://my-personal-domain.com/my-github-user?base=0&base.repositories=1
✔️ |
❌ |
❌ |
+ ❌ |
❌ |
❌ |
❌ |
@@ -721,6 +712,7 @@ See their respective documentation for more informations about how to setup them
* [👨💻 Lines of code changed](/source/plugins/lines/README.md)
* [🧑🤝🧑 People plugin](/source/plugins/people/README.md)
* [🗂️ Active projects](/source/plugins/projects/README.md)
+ * [🌇 GitHub Skyline 3D calendar](/source/plugins/skyline/README.md)
* [✨ Stargazers over last weeks](/source/plugins/stargazers/README.md)
* [🌟 Recently starred repositories](/source/plugins/stars/README.md)
* [📌 Starred topics](/source/plugins/topics/README.md)
diff --git a/action.yml b/action.yml
index 84d1cdaf..309f0907 100644
--- a/action.yml
+++ b/action.yml
@@ -430,6 +430,25 @@ inputs:
description: Display projects descriptions
default: no
+ # ====================================================================================
+ # 🌇 GitHub Skyline 3D calendar
+
+ # Enable or disable plugin
+ plugin_skyline:
+ description: Display GitHub Skyline 3D calendar
+ default: no
+
+ # Displayed year
+ plugin_skyline_year:
+ description: Displayed year
+ default: current-year
+
+ # Number of frames
+ # Use 120 for a full-loop and 60 for a half-loop
+ plugin_skyline_frames:
+ description: Number of frames
+ default: 60
+
# ====================================================================================
# ✨ Stargazers over last weeks
diff --git a/settings.example.json b/settings.example.json
index 47f5c75a..ab91cb5a 100644
--- a/settings.example.json
+++ b/settings.example.json
@@ -13,6 +13,10 @@
"mocked": false, "//": "Use mocked data instead of live APIs (use 'force' to use mocked token even if real token are defined)",
"repositories": 100, "//": "Number of repositories to use",
"padding": ["6%", "15%"], "//": "Image padding (default)",
+ "hosted": {
+ "by": "", "//": "Web instance host (displayed in footer)",
+ "link": "", "//": "Web instance host link (displayed in footer)"
+ },
"community": {
"templates": [], "//": "Additional community templates to setup"
},
@@ -58,6 +62,9 @@
"projects":{
"enabled": false, "//": "Display active projects"
},
+ "skyline":{
+ "enabled": false, "//": "Display GitHub Skyline 3D calendar"
+ },
"stargazers":{
"enabled": false, "//": "Display stargazers metrics"
},
diff --git a/source/plugins/README.md b/source/plugins/README.md
index a5a82a27..032838b2 100644
--- a/source/plugins/README.md
+++ b/source/plugins/README.md
@@ -19,6 +19,7 @@ See their respective documentation for more informations about how to setup them
* [👨💻 Lines of code changed](/source/plugins/lines/README.md)
* [🧑🤝🧑 People plugin](/source/plugins/people/README.md)
* [🗂️ Active projects](/source/plugins/projects/README.md)
+ * [🌇 GitHub Skyline 3D calendar](/source/plugins/skyline/README.md)
* [✨ Stargazers over last weeks](/source/plugins/stargazers/README.md)
* [🌟 Recently starred repositories](/source/plugins/stars/README.md)
* [📌 Starred topics](/source/plugins/topics/README.md)
| |