source/plugins/skyline/README.md
</td>
<b>default:</b> no
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_skyline_year</code></h4></td> <td rowspan="2"><p>Displayed year</p> </td> </tr> <tr> <td nowrap="nowrap"><b>type:</b> <code>number</code> <i>(2008 ≤ 𝑥)</i><b>default:</b> current-year
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_skyline_frames</code></h4></td> <td rowspan="2"><p>Frames count</p> <p>Use 120 for a full-loop and 60 for a half-loop. A higher number of frames will increase file size.</p> </td> </tr> <tr> <td nowrap="nowrap"><b>type:</b> <code>number</code> <i>(1 ≤ 𝑥 ≤ 120)</i><b>default:</b> 60
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_skyline_quality</code></h4></td> <td rowspan="2"><p>Image quality</p> <p>A higher image quality will increase file size.</p> </td> </tr> <tr> <td nowrap="nowrap"><b>type:</b> <code>number</code> <i>(0.1 ≤ 𝑥 ≤ 1)</i><b>default:</b> 0.5
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_skyline_compatibility</code></h4></td> <td rowspan="2"><p>Compatibility mode</p> <p>This uses CSS animations rather than embedded GIF to support a wider range of browsers, like Firefox and Safari. Using this mode significantly increase file size as each frame is encoded separately</p> </td> </tr> <tr> <td nowrap="nowrap"><b>type:</b> <code>boolean</code><b>default:</b> no
</td> </tr> <tr> <td nowrap="nowrap"><h4><code>plugin_skyline_settings</code></h4></td> <td rowspan="2"><p>Advanced settings</p> <p>Can be configured to use alternate skyline websites different from <a href="https://skyline.github.com">skyline.github.com</a>, such as <a href="https://github.com/honzaap/GithubCity">honzaap's GitHub City</a>.</p> <ul> <li><code>url</code>: Target URL (mandatory)</li> <li><code>ready</code>: Readiness condition (A JS function that returns a boolean)</li> <li><code>wait</code>: Time to wait after readiness condition is met (in seconds)</li> <li><code>hide</code>: HTML elements to hide (A CSS selector)</li> </ul> <p>For <code>url</code> and <code>ready</code> options, <code>${login}</code> and <code>${year}</code> will be respectively templated to user's login and specified year</p> </td> </tr> <tr> <td nowrap="nowrap">🌐 Web instances must configure <code>settings.json</code>: <ul> <li><i>metrics.run.puppeteer.user.js</i></li> </ul> <b>type:</b> <code>json</code><b>default:</b> <details><summary>→ Click to expand</summary><pre language="json"><code>{ "url": "https://skyline.github.com/${login}/${year}", "ready": "[...document.querySelectorAll('span')].map(span => span.innerText).includes('Share on Twitter')", "wait": 1, "hide": "button, footer, a" } </code></pre></details>
</td> </tr> </table> <!--/options-->name: GitHub Skyline
uses: lowlighter/metrics@latest
with:
filename: metrics.plugin.skyline.svg
token: NOT_NEEDED
base: ""
plugin_skyline: yes
plugin_skyline_year: 2020
plugin_skyline_frames: 6
plugin_skyline_quality: 1
name: GitHub City
uses: lowlighter/metrics@latest
with:
filename: metrics.plugin.skyline.city.svg
token: NOT_NEEDED
base: ""
plugin_skyline: yes
plugin_skyline_year: 2020
plugin_skyline_frames: 6
plugin_skyline_quality: 1
plugin_skyline_settings: |
{
"url": "https://honzaap.github.io/GithubCity?name=${login}&year=${year}",
"ready": "[...document.querySelectorAll('.display-info span')].map(span => span.innerText).includes('${login}')",
"wait": 4,
"hide": ".github-corner, .footer-link, .buttons-options, .mobile-rotate, .display-info span:first-child"
}