-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement code frequency graph #29191
Conversation
The heaviest part of the work was done in #27882 so I could easily implement this with only 284 lines. I guess there is not a single unnecessary change so reviewing it will be easy. I hope we can also include this in v1.22 🤞 |
This comment was marked as resolved.
This comment was marked as resolved.
I have implemented three graph pages ([contributors](go-gitea/gitea#27882), [code frequency](go-gitea/gitea#29191) and [recent commits](go-gitea/gitea#29210)) and they have all same page title as the tab name so I decided to use same translations for them. This PR is for contributors graph. Other PR's have their own respective commits. (cherry picked from commit 39a77d92d9677b0a0049cb8696960d6d2ac052d6)
Review tip for maintainers: open #27882 and compare changes in this PR with the other PR. I copied files from the other PR. |
I have implemented three graph pages ([contributors](go-gitea#27882), [code frequency](go-gitea#29191) and [recent commits](go-gitea#29210)) and they have all same page title as the tab name so I decided to use same translations for them. This PR is for contributors graph. Other PR's have their own respective commits.
Is there anything I can do to speed up the review process? I have some spare time and waiting for your feedback. I might not be available starting from next month. |
Blocked label seems obsolete so I removed it. Looks like a bug in giteabot, similar to #29210. |
Sidenote, not a Giteabot bug, but weird GH (and Gitea) behavior: |
I always just click the "recycle" icon and it does it for me, but could be different for non-maintainers. |
Overview
This is the implementation of Code Frequency page. This feature was mentioned on these issues: #18262, #7392.
It adds another tab to Activity page called Code Frequency. Code Frequency tab shows additions and deletions over time since the repository existed.
Before:
After:
Features