Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • tpo/applications/mullvad-browser
  • pierov/mullvad-browser
  • ma1/privacy-browser
  • morgan/mullvad-browser
  • boklm/privacy-browser
  • henry/mullvad-browser
  • NoisyCoil/mullvad-browser
  • jwilde/mullvad-browser
  • dan/mullvad-browser
  • brizental/mullvad-browser
  • securitybrahh/mullvad-browser
  • clairehurst/mullvad-browser
12 results
Show changes
Commits on Source (3)
browser/branding/mb-alpha/content/about.png

17.7 KiB | W: 0px | H: 0px

browser/branding/mb-alpha/content/about.png

10.6 KiB | W: 0px | H: 0px

browser/branding/mb-alpha/content/about.png
browser/branding/mb-alpha/content/about.png
browser/branding/mb-alpha/content/about.png
browser/branding/mb-alpha/content/about.png
  • 2-up
  • Swipe
  • Onion skin
browser/branding/mb-nightly/content/about.png

18 KiB | W: 0px | H: 0px

browser/branding/mb-nightly/content/about.png

10.6 KiB | W: 0px | H: 0px

browser/branding/mb-nightly/content/about.png
browser/branding/mb-nightly/content/about.png
browser/branding/mb-nightly/content/about.png
browser/branding/mb-nightly/content/about.png
  • 2-up
  • Swipe
  • Onion skin
browser/branding/mb-release/content/about.png

13.7 KiB | W: 0px | H: 0px

browser/branding/mb-release/content/about.png

10.2 KiB | W: 0px | H: 0px

browser/branding/mb-release/content/about.png
browser/branding/mb-release/content/about.png
browser/branding/mb-release/content/about.png
browser/branding/mb-release/content/about.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -52,5 +52,5 @@ ServerURL=@MOZ_CRASHREPORTER_URL@/submit?id=@MOZ_APP_ID@&version=@MOZ_APP_VERSIO
#if MOZ_UPDATER
[AppUpdate]
URL=https://cdn.mullvad.net/browser/update_responses/%CHANNEL%/%BUILD_TARGET%/%VERSION%/ALL
URL=https://cdn.mullvad.net/browser/update_responses/update_1/%CHANNEL%/%BUILD_TARGET%/%VERSION%/ALL
#endif
......@@ -851,13 +851,11 @@ static int ensure_copy_recursive(const NS_tchar* path, const NS_tchar* dest,
return READ_ERROR;
}
#ifdef XP_WIN
#ifdef XP_UNIX
if (S_ISLNK(sInfo.st_mode)) {
return ensure_copy_symlink(path, dest);
}
#endif
#ifdef XP_UNIX
// Ignore Unix domain sockets. See #20691.
if (S_ISSOCK(sInfo.st_mode)) {
return 0;
......