Skip to content

Commit

Permalink
fix: 유저의 이름에 소문자를 포함한다
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Apr 19, 2024
1 parent 7127b80 commit 55d60be
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/org/gitanimals/render/domain/FieldType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enum class FieldType {

WHITE_FIELD {
override fun loadComponent(name: String, commit: Long): String {
return whiteFieldSvg.replace(NAME_FIX, name.uppercase().toSvg(0.0, 3.0))
return whiteFieldSvg.replace(NAME_FIX, name.toSvg(0.0, 3.0))
.replace(COMMIT_FIX, commit.toSvg("commit", 260.0, 4.0))
}

Expand All @@ -16,7 +16,7 @@ enum class FieldType {
},
SNOWY_FIELD {
override fun loadComponent(name: String, commit: Long): String {
return snowyFieldSvg.replace(NAME_FIX, name.uppercase().toSvg(0.0, 3.0))
return snowyFieldSvg.replace(NAME_FIX, name.toSvg(0.0, 3.0))
.replace(COMMIT_FIX, commit.toSvg("commit", 260.0, 4.0))
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_a.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_c.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_e.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_g.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_m.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_n.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_o.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_p.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_q.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_r.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_s.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_u.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_v.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_w.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_y.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/persona/text/large/_z.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 55d60be

Please sign in to comment.