Skip to content

Latest commit

 

History

History
70 lines (39 loc) · 2.46 KB

CHANGELOG.md

File metadata and controls

70 lines (39 loc) · 2.46 KB

0.0.1

  • Initial release.

0.0.2

  • Add own tipsy plugin to allow for tooltips.

0.0.3

  • Change the scope of the .tipsy selector as it's inserted outside of the Glimpse div.

0.0.4

  • Don't capture being pressed when in combination withcmd`
  • Support for Turbolinks (#14)

0.0.5

  • Namespace the tooltips to the .glimpse-tooltip class name to not conflict with any application styles for .tooltip. (#18)

0.0.6

  • Added Peek::Views::View#parse_options that gets called within initialize for subclasses to use to parse their options.

0.1.0

  • Introduced a new JS event peek:render that includes the request id and request payload data that is used to update the information in the bar.
  • Request information has moved from the peek/results partial to an AJAX request that happens on page load, and when PJAX/Turbolinks change pages.
  • Removed the need for peek/results partial.
  • Introduced a Redis and Memcache adapter for multi-server environments to store request payloads.
  • Tooltips automatically repositions depending on where the Peek bar is.

0.1.1

  • Fix bug with how peek:render was passing arguments around.

0.1.2

0.1.3

  • Remove Redis dependency from Gemfile

0.1.4

  • Don't access xhr object when not present in pjax:end

0.1.5

  • Don't trigger peek:update event when the peek bar isn't present - #37 @dewski
  • Add after_request helper method for Peek::Views::View to help reset state

0.1.6

  • Use event.which for normalization between event.keyCode and event.charCode - #38 @leongersing

0.1.7

  • Support all Rails 3.x.x versions by not using request.uuid instead env - #39 @bryanmikaelian

0.1.8

  • Include the ControllerHelpers directly into ActionController::Base - #41 @lucasmazza

0.1.9

  • Rescue & log Dalli exceptions instead of crashing - #50 @barunio