Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
| * | | [PALEMOON] Fix typo in tabbrowser.xml | janekptacijarabaci | 2018-04-28 | -1/+1 | |
| | | | |||||
| * | | [PALEMOON] Style clean up in browser.js | janekptacijarabaci | 2018-04-28 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵ | janekptacijarabaci | 2018-04-28 | -397/+869 | |
| |\| | | | | | | | | | | pm_url_1 | ||||
| * | | [PALEMOON] [frontend vs backend] Downloads: Fix - the context menu - "Copy ↵ | janekptacijarabaci | 2018-04-26 | -8/+3 | |
| | | | | | | | | | | | | | | | | | | Download Link" Issue #121 | ||||
| * | | Bug 1243445 - Pasting an invalid URL breaks the Downloads View in the Library | janekptacijarabaci | 2018-04-25 | -0/+4 | |
| | | | | | | | | | | | | Issue #121 | ||||
| * | | Bug 945707 - Pausing a download fails when done after a retry + follow up ↵ | janekptacijarabaci | 2018-04-25 | -21/+16 | |
| | | | | | | | | | | | | | | | | | | | | | | | | (see the description) Issue #121 [follow up] Bug 92737 - Part 9: Download multiple files when multiple items are dropped on Downloads view in Library Window | ||||
| * | | Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵ | janekptacijarabaci | 2018-04-25 | -3934/+7345 | |
| |\ \ | | | | | | | | | | | | | pm_url_1 | ||||
| * \ \ | Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵ | janekptacijarabaci | 2018-04-17 | -475/+190 | |
| |\ \ \ | | | | | | | | | | | | | | | | pm_url_1 | ||||
| * | | | | [PALEMOON] Remove unused Task.jsm in openLocation.js | janekptacijarabaci | 2018-04-17 | -1/+0 | |
| | | | | | |||||
| * | | | | [PALEMOON] Fix conflict in openLocation.js | janekptacijarabaci | 2018-04-17 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | https://github.com/MoonchildProductions/UXP/commit/931950a880b3550490422b1855c509be10586858#diff-2f4cb31954d5857012f1452698b9bfce | ||||
| * | | | | Fix flags for "loadURIWithFlags" in openLocation.js | janekptacijarabaci | 2018-04-15 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | Issue #121 | ||||
| * | | | | Maybe fix openLocation.js (to Promise) | janekptacijarabaci | 2018-04-15 | -2/+1 | |
| | | | | | | | | | | | | | | | | | | | | Issue #121 | ||||
| * | | | | Bug 92737 - Part 10: Use browserDragAndDrop.dropLinks in urlbarBindings.xml | janekptacijarabaci | 2018-04-15 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | | | Issue #121 | ||||
| * | | | | Bug 92737 - Part 9: Download multiple files when multiple items are dropped ↵ | janekptacijarabaci | 2018-04-15 | -4/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on Downloads view in Library Window Issue #121 | ||||
| * | | | | Bug 92737 - Part 8: Download multiple files when multiple items are dropped ↵ | janekptacijarabaci | 2018-04-15 | -9/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on Downloads button Issue #121 | ||||
| * | | | | Bug 92737 - Part 7: Open multiple windows when multiple items are dropped on ↵ | janekptacijarabaci | 2018-04-15 | -5/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New Window button Issue #121 | ||||
| * | | | | Bug 92737 - Part 6: Open multiple tabs when multiple items are dropped on ↵ | janekptacijarabaci | 2018-04-15 | -5/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New Tab button Issue #121 | ||||
| * | | | | Bug 92737 - Part 5: Set multiple homepage when multiple items are dropped on ↵ | janekptacijarabaci | 2018-04-15 | -7/+16 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Home button Issue #121 | ||||
| * | | | | Bug 92737 - Part 4: Open multiple tabs when multiple items are dropped on tab | janekptacijarabaci | 2018-04-15 | -25/+21 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + Follow up: Bug 92737 - Part 3: Open multiple tabs when multiple items are dropped on remote content area - browser.js: "usercontextid" (default: 0) | ||||
| * | | | | Bug 92737 - Part 2: Open multiple tabs when multiple items are dropped on ↵ | janekptacijarabaci | 2018-04-15 | -12/+80 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-remote content area browser.js: // handleDroppedLink has the following 2 overloads: // handleDroppedLink(event, url, name) // handleDroppedLink(event, links) function handleDroppedLink(event, urlOrLinks, name) { let links; if (Array.isArray(urlOrLinks)) { links = urlOrLinks; } else { links = [{ url: urlOrLinks, name, type: "" }]; } ...it is in the previous commit. | ||||
| * | | | | Bug 1100294 - Turn getShortcutOrURIAndPostData() into a task that uses the ↵ | janekptacijarabaci | 2018-04-15 | -72/+99 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | new keywords API Issue #121 | ||||
| * | | | | Bug 1100291 - Make getShortcutOrURIAndPostData() async by calling the passed ↵ | janekptacijarabaci | 2018-04-15 | -10/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | callback off a zero timeout Issue #112 | ||||
| * | | | | Bug 989984 - getShortcutOrURIAndPostData should have a synchronous callback ↵ | janekptacijarabaci | 2018-04-15 | -135/+152 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | behavior Issue #112 | ||||
| * | | | | Bug 846635 - Use asynchronous getCharsetForURI in getShortcutOrURI | janekptacijarabaci | 2018-04-15 | -259/+304 | |
| | | | | | | | | | | | | | | | | | | | | Issue #121 | ||||
* | | | | | Provide LoadInfo for NewChannel() call in 'about' protocol handler | JustOff | 2018-04-27 | -2/+7 | |
| |_|_|/ |/| | | | |||||
* | | | | [PALEMOON] Remove "dom.push.enabled" from aboutPermissions.js (consolidated ↵ | janekptacijarabaci | 2018-04-27 | -2/+0 | |
| | | | | | | | | | | | | | | | | to "dom.webnotifications.enabled") | ||||
* | | | | [PALEMOON] Remove double rows from aboutPermissions.js | janekptacijarabaci | 2018-04-27 | -2/+0 | |
| | | | | |||||
* | | | | Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵ | janekptacijarabaci | 2018-04-27 | -56/+136 | |
|\ \ \ \ | | | | | | | | | | | | | | | | pm_permissions_1 | ||||
| * | | | | [PALEMOON] Bug 723951 - Popup notification does not continue when the tab ↵ | janekptacijarabaci | 2018-04-26 | -56/+136 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | move to other window Issue #121 | ||||
* | | | | | Bug 1288557 - Part 1: Replace custom exceptions dialog with usage of permissions | janekptacijarabaci | 2018-04-26 | -6/+20 | |
| | | | | | |||||
* | | | | | Bug 1288557 - Part 0: Fix permissions dialog while receiving deleted event | janekptacijarabaci | 2018-04-26 | -1/+1 | |
| | | | | | |||||
* | | | | | Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵ | janekptacijarabaci | 2018-04-26 | -22/+48 | |
|\| | | | | | | | | | | | | | | | | | | | pm_permissions_1 | ||||
| * | | | | Merge pull request #269 from adeshkp/button_messages | Moonchild | 2018-04-26 | -22/+48 | |
| |\ \ \ \ | | |_|_|/ | |/| | | | Improve some button labels in preferences | ||||
| | * | | | [Pale Moon] Change button labels in cookies dialog | adeshkp | 2018-04-26 | -22/+48 | |
| | | | | | |||||
* | | | | | [follow up] Bug 1216684 - Notification permissions ... in private windows - ↵ | janekptacijarabaci | 2018-04-26 | -0/+10 | |
| | | | | | | | | | | | | | | | | | | | | implemented "_getBrowserForRequest" function (e10 off only) | ||||
* | | | | | [PALEMOON] Preferences: Fix permissions.xul (an introductory comment) | janekptacijarabaci | 2018-04-26 | -4/+4 | |
| | | | | | |||||
* | | | | | [follow up] Bug 1192458, Part 1 - Consolidate push and desktop notification ↵ | janekptacijarabaci | 2018-04-26 | -21/+0 | |
| | | | | | | | | | | | | | | | | | | | | permissions | ||||
* | | | | | [follow up] Bug 1216271 - Display a notification upon upgrade for users who ↵ | janekptacijarabaci | 2018-04-26 | -9/+11 | |
| | | | | | | | | | | | | | | | | | | | | currently allow notifications for at least one site | ||||
* | | | | | [PALEMOON] Permisions Manager: Added a comment | janekptacijarabaci | 2018-04-26 | -0/+4 | |
| | | | | | |||||
* | | | | | Bug 1280775 - null check in removePermission to prevent crash: permission ↵ | janekptacijarabaci | 2018-04-26 | -13/+13 | |
| | | | | | | | | | | | | | | | | | | | | manager change | ||||
* | | | | | Bug 1212610 - Fix sorting permissions by site due a legacy property name ↵ | janekptacijarabaci | 2018-04-26 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | being referenced | ||||
* | | | | | Bug 1190175 - Update offlineapp listbox to display origin property | janekptacijarabaci | 2018-04-26 | -1/+1 | |
| | | | | | |||||
* | | | | | Bug 1189073 - Handle entering 'localhost:12345' into the cookie exceptions ↵ | janekptacijarabaci | 2018-04-26 | -2/+13 | |
| | | | | | | | | | | | | | | | | | | | | dialog correctly | ||||
* | | | | | Bug 1185365 - Correctly deal with full URLs in the cookie exceptions dialog | janekptacijarabaci | 2018-04-26 | -1/+1 | |
| | | | | | |||||
* | | | | | Bug 1173523 - Part 9: Update pageinfo to use the new API for nsIPermission | janekptacijarabaci | 2018-04-26 | -3/+4 | |
| | | | | | |||||
* | | | | | Bug 1173523 - Part 7: Update advanced.js to use new API for nsIPermission | janekptacijarabaci | 2018-04-26 | -18/+14 | |
| | | | | | |||||
* | | | | | Bug 1173523 - Part 5: Update the preferences permissions UI to use new API ↵ | janekptacijarabaci | 2018-04-26 | -37/+41 | |
| | | | | | | | | | | | | | | | | | | | | for nsIPermission (+ fix typos) | ||||
* | | | | | Bug 1173523 - Part 4: Update about:permissions to use new API for nsIPermission | janekptacijarabaci | 2018-04-26 | -61/+58 | |
| | | | | | |||||
* | | | | | Bug 1173523 - Part 3: Update PluginContent to use new API for nsIPermission | janekptacijarabaci | 2018-04-26 | -28/+12 | |
| | | | | | |||||
* | | | | | Bug 1221330 - Show the app icon in the XUL upgraded notifications alert | janekptacijarabaci | 2018-04-26 | -1/+12 | |
| | | | | |