Skip to content

Commit

Permalink
Increased cut-off for charging curves to 400 kW, moving Changelog out…
Browse files Browse the repository at this point in the history
… of pre-release
  • Loading branch information
Ixam97 committed Aug 2, 2024
1 parent f64f167 commit b31281c
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog [DE]:

## 0.27.0
- Implementierung des Automotive App Host für einen potentiellen öffentlichen Release im Play Store (nicht in klassischen Builds enthalten).
- Die Art und Weise, wie Changelogs generiert werden, wurde überarbeitet.
- Die Ladekurve wird in der Tripzusammenfassung nicht mehr bei 160 kW abgeschnitten.
- Der Datenbank-Upload läuft nun in einem eigenen Dienst. Es muss nicht länger der Tripverlauf geöffnet bleiben. Eine Benachrichtigung informiert über den Fortschritt.
- Der Datenbank-Upload enthält nun Ladekurven.
- Der Webhook füllt nun das Feld \"charged_soc\" am Ende eines Ladevorgangs aus.
- Datenbankzugriffe reduziert durch das verwenden der Debug-Einstellung bei der Speicherung von Logs.
- Debug-Logs werden nach 28 Tagen ein Mal täglich gelöscht.
- Fehler beim Anwenden des experimentellen Farbschemas behoben.

## 0.26.2
- Verbesserung der Diagramm-Steuerelemente in der Tripzusammenfassung
- Defektes Layout nach Polestar OTA P3.0.3 behoben
Expand Down
4 changes: 2 additions & 2 deletions automotive/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
defaultConfig {
minSdkVersion 29
targetSdkVersion 34
versionCode 249
versionName "0.27.0.0041"
versionCode 250
versionName "0.27.0.0042"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class MainActivity : FragmentActivity() {

private val chargePlotLine = PlotLine(
PlotLineConfiguration(
PlotRange(0f, 20f, 0f, 240f, 20f),
PlotRange(0f, 20f, 0f, 400f, 20f),
PlotLineLabelFormat.FLOAT,
PlotHighlightMethod.AVG_BY_TIME,
"kW"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class SummaryFragment() : Fragment(R.layout.fragment_summary) {

private var chargePlotLine = PlotLine(
PlotLineConfiguration(
PlotRange(0f, 20f, 0f, 160f, 20f),
PlotRange(0f, 20f, 0f, 400f, 20f),
PlotLineLabelFormat.FLOAT,
PlotHighlightMethod.AVG_BY_TIME,
"kW"
Expand Down
10 changes: 10 additions & 0 deletions automotive/src/main/res/values-de/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@
<item>Defektes Layout nach Polestar OTA P3.0.3 behoben</item>
<item>Verbesserung der Diagramm-Steuerelemente in der Tripzusammenfassung</item>
<item>[V](0.26.2)</item>
<item>Fehler beim Anwenden des experimentellen Farbschemas behoben.</item>
<item>Debug-Logs werden nach 28 Tagen ein Mal täglich gelöscht.</item>
<item>Datenbankzugriffe reduziert durch das verwenden der Debug-Einstellung bei der Speicherung von Logs.</item>
<item>Der Webhook füllt nun das Feld \"charged_soc\" am Ende eines Ladevorgangs aus.</item>
<item>Der Datenbank-Upload enthält nun Ladekurven.</item>
<item>Der Datenbank-Upload läuft nun in einem eigenen Dienst. Es muss nicht länger der Tripverlauf geöffnet bleiben. Eine Benachrichtigung informiert über den Fortschritt.</item>
<item>Die Ladekurve wird in der Tripzusammenfassung nicht mehr bei 160 kW abgeschnitten.</item>
<item>Die Art und Weise, wie Changelogs generiert werden, wurde überarbeitet.</item>
<item>Implementierung des Automotive App Host für einen potentiellen öffentlichen Release im Play Store (nicht in klassischen Builds enthalten).</item>
<item>[V](0.27.0)</item>
</string-array>

<!-- Restart Dialog -->
Expand Down
14 changes: 9 additions & 5 deletions automotive/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,21 @@
<item>Fixed broken layout after Polestar OTA P3.0.3</item>
<item>Tweaked summary plot controls</item>
<item>[V](0.26.2)</item>
</string-array>

<string-array translatable="false" name="pending_changes">
<item>Fixed experimental color scheme not working.</item>
<item>Debug logs get deleted after 28 days once a day.</item>
<item>Reduced database access by limiting the logging within debug settings.</item>
<item>The Webhook now populates \"charged_soc\" at the end of a charging session.</item>
<item>The database upload now contains charging curves and creates a separate service. You no longer need to remain on the trip history screen during the Upload.</item>
<item>The database upload now contains charging curves.</item>
<item>The database upload now creates a separate service. You no longer need to remain on the trip history screen during the Upload. A notification will be posted to the notification center to show progress.</item>
<item>Charging curve no longer cuts off above 160 kW in Trip Summary.</item>
<item>Overhauled changelog creation method.</item>
<item>Implemented the Automotive Template Host for a potential public Play Store release.</item>
<item>Implemented the Automotive App Host for a potential public Play Store release (not contained in legacy builds).</item>
<item>[V](0.27.0)</item>
</string-array>

<string-array translatable="false" name="pending_changes">
</string-array>

<string name="file_name_current_trip_data" translatable="false">CurrentTripData</string>

<!-- Restart Dialog -->
Expand Down

0 comments on commit b31281c

Please sign in to comment.