Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Merge branch 'release' into Pale_Moon-release | wolfbeast | 2020-01-27 | -4/+20 |
|\ | ||||
| * | Fix whitespace. | athenian200 | 2020-01-27 | -1/+1 |
| | | ||||
| * | Issue #1349 - Stop 2xx FTP responses from causing browser to hang. | athenian200 | 2020-01-27 | -4/+20 |
| | | | | | | | | | | | | LIST and RETR still appear to work as intended on ftp:// URLs after my changes. I wasn't able to test STOR because the browser doesn't appear to support FTP uploads at this time (although our FTP implementation appears perfectly capable of doing an FTP upload.) If I understood the issue correctly, though, what we're doing is ensuring that we receive a preliminary 100 response from the FTP server for a given action before jumping to the 200 code describing what we do if the action was completed. Even though it makes no logical sense for a server to say an action was completed before it was initiated, someone could write a really annoying FTP server that takes advantage of this fact to crash the browser if they wanted. | |||
* | | Merge branch 'release' into Pale_Moon-release | wolfbeast | 2020-01-22 | -365/+166 |
|\| | ||||
| * | Issue #1358 - Default to SSL/TLS when using the Account Wizard | Matt A. Tobin | 2020-01-20 | -3/+6 |
| | | ||||
| * | Issue #1362 - Revert "Implement regular expression lookbehind" | wolfbeast | 2020-01-19 | -359/+157 |
| | | | | | | | | This reverts commit fa473930f424bf17a9e545b601c84dd2e61364e3. | |||
| * | Issue #1362 - Revert "Update js/src/builtin/TestingFunctions.cpp for | wolfbeast | 2020-01-19 | -3/+3 |
| | | | | | | | | | | | | regex lookbehind changes" This reverts commit e79607a7a694dc2d48d65697b48138fa585145c9. | |||
* | | Merge pull request #1364 from JustOff/PR_github_uao | Moonchild | 2020-01-19 | -0/+1 |
|\ \ | | | | | | | Update UA override for GitHub | |||
| * | | Issue https://github.com/MoonchildProductions/Pale-Moon/issues/1708 - Update ↵ | JustOff | 2020-01-20 | -0/+1 |
|/ / | | | | | | | UA override for GitHub | |||
* | | Bump version for releasePM28.8.1_Release | wolfbeast | 2020-01-11 | -1/+1 |
| | | ||||
* | | Merge branch 'release' into Pale_Moon-release | wolfbeast | 2020-01-11 | -348/+491 |
|\| | ||||
| * | Simplify some alias sets in IonMonkey. | wolfbeast | 2020-01-11 | -11/+2 |
| | | ||||
| * | Prefer file extension as-provided over default extension for mimetype to | wolfbeast | 2020-01-11 | -52/+84 |
| | | | | | | | | look up default applications on Windows | |||
| * | Update GTK clipboard handling | wolfbeast | 2020-01-11 | -25/+31 |
| | | | | | | | | | | | | | | | | - Store the clipboard even if it was set in a GTK dialog. - Fix a GtkTargetList leak. - Notify GTK that the data is no longer available for clipboard_get_cb(), so that GTK will no longer advertise nor attempt to store the data. | |||
| * | Handle missing base64 challenge in NegotiateAuth and NTLMAuth. | wolfbeast | 2020-01-11 | -3/+6 |
| | | ||||
| * | Make copy of list before iterating over it. | Yaron Tausky | 2020-01-11 | -1/+2 |
| | | ||||
| * | Be more consistent about decoding IP addresses in PSM. | wolfbeast | 2020-01-11 | -2/+7 |
| | | ||||
| * | Simplify value setting. | wolfbeast | 2020-01-11 | -66/+39 |
| | | | | | | | | | | This gets rid of unused boolean return values on setters and a level of indirection for calls to set values. | |||
| * | Issue #1348 - Part 3: Set IS_PRIVATE input scope in private browsing. | wolfbeast | 2020-01-11 | -9/+28 |
| | | | | | | | | | | | | | | | | | | Microsoft IME on Windows 10 20H1 (build 19025+) supports IME private mode by input scope. Although previous Windows versions use an undocumented API for Edge and IE only, the next Windows 10 release will use a public API for it. We pre-empt this potential privacy concern by setting the IS_PRIVATE flag when in PB mode. | |||
| * | Issue #1348 - Part 2: Teach IMEState about Private Browsing mode. | wolfbeast | 2020-01-11 | -8/+21 |
| | | ||||
| * | Issue #1348 - Part 1: Clean up input scope support for IMM32. | Makoto Kato | 2020-01-11 | -50/+26 |
| | | | | | | | | Use AutoTArray to set input scope. | |||
| * | Reject sample rates that are out-of-range for libsoundtouch. | wolfbeast | 2020-01-11 | -3/+8 |
| | | | | | | | | | | We never reach this with our normal use of this lib but adding the sanity check just in case. (ported from upstream) | |||
| * | Bug 1599054 - allow callers to ommit sending OAuth2 client_secret parameter. | Gaming4JC | 2020-01-11 | -2/+21 |
| | | ||||
| * | Bug 1597933 - Use URLSearchParams for setting params for OAuth2 ↵ | Gaming4JC | 2020-01-11 | -20/+37 |
| | | | | | | | | authorization request. | |||
| * | Bug 1597933 - use fetch + URLSearchParms instead of Http.jsm to request ↵ | Gaming4JC | 2020-01-11 | -32/+32 |
| | | | | | | | | OAuth2 access token. | |||
| * | Bug 1597933 - don't pass string constants to determine OAuth refresh token ↵ | Gaming4JC | 2020-01-11 | -10/+16 |
| | | | | | | | | or not. | |||
| * | Bug 1597933 - improve OAuth2 params parsing. | Gaming4JC | 2020-01-11 | -15/+7 |
| | | ||||
| * | Bug 1597933 - clean up OAuth2 code: remove responseType which is always code. | Gaming4JC | 2020-01-11 | -9/+6 |
| | | | | | | | | Response type token is part of the OAuth 2.0 Implicit Flow which is not used in Mail Applications, but also discouraged by the OAuth Working Group: https://developer.okta.com/blog/2019/05/01/is-the-oauth-implicit-flow-dead | |||
| * | Bug 1453643 - Enable proper retry on oauth2 authenication failure. | Gaming4JC | 2020-01-11 | -26/+34 |
| | | | | | | | | This prevents mail applications from attempting to use an unauthenticated connection to mailbox(s) and avoid unexpected deletion of local mbox files and subsequent re-download of mailbox content over imap. | |||
| * | Bug 1176399 - Multiple requests for master password when GMail OAuth2 is ↵ | Gaming4JC | 2020-01-11 | -21/+101 |
| | | | | | | | | enabled. | |||
* | | Merge branch 'release' into Pale_Moon-releasePM28.8.0_Release | wolfbeast | 2019-12-09 | -0/+4 |
|\| | ||||
| * | Merge branch 'master' into release | wolfbeast | 2019-12-09 | -0/+4 |
| |\ | ||||
| | * | No Issue - Execute the precomplete command on *nix AltPackaging | Matt A. Tobin | 2019-12-09 | -0/+4 |
| | | | | | | | | | | | | Windows does not need this as mar generation is dependent on the NSIS Installer which already contains the call | |||
* | | | Version bump for release | wolfbeast | 2019-12-07 | -1/+1 |
| | | | ||||
* | | | Fix incorrect entry of jnlp in XPCOM executables list. | wolfbeast | 2019-12-07 | -1/+0 |
| | | | ||||
* | | | Merge branch 'release' into Pale_Moon-release | wolfbeast | 2019-12-07 | -75268/+595615 |
|\| | | ||||
| * | | Merge branch 'master' into release | wolfbeast | 2019-12-07 | -20/+34 |
| |\| | ||||
| | * | Merge branch 'release' | wolfbeast | 2019-12-07 | -0/+0 |
| | |\ | | |/ | |/| | ||||
| * | | Merge branch 'master' into release | wolfbeast | 2019-12-06 | -75268/+595601 |
| |\ \ | ||||
| | | * | Merge pull request #1314 from g4jc/mailnews_patches | New Tobin Paradigm | 2019-12-06 | -20/+34 |
| | |/| | | | | | | | | | Mailnews Nov/Dec Updates | |||
| | | * | Bug 1571481 - Improve multipart/alternative. | Gaming4JC | 2019-12-02 | -20/+25 |
| | | | | | | | | | | | | | | | | | | | | | | | | w/ Fixup for 1464056 - Follow-up: rename pref to align with mailnews.p7m_external (which was already in 52.x but missing a single line) Tag #1311 | |||
| | | * | Bug 1482248 - don't crash on empty file name in ↵ | Gaming4JC | 2019-12-02 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | nsMsgLocalStoreUtils::nsShouldIgnoreFile. Tag #1311 | |||
| | | * | Bug 1509685 - Add more bounds checking in ↵ | Gaming4JC | 2019-12-02 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | nsMsgDBView::UpdateDisplayMessage() to avoid crashes Tag #1311 | |||
| | * | | Update NSS version. | wolfbeast | 2019-12-06 | -6/+8 |
| | | | | ||||
| | * | | Add missing call to WaitForIsDebuggerRegistered | wolfbeast | 2019-12-06 | -0/+6 |
| | | | | ||||
| | * | | [NSS] Bug 1586176 - EncryptUpdate should use maxout not block size. | Craig Disselkoen | 2019-12-06 | -1/+1 |
| | | | | ||||
| | * | | Check return value of PeerConnectionImpl::GetFingerprint. | Christian Holler | 2019-12-06 | -1/+2 |
| | | | | ||||
| | * | | [NSS] Bug 1508776 - Remove unneeded refcounting from SFTKSession | J.C. Jones | 2019-12-06 | -24/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SFTKSession objects are only ever actually destroyed at PK11 session closure, as the session is always the final holder -- and asserting refCount == 1 shows that to be true. Because of that, NSC_CloseSession can just call `sftk_DestroySession` directly and leave `sftk_FreeSession` as a no-op to be removed in the future. | |||
| | * | | Initialize all fields of GdkEvents in nsClipboard.cpp | wolfbeast | 2019-12-06 | -2/+2 |
| | | | | ||||
| | * | | Fix incorrect values for saving ordered lists as text. | wolfbeast | 2019-12-06 | -29/+33 |
| | | | |