| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-09 | Remove obsolete comment1.52 | Phil Crosby | |
| 2015-09-09 | Merge pull request #1764 from mrmr1993/use-sync-for-cake-package | Phil Crosby | |
| Use spawn instead of exec-sync for cake package | |||
| 2015-09-09 | Update version number | Phil Crosby | |
| 2015-09-09 | Simplify release notes | Phil Crosby | |
| 2015-09-09 | Tweak option text | Phil Crosby | |
| 2015-09-09 | Merge pull request #1805 from smblott-github/vomnibar-alt-for-new-tab | Stephen Blott | |
| Alt modifier on Enter in vomnibar opens in new tab | |||
| 2015-09-09 | Alt modifier in vomnibar opens in new tab. | Stephen Blott | |
| 2015-09-07 | Tweak draft 1.52 release notes. | Stephen Blott | |
| 2015-09-07 | Tweak draft 1.52 release notes. | Stephen Blott | |
| 2015-09-07 | Merge pull request #1803 from mrmr1993/scroll-in-shadow-dom | Stephen Blott | |
| Fix scrolling for webpages using web components | |||
| 2015-09-07 | Traverse shadow DOMs when looking for scrollable elements | mrmr1993 | |
| 2015-09-06 | Merge pull request #1774 from mrmr1993/single-character-passkeys-only | Stephen Blott | |
| Only apply passkeys to single character keys explicitly | |||
| 2015-09-06 | Merge branch 'gdh1995-better-KeydownEvents' | Stephen Blott | |
| 2015-09-06 | Rename stringify to getEventCode. | Stephen Blott | |
| 2015-09-06 | Tweak README/release notes. | Stephen Blott | |
| 2015-09-06 | Merge pull request #1798 from gdh1995/run-on-xml-pages | Stephen Blott | |
| Run on XML pages (version 2) | |||
| 2015-08-29 | use documentReady instead of setTimeout to init focusThisFrame | gdh1995 | |
| 2015-08-29 | Minor tweaks (clipboard). | Stephen Blott | |
| 1. We're not using Clipboard in the the content scripts, so don't import it. 2. Use consistent syntax for method calls. This commit is a no-op. | |||
| 2015-08-28 | a better way to detect document types | gdh1995 | |
| On a XML view page, createElement will create an "Element" object Otherwise, createElement('div') will get an object : HTMLDivElement >> HTMLElement >> Element | |||
| 2015-08-28 | fix a new typo | gdh1995 | |
| oh my god | |||
| 2015-08-28 | remove `.bind` imported in da8653f because dom tests fail if bind exists | gdh1995 | |
| 2015-08-28 | fix a typo in PR #1798 | gdh1995 | |
| 2015-08-28 | clean code | gdh1995 | |
| 2015-08-28 | fix a bug that Clipboard fails without DomUtils | gdh1995 | |
| 2015-08-28 | fix a bug that Utils using DomUtils | gdh1995 | |
| remove Utils.createElementFromHtml since it's not in use | |||
| 2015-08-28 | fix the bug that XML view page may change itself into RSS document | gdh1995 | |
| 2015-08-26 | Use createElementNS for XML documents and remove XML specific codepaths | mrmr1993 | |
| This implements @gdh1995's idea from #1796. | |||
| 2015-08-22 | Merge pull request #1794 from smblott-github/fix-perpetual-scroll | Stephen Blott | |
| Prevent perpetual scroll. | |||
| 2015-08-22 | Merge pull request #1771 from mrmr1993/detect-fixed-position-elements-linkhints | Stephen Blott | |
| Treat css position 'fixed' like 'absolute' for link hints on children 0-width/height parents | |||
| 2015-08-22 | Prevent perpetual scroll. | Stephen Blott | |
| If we miss the keyup event while a smooth scroll is active (because the focus changes), then we scroll forever. This stops scrolling on blur. Fixes #1788. | |||
| 2015-08-22 | Merge pull request #1745 from poacher2k/patch-1 | Stephen Blott | |
| Add support for ngClick to link hints | |||
| 2015-08-22 | Merge pull request #1772 from gdh1995/focus-end-for-input | Stephen Blott | |
| Move the caret to end in `focusInput` | |||
| 2015-08-20 | Merge | Daniel Skogly | |
| 2015-08-13 | Remove an unused function, restructure to be like the execSync code | mrmr1993 | |
| 2015-08-13 | Use spawnSync rather than spawn to provide synchronous processes | mrmr1993 | |
| 2015-07-29 | fix bugs in KeydownEvents so that correct keyup events will be handled | gdh1995 | |
| 2015-07-26 | Only apply passkeys to single character keys explicitly | mrmr1993 | |
| Before this change, a string in KeyboardUtils.keyNames could have the key it represents disabled if * its letters were in alphabetical order, and * the user has set all of its letters as passkeys, with none in between. For example, imagining that "del" (for delete) was in KeyboardUtils.keyNames, the passkeys "dpyl0e" would cause the delete key to be a passkey too. This commit fixes the issue by only applying passkeys when keyChar is a single character. | |||
| 2015-07-20 | move the caret to end in `focusInput` | gdh1995 | |
| 2015-07-20 | Treat links with fixed position children like absolutely positioned | mrmr1993 | |
| This fixes #1770. | |||
| 2015-07-13 | Use spawn instead of exec-sync for cake package | mrmr1993 | |
| exec-sync fails to build for some environments and architectures (including mine). As spawn is already necessary for building, we know it will be available, and so can use that via a callback chain to run the packaging tasks. | |||
| 2015-07-02 | Better angularJS detection. | Stephen Blott | |
| See @mrmr1993's comment in 2cc7dc1d2164b5dbb27bcc1d4bc0517402dd7581. | |||
| 2015-07-01 | Re-work angularJS checks. | Stephen Blott | |
| Re-working of @poacher2k's ideas from #1745. - check whether AngularJS is being used. - avoid building the AngularJS attribute strings multiple times. - avoid building them *at all* if AngularJS is not being used. | |||
| 2015-06-30 | Merge pull request #1751 from smblott-github/set-new-tab-parent | Stephen Blott | |
| Set the parent tab when creating tabs. | |||
| 2015-06-26 | Fix oversight from #1693. | Stephen Blott | |
| (We need to use "this" inside this function.) | |||
| 2015-06-26 | Fix oversight from #1693. | Stephen Blott | |
| (We need to use "this" inside this function.) | |||
| 2015-06-25 | Make global marks consistent with other tab creation operations. | Stephen Blott | |
| This makes global marks use the same code for opening new tabs as other operations. Thus, the new tab appears in the same position as it would if it were created, for example, via the vomnibar. To do this properly, we move the three tab-creating functions into an object which can be (and is) exported (TabOperations). Also fixes these three operations such that they all take the same arguments; that is (request, callback). Not all of these callbacks are being used. But we should be consistent. | |||
| 2015-06-25 | Set the parent tab when creating tabs. | Stephen Blott | |
| If the tab is subsequently deleted, then we return to the original tab (as opposed to the one on its right). | |||
| 2015-06-25 | Merge branch 'hud-iframe-input-with-store-all-settings' | Stephen Blott | |
| 2015-06-25 | Merge branch 'store-all-settings' into hud-iframe-input-with-store-all-settings | Stephen Blott | |
| 2015-06-23 | *Always* collapse selection on yank. | Stephen Blott | |
| This only affects the transition from visual mode back to edit mode. Previously, we were incorrectly leaving the selection in place. (The comment above was correct, but the implementation wasn't.) | |||
