Skip to content
This repository has been archived by the owner on Nov 17, 2024. It is now read-only.

Commit

Permalink
pref: update max stamina to 240 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
CanglongCl authored Aug 30, 2023
1 parent 486d958 commit 144b426
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct WidgetStaminaInformationCard: View {
.lineLimit(2)
.multilineTextAlignment(.leading)
} else {
Text(" / 180")
Text(" / 240")
}
}
.minimumScaleFactor(0.5)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,9 +502,9 @@ private struct BackgroundPreviewView: View, ContainBackgroundType {
.font(.title)
.shadow(radius: 10)
(
Text(Date(timeIntervalSinceNow: (180 - 60) * 6 * 60), style: .time)
Text(Date(timeIntervalSinceNow: (240 - 60) * 6 * 60), style: .time)
+ Text("\n")
+ Text(Date(timeIntervalSinceNow: (180 - 60) * 6 * 60), style: .relative)
+ Text(Date(timeIntervalSinceNow: (240 - 60) * 6 * 60), style: .relative)
)
.lineLimit(2)
.multilineTextAlignment(.leading)
Expand Down
2 changes: 1 addition & 1 deletion Internationalization/ru.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"setting.notification.expedition.method.each" = "Каждое завершено";
"notification.stamina.title" = "Напоминание: энергия Освоения для %@";
"notification.stamina.full.body" = "Энергия Освоения для %@ полностью восстановлена.";
"notification.stamina.customize.body" = "У %@ %lld энергии Освоения. 180 будет в %@.";
"notification.stamina.customize.body" = "У %@ %lld энергии Освоения. 240 будет в %@.";
"notification.expedition.title" = "Напоминаем: начните поручения для %@";
"notification.expedition.summary.body" = "Все поручения для %@ завершены.";
"notification.expedition.each.body" = "Поручения '%2$@' для %1$@ завершены.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"message": "OK",
"data": {
"current_stamina": 150,
"max_stamina": 180,
"max_stamina": 240,
"stamina_recover_time": 10800,
"accepted_epedition_num": 4,
"total_expedition_num": 4,
Expand Down

0 comments on commit 144b426

Please sign in to comment.