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

pref: update max stamina to 240 #139

Merged
merged 2 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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