[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] [Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41177: Include Windows installers without -portable- in download-*.json files



Title: GitLab

boklm pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build

Commits:

  • dcc49985
    by Nicolas Vigier at 2024-06-20T12:12:50+02:00
    Bug 41177: Include Windows installers without -portable- in download-*.json files
    
    After tor-browser-build#41167, the portable Windows installer are not
    generated anymore for Mullvad Browser. We should include the normal
    installer (without `-portable-` or `-install-` in the filename) in
    the download-*.json files.
    

1 changed file:

Changes:

  • tools/update-responses/update_responses
    ... ... @@ -138,9 +138,9 @@ sub get_version_downloads {
    138 138
                 $os = 'macos';
    
    139 139
             } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
    
    140 140
                 $os = $1;
    
    141
    -        } elsif ($file =~ m/^$config->{appname_bundle}-windows-x86_64-portable-${version}.exe$/) {
    
    141
    +        } elsif ($file =~ m/^$config->{appname_bundle}-windows-x86_64-(portable-|)${version}.exe$/) {
    
    142 142
                 $os = 'win64';
    
    143
    -        } elsif ($file =~ m/^$config->{appname_bundle}-windows-i686-portable-${version}.exe$/) {
    
    143
    +        } elsif ($file =~ m/^$config->{appname_bundle}-windows-i686-(portable-|)${version}.exe$/) {
    
    144 144
                 $os = 'win32';
    
    145 145
             } else {
    
    146 146
                 next;
    
    ... ... @@ -167,7 +167,7 @@ sub get_perplatform_downloads {
    167 167
               $os = 'macos';
    
    168 168
             } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
    
    169 169
               $os = $1;
    
    170
    -        } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-portable-${version}.exe$/) {
    
    170
    +        } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-(portable-|)${version}.exe$/) {
    
    171 171
               $os = $1;
    
    172 172
             } elsif ($file =~ m/^$config->{appname_bundle}-(android-armv7|android-x86|android-x86_64|android-aarch64)-${version}.apk$/) {
    
    173 173
               $os = $1;
    

  • _______________________________________________
    tor-commits mailing list
    tor-commits@xxxxxxxxxxxxxxxxxxxx
    https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits