Skip to content

Commit

Permalink
2024.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikegapinski committed Jun 24, 2024
1 parent a8b1bfa commit 5d78275
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jenkins/multi-branch-ci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pipeline {
script {
SENTRY_RELEASE = 'flutter-app-ci-' + getCurrentBranch() + '-' + getCommitSha()
}
sh('flutter build web --web-renderer html')
sh('flutter build web --no-web-resources-cdn')
}
}
stage('Prepare artifacts') {
Expand Down
25 changes: 25 additions & 0 deletions lib/feature/releaseNotes/repository/release_notes_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ import 'package:tesla_android/feature/releaseNotes/model/version.dart';
@injectable
class ReleaseNotesRepository {
static const ReleaseNotes _releaseNotes = ReleaseNotes(versions: [
Version(
versionName: "2024.26.1",
changelogItems: [
ChangelogItem(
title: "Virtual display",
shortDescription: "Performance improvements",
descriptionMarkdown: "This version iterates on Virtual Display improvements from 2024.24.1",
),
ChangelogItem(
title: "Browser audio",
shortDescription: "Bugfixes",
descriptionMarkdown: "Playback performance should be improved in this build.",
),
ChangelogItem(
title: "Flutter App",
shortDescription: "Performance improvements",
descriptionMarkdown: "CanvasKit is now used to render the UI, resulting in better scrolling performance in Tesla Android Settings.",
),
ChangelogItem(
title: "Android Platform",
shortDescription: "Security improvements",
descriptionMarkdown: "Android Platform has been updated and it now includes latest security patches (05.06.2024). Kernel has also been updated to 6.1.84.",
),
],
),
Version(
versionName: "2024.24.1",
changelogItems: [
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Tesla Android

publish_to: 'none'

version: 2024.24.1
version: 2024.26.1

environment:
flutter: "3.22.0"
Expand All @@ -30,8 +30,8 @@ dependencies:
equatable: ^2.0.0
web_socket_client: ^0.1.0-dev.3
web: ^0.5.1

json_annotation: any

dev_dependencies:
flutter_test:
sdk: flutter
Expand Down
5 changes: 4 additions & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@

_flutter.loader.load({
onEntrypointLoaded: async function(engineInitializer) {
const appRunner = await engineInitializer.initializeEngine();
const appRunner = await engineInitializer.initializeEngine({
renderer: "canvaskit",
canvasKitBaseUrl: "/canvaskit/",
});

window.setTimeout(function () {
loading.remove();
Expand Down

0 comments on commit 5d78275

Please sign in to comment.