Skip to content

Commit

Permalink
Deploying to gh-pages from @ 174d0d8 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dchristl committed Mar 31, 2024
1 parent f3aed1c commit 8e1f8e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
6 changes: 3 additions & 3 deletions flutter_service_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const MANIFEST = 'flutter-app-manifest';
const TEMP = 'flutter-temp-cache';
const CACHE_NAME = 'flutter-app-cache';

const RESOURCES = {"index.html": "c96696ff61436e33d0d6ac1f4405d374",
"/": "c96696ff61436e33d0d6ac1f4405d374",
const RESOURCES = {"index.html": "eb365081098742a3d6c633f8cc7e7685",
"/": "eb365081098742a3d6c633f8cc7e7685",
"canvaskit/canvaskit.js": "c86fbd9e7b17accae76e5ad116583dc4",
"canvaskit/skwasm.js": "445e9e400085faead4493be2224d95aa",
"canvaskit/skwasm.wasm": "e42815763c5d05bba43f9d0337fa7d84",
Expand Down Expand Up @@ -32,7 +32,7 @@ const RESOURCES = {"index.html": "c96696ff61436e33d0d6ac1f4405d374",
"icons/Icon-192.png": "386e412d2cfa85e6d78e2ab4c9734d27",
"manifest.json": "8d28e99149c78ce99037cc8e61446753",
"flutter.js": "c71a09214cb6f5f8996a531350400a9a",
"main.dart.js": "b86c40e2cfce2c764a5ae195b0daf7ca"};
"main.dart.js": "27154a24901b78334fd141e4803e05d3"};
// The application shell files that are downloaded before a service worker can
// start.
const CORE = ["main.dart.js",
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<script>
const serviceWorkerVersion = "4238970661";
const serviceWorkerVersion = "1934549109";
var scriptLoaded = false;
function loadMainDartJs() {
if (scriptLoaded) {
Expand Down
22 changes: 12 additions & 10 deletions main.dart.js
Original file line number Diff line number Diff line change
Expand Up @@ -200729,7 +200729,7 @@
fillLocationHistory$body$AccessoryRegistry(reports, accessory) {
var $async$goto = 0,
$async$completer = A._makeAsyncAwaitCompleter(type$.List_Pair_dynamic_dynamic),
$async$returnValue, $async$self = this, t1, t2, count, i, currHash, lastReport, oldTs, t3, report, decryptedReports, hashes;
$async$returnValue, $async$self = this, t1, t2, count, i, currHash, lastReport, oldTs, latestReportTS, t3, report, decryptedReports, hashes;
var $async$fillLocationHistory$2 = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
if ($async$errorCode === 1)
return A._asyncRethrow($async$result, $async$completer);
Expand Down Expand Up @@ -200785,16 +200785,18 @@
if (t1 !== 0) {
lastReport = decryptedReports[t1 - 1];
oldTs = accessory.datePublished;
t1 = lastReport.latitude;
t1.toString;
t3 = lastReport.longitude;
t3.toString;
accessory.set$lastLocation(new A.LatLng(t1, t3));
t3 = lastReport.timestamp;
t1 = t3 == null ? lastReport.published : t3;
accessory.datePublished = t1;
if (oldTs == null || oldTs._value !== t1._value)
latestReportTS = lastReport.timestamp;
if (latestReportTS == null)
latestReportTS = lastReport.published;
if (oldTs == null || oldTs._value < latestReportTS._value) {
t1 = lastReport.latitude;
t1.toString;
t3 = lastReport.longitude;
t3.toString;
accessory.set$lastLocation(new A.LatLng(t1, t3));
accessory.datePublished = latestReportTS;
$async$self.notifyListeners$0();
}
}
for (i = 0; i < decryptedReports.length; ++i) {
report = decryptedReports[i];
Expand Down

0 comments on commit 8e1f8e2

Please sign in to comment.