Skip to content

Commit

Permalink
release notes
Browse files Browse the repository at this point in the history
Github link optional
  • Loading branch information
mtotschnig committed Aug 28, 2024
1 parent c3f9fa0 commit 90781f7
Show file tree
Hide file tree
Showing 19 changed files with 60 additions and 2 deletions.
3 changes: 3 additions & 0 deletions metadata/ar/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• إصلاح الأخطاء

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/bg-BG/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Поправени грешки

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/de-DE/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Bugs behoben

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/en-US/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Bug fixes

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/es-ES/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Corrección de errores

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/fr-FR/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Corrections des erreurs

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/he/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• תיקוני באגים

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/hu/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Hibajavítások

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/it-IT/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Correzione di bug

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/ja-JP/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• バグ修正

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/ko/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• 버그 수정

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/ms/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Pembaikan pepijat

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/pl-PL/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Poprawki błędów

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/pt-PT/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Correções de erros

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/ro/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Bug fixat

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/ru-RU/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Исправления ошибок

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/tr-TR/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• Hata düzeltmeleri

https://mastodon.social/@myexpenses/113041448128514202
3 changes: 3 additions & 0 deletions metadata/zh-Hans/changelogs/752.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
• 错误修复

https://mastodon.social/@myexpenses/113041448128514202
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ class ChangeLogGenerator {
versionInfo.getChanges(wrap(context, Locale.forLanguageTag(language)))!!
.forEach { appendLine("$it") }
appendLine()
appendLine(context.githubUrl(versionInfo))
context.githubUrl(versionInfo)?.let {
appendLine(it)
}
context.mastodonUrl(versionInfo)?.let {
appendLine(it)
}
Expand All @@ -133,7 +135,9 @@ class ChangeLogGenerator {
resolveMoreInfo("version_more_info_", versionInfo)?.let { getString(it) }

private fun Context.githubUrl(versionInfo: VersionInfo) =
"https://github.com/users/mtotschnig/projects/${githubLink(versionInfo)!!}"
githubLink(versionInfo)?.let {
"https://github.com/users/mtotschnig/projects/$it"
}

private fun Context.mastodonUrl(versionInfo: VersionInfo) =
mastodonLink(versionInfo)?.let {
Expand Down

0 comments on commit 90781f7

Please sign in to comment.