jekyll-glossary_tooltip 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5f83067cb6ca64783230d5cbd9631e418b60fff839a7cdef44df1d1c7ec0412
4
- data.tar.gz: 7f79aa92250c38f1650a4e5fdb9a2d1322f113a7689753270408312c12c928a4
3
+ metadata.gz: 27106561fba42677dd2324409e4cf8ad78dfdf8e0bfa598e2c8a4a5aff25583e
4
+ data.tar.gz: 9aef06b73017f60dc04bebc53b38e1a06cd46d24572440a7b5b5d3a52f987aba
5
5
  SHA512:
6
- metadata.gz: e55ab549deddf53b0c1831d562f7814990da41e919a1686aa816390748a0c93ccee9368671b35346a9c0c352d58a4bd874501e270d13d62185642d4ff834b189
7
- data.tar.gz: 969838c0f5cef1cd11786fb04c4d95d476d6974cac0ef3c04701c3b524e3dcdbcc9957d3ce19d09ec6f7df119b627a42cc67cc08a7dcff44ddf670d1a3bf3dcf
6
+ metadata.gz: a70b8ea06d041483fea246db14b00dabe1a54cdcad869982f5edb4428fa3f1b70d263df0cd8a474194bddf3e249875bc3bfb4aa518f02da36fe8e2a412cdf79e
7
+ data.tar.gz: 7e41762075d3b7e346da21e54d3707b0f2e090554175a6f4a439cc7818ae8c217d73da921651f37760030b790d65c158fe0a73b9da0bf0db0bf938141caf2a4a
data/CHANGELOG.md CHANGED
@@ -1,2 +1,5 @@
1
+ ## [1.0.0] - 2021-08-05
2
+ - No changes from `v0.1.0` but just bumping to final first major release version!
3
+
1
4
  ## [0.1.0] - 2021-08-05
2
5
  - First release version. The plugin is fully working but I suspect that there might be a few point releases just to nail the release process. Once this is working, there will soon be an 1.0.0 release!
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Jekyll Glossary Tooltip Tag Plugin UNRELEASED
1
+ # Jekyll Glossary Tooltip Tag Plugin
2
2
  [![Gem Version](https://badge.fury.io/rb/jekyll-glossary_tooltip.svg)](https://badge.fury.io/rb/jekyll-glossary_tooltip)
3
3
  [![Gem Downloads](https://ruby-gem-downloads-badge.herokuapp.com/jekyll-glossary_tooltip?color=brightgreen&type=total&label=gem%20downloads)](https://rubygems.org/gems/jekyll-glossary_tooltip)
4
4
  [![Travis Build Status](https://img.shields.io/travis/erikw/jekyll-glossary_tooltip/main?logo=travis)](https://travis-ci.com/erikw/jekyll-glossary_tooltip)
@@ -7,7 +7,6 @@
7
7
 
8
8
  <img src="/img/tooltip_screenshot.png" width="256" align="right" alt="Screenshot of the glossary tooltip term definition" title="Example of tooltip definition of the term 'Jekyll'.">
9
9
 
10
-
11
10
  This plugin simplifies for your readers and you by making it easy to define terms or abbreviations that needs an explanation. Define a common dictionary of terms and their definition in a YAML file. Then inside markdown files you can use the provided glossary liquid tag to insert a tooltip for a defined word from the dictionary. The tooltip will show the term definition on mouse hover.
12
11
 
13
12
  It's also possible to provide an optional URL to further term definition or source reference. To also support mobile devices, this URL link is placed inside the tooltip pop-up itself, rather than making the term itself clickable. This is so that on mobile device, you will first tap the word to get the hover tooltip, then click the link in the tooltip if desired.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module GlossaryTooltip
5
- VERSION = "0.1.0"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-glossary_tooltip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Westrup