Skip to content

Commit 94215f5

Browse files
committed
release 0.3.1
1 parent 1891142 commit 94215f5

13 files changed

+18
-14
lines changed

CHANGE_LOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 2021-12-22, 0.3.1 release
4+
5+
* Changed the maximum number of contributors to 9999
6+
37
## 2021-12-22, 0.3.0 release
48

59
* Added season version for the Southern Hemisphere.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
name: generate-github-profile-3d-contrib
5252
steps:
5353
- uses: actions/checkout@v2
54-
- uses: yoshi389111/github-profile-3d-contrib@0.3.0
54+
- uses: yoshi389111/github-profile-3d-contrib@0.3.1
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
USERNAME: ${{ github.repository_owner }}

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,9 +750,9 @@ const createSvg = (userInfo, settings, isAnimate) => {
750750
.attr('x', positionXContrib)
751751
.attr('y', positionYContrib)
752752
.attr('text-anchor', 'end')
753-
.text(userInfo.totalContributions < 1000
753+
.text(userInfo.totalContributions < 10000
754754
? userInfo.totalContributions
755-
: '999+')
755+
: '9999+')
756756
.attr('fill', settings.strongColor)
757757
.append('title')
758758
.text(userInfo.totalContributions);

docs/README.ja-jp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
name: generate-github-profile-3d-contrib
5151
steps:
5252
- uses: actions/checkout@v2
53-
- uses: yoshi389111/github-profile-3d-contrib@0.3.0
53+
- uses: yoshi389111/github-profile-3d-contrib@0.3.1
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
USERNAME: ${{ github.repository_owner }}

docs/demo/profile-green-animate.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-green.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-night-rainbow.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-night-view.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-season-animate.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-season.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-south-season-animate.svg

Lines changed: 1 addition & 1 deletion
Loading

docs/demo/profile-south-season.svg

Lines changed: 1 addition & 1 deletion
Loading

src/create-svg.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ export const createSvg = (
9191
.attr('y', positionYContrib)
9292
.attr('text-anchor', 'end')
9393
.text(
94-
userInfo.totalContributions < 1000
94+
userInfo.totalContributions < 10000
9595
? userInfo.totalContributions
96-
: '999+'
96+
: '9999+'
9797
)
9898
.attr('fill', settings.strongColor)
9999
.append('title')

0 commit comments

Comments
 (0)