Skip to content

Commit be498ba

Browse files
committed
fix: update contributor avatar sizes in CONTRIBUTORS.md and sync script
- Increased the avatar size from 36px to 90px in CONTRIBUTORS.md for better visibility. - Adjusted the sync_contributors.py script to ensure the new avatar dimensions are applied consistently during updates.
1 parent 5978801 commit be498ba

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

CONTRIBUTORS.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,55 +10,55 @@ Every pull request, issue, discussion, and review helps `Cultivation World Simul
1010
<tr>
1111
<td align="center" width="50%">
1212
<a href="https://github.com/4thfever">
13-
<img src="https://avatars.githubusercontent.com/u/19970391?v=4" width="36" alt="4thfever avatar" /><br />
13+
<img src="https://avatars.githubusercontent.com/u/19970391?v=4" width="90" height="90" alt="4thfever avatar" /><br />
1414
<strong>4thfever</strong>
1515
</a>
1616
</td>
1717
<td align="center" width="50%">
1818
<a href="https://github.com/xzhseh">
19-
<img src="https://avatars.githubusercontent.com/u/91381303?v=4" width="36" alt="xzhseh avatar" /><br />
19+
<img src="https://avatars.githubusercontent.com/u/91381303?v=4" width="90" height="90" alt="xzhseh avatar" /><br />
2020
<strong>xzhseh</strong>
2121
</a>
2222
</td>
2323
</tr>
2424
<tr>
2525
<td align="center" width="50%">
2626
<a href="https://github.com/teps3105">
27-
<img src="https://avatars.githubusercontent.com/u/16871632?v=4" width="36" alt="teps3105 avatar" /><br />
27+
<img src="https://avatars.githubusercontent.com/u/16871632?v=4" width="90" height="90" alt="teps3105 avatar" /><br />
2828
<strong>teps3105</strong>
2929
</a>
3030
</td>
3131
<td align="center" width="50%">
3232
<a href="https://github.com/LuckVd">
33-
<img src="https://avatars.githubusercontent.com/u/37114923?v=4" width="36" alt="LuckVd avatar" /><br />
33+
<img src="https://avatars.githubusercontent.com/u/37114923?v=4" width="90" height="90" alt="LuckVd avatar" /><br />
3434
<strong>LuckVd</strong>
3535
</a>
3636
</td>
3737
</tr>
3838
<tr>
3939
<td align="center" width="50%">
4040
<a href="https://github.com/MarkYangKp">
41-
<img src="https://avatars.githubusercontent.com/u/42310488?v=4" width="36" alt="MarkYangKp avatar" /><br />
41+
<img src="https://avatars.githubusercontent.com/u/42310488?v=4" width="90" height="90" alt="MarkYangKp avatar" /><br />
4242
<strong>MarkYangKp</strong>
4343
</a>
4444
</td>
4545
<td align="center" width="50%">
4646
<a href="https://github.com/octo-patch">
47-
<img src="https://avatars.githubusercontent.com/u/266937838?v=4" width="36" alt="octo-patch avatar" /><br />
47+
<img src="https://avatars.githubusercontent.com/u/266937838?v=4" width="90" height="90" alt="octo-patch avatar" /><br />
4848
<strong>octo-patch</strong>
4949
</a>
5050
</td>
5151
</tr>
5252
<tr>
5353
<td align="center" width="50%">
5454
<a href="https://github.com/Robinwhliu">
55-
<img src="https://avatars.githubusercontent.com/u/86167266?v=4" width="36" alt="Robinwhliu avatar" /><br />
55+
<img src="https://avatars.githubusercontent.com/u/86167266?v=4" width="90" height="90" alt="Robinwhliu avatar" /><br />
5656
<strong>Robinwhliu</strong>
5757
</a>
5858
</td>
5959
<td align="center" width="50%">
6060
<a href="https://github.com/Tianrant">
61-
<img src="https://avatars.githubusercontent.com/u/260025727?v=4" width="36" alt="Tianrant avatar" /><br />
61+
<img src="https://avatars.githubusercontent.com/u/260025727?v=4" width="90" height="90" alt="Tianrant avatar" /><br />
6262
<strong>Tianrant</strong>
6363
</a>
6464
</td>

tools/github/sync_contributors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def render_markdown(repo: str, contributors: list[dict[str, Any]]) -> str:
108108
[
109109
' <td align="center" width="50%">',
110110
f' <a href="{profile_url}">',
111-
f' <img src="{avatar_url}" width="36" alt="{login} avatar" /><br />',
111+
f' <img src="{avatar_url}" width="90" height="90" alt="{login} avatar" /><br />',
112112
f" <strong>{login}</strong>",
113113
" </a>",
114114
" </td>",

0 commit comments

Comments
 (0)