Skip to content

Commit

Permalink
🔖 Bump version to 2.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jheubuch committed Aug 30, 2024
1 parent eebb7f0 commit 872e646
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ aboutLibraries {

android {
def packageName = "de.hbch.traewelling"
def name = "2.14.0"
def code = 164
def name = "2.14.1"
def code = 165
compileSdk 35

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,12 @@ fun MainTheme(
) {
CompositionLocalProvider(
LocalColorScheme provides colorScheme,
content = content
)
CompositionLocalProvider(
LocalFont provides chosenFont,
content = content
content = {
CompositionLocalProvider(
LocalFont provides chosenFont,
content = content
)
}
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-de-rDE/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -285,5 +285,5 @@
<string name="checked_in_by">Du wurdest von %1$s eingecheckt</string>
<string name="share_as_image">Als Bild teilen</string>
<string name="share_tags_on_image">Tags auf Bild zeigen</string>
<string name="use_system_font">Systemschriftart verwenden</string>
<string name="use_system_font">Systemschriftart verwenden (Neustart erforderlich)</string>
</resources>
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -312,5 +312,5 @@
<string name="checked_in_by">You have been checked-in by %1$s</string>
<string name="share_as_image">Share as image</string>
<string name="share_tags_on_image">Show tags on image</string>
<string name="use_system_font">Use system font</string>
<string name="use_system_font">Use system font (restart required)</string>
</resources>

0 comments on commit 872e646

Please sign in to comment.