boklm pushed to branch main at The Tor Project / Applications /
tor-browser-build
Commits:
ad568972 by Nicolas Vigier at 2025-10-21T19:32:33+02:00
Bug 41608: Add per-platform numbers for incrementals in count-mar-downloads
- - - - -
1 changed file:
- tools/count-mar-downloads
Changes:
=====================================
tools/count-mar-downloads
=====================================
@@ -81,6 +81,7 @@ sub parse_log_file {
$downloads{$version}{OS}{$os} += 1;
$downloads{$version}{incremental_update_total} += 1;
$downloads{$version}{incremental_update}{$incremental_from} += 1;
+ $downloads{$version}{incremental_update_by_OS}{$os} += 1;
}
}
}
@@ -115,6 +116,9 @@ sub print_results {
foreach my $incremental_from (sort keys
%{$downloads{$version}{incremental_update}}) {
print " Incremental updates from $incremental_from:
$downloads{$version}{incremental_update}{$incremental_from}\n";
}
+ foreach my $os (sort keys
%{$downloads{$version}{incremental_update_by_OS}}) {
+ print " Incremental updates on $os:
$downloads{$version}{incremental_update_by_OS}{$os}\n";
+ }
}
print "\n";
}
View it on GitLab:
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ad568972f543d45703c32461b1b7a57e022e5dd3
--
View it on GitLab:
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/ad568972f543d45703c32461b1b7a57e022e5dd3
You're receiving this email because of your account on gitlab.torproject.org.
_______________________________________________
tbb-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]