Page MenuHomeGitPull.it

D124.1775778269.diff
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

D124.1775778269.diff

diff --git a/app/build.gradle b/app/build.gradle
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -11,8 +11,8 @@
applicationId "it.reyboz.bustorino"
minSdkVersion 16
targetSdkVersion 33
- versionCode 47
- versionName "1.19.0"
+ versionCode 48
+ versionName "1.19.1"
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
javaCompileOptions {
diff --git a/cli/diff-changelog.php b/cli/diff-changelog.php
--- a/cli/diff-changelog.php
+++ b/cli/diff-changelog.php
@@ -80,6 +80,7 @@
$tasks = [];
$tasks_phid = [];
+$tasks_phids_from_diff_phid = [];
// cache with users by phids
$USERS_BY_PHID = [];
@@ -92,9 +93,21 @@
];
// find Tasks attached to Diff patch
+echo json_encode($edge_api_parameters, JSON_PRETTY_PRINT) . "\n";
$edge_result = $client->callMethodSynchronous( 'edge.search', $edge_api_parameters );
+echo json_encode($edge_result, JSON_PRETTY_PRINT) . "\n";
foreach( $edge_result['data'] as $data ) {
- $tasks_phid[] = $data['destinationPHID'];
+ $diff_phid = $data['sourcePHID'];
+ $task_phid = $data['destinationPHID'];
+ $tasks_phid[] = $task_phid;
+ $tasks_phids_from_diff_phid[$diff_phid][] = $task_phid;
+}
+
+// Show Diffs that have no Tasks so you can fix on Phorge
+foreach( $tasks_phids_from_diff_phid as $diff_phid => $diff_task_phids ) {
+ if( !$diff_task_phids ) {
+ echo "Diff $diff_phid has no Tasks\n";
+ }
}
// https://gitpull.it/conduit/method/maniphest.search/
diff --git a/metadata/en-US/changelogs/48.txt b/metadata/en-US/changelogs/48.txt
new file mode 100644
--- /dev/null
+++ b/metadata/en-US/changelogs/48.txt
@@ -0,0 +1,9 @@
+Fix crash of app when on the map screen when the database is not completely up-to-date
+Reported by marcoM32
+Resolved by fabio.mazza
+https://gitpull.it/T1170
+
+Fix arrivals not showing when different screen chosen to show on startup
+Reported by marcoM32
+Resolved by fabio.mazza
+https://gitpull.it/T1172
diff --git a/metadata/it/changelogs/48.txt b/metadata/it/changelogs/48.txt
new file mode 100644
--- /dev/null
+++ b/metadata/it/changelogs/48.txt
@@ -0,0 +1,9 @@
+Risoluzione bug che portava al crash con la mappa causato da dati mancanti nel database
+Segnalato da marcoM32
+Risolto da fabio.mazza
+https://gitpull.it/T1172
+
+Corretta visualizzazione degli arrivi quando si personalizza la schermata da mostrare all'avvio
+Segnalato da marcoM32
+Risolto da fabio.mazza
+https://gitpull.it/T1172

File Metadata

Mime Type
text/plain
Expires
Fri, Apr 10, 01:44 (8 h, 27 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1833632
Default Alt Text
D124.1775778269.diff (2 KB)

Event Timeline