lowlighter / metrics

📊 An infographics generator with 30+ plugins and 300+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!
https://metrics.lecoq.io
MIT License
13.49k stars 1.67k forks source link

fix(plugin/achievements): use graphql first for initial setup and fix regex #1532

Closed lowlighter closed 1 year ago

lowlighter commented 1 year ago

Will first attempts to load total count using github search through GraphQL API for more reliability

If not working, fallback on browser method Also fixes the current regex to extract results:


- /(?<type>Repositories|Users|Issues)\n(?<count>.*?)M/g 
  // matches [ ", 58", ", 109", ", 119" ]

+ /(?<type>Repositories|Users|Issues)\n.*?(?<count>\d+)M/g
  // matches [ "58", "109", "119" ]