1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

chore: add support for astro files (see #469)

This commit is contained in:
Ferdinand Mütsch
2023-02-19 20:14:22 +01:00
parent f67115a788
commit e495468be2
5 changed files with 460 additions and 144 deletions

13
scripts/convert_colors.py Normal file
View File

@ -0,0 +1,13 @@
# convert colors from the format provided by https://raw.githubusercontent.com/ozh/github-colors/master/colors.json to what wakapi wants
import sys
import json
with open(sys.argv[1], 'r') as f:
colors = json.load(f)
result = {}
for k, v in colors.items():
result[k] = v['color']
print(json.dumps(result, indent=4))

View File

@ -19,7 +19,8 @@ LANGUAGES = {
'Python': 'py',
# https://github.com/muety/wakapi/issues/172
'PHP': 'php',
'Blade': 'blade.php'
'Blade': 'blade.php',
'?': 'astro', # simulate language unknown to wakatime-cli
}
BRANCHES = ['master', 'feature-1', 'feature-2']
@ -78,7 +79,7 @@ def generate_data(n: int, n_projects: int = 5, n_past_hours: int = 24) -> List[H
data.append(Heartbeat(
entity=f'/home/me/dev/{p}/{f}.{LANGUAGES[l]}',
project=p,
language=l,
language=l if not '?' in l else None,
branch=b,
time=(now - delta).timestamp()
))