Browse Source

Release 1.1.1

pull/1378/head
jlukic 10 years ago
parent
commit
ff8086ef44
10 changed files with 17 additions and 12 deletions
  1. 11
      RELEASE-NOTES.md
  2. 2
      dist/components/sidebar.js
  3. 2
      dist/components/sidebar.min.js
  4. 2
      dist/components/step.css
  5. 2
      dist/components/step.min.css
  6. 2
      dist/semantic.css
  7. 2
      dist/semantic.js
  8. 2
      dist/semantic.min.css
  9. 2
      dist/semantic.min.js
  10. 2
      package.json

11
RELEASE-NOTES.md

@ -1,11 +1,16 @@
## RELEASE NOTES
### Version 1.1.1 - December 04, 2014
**Bugs**
- **Step** - Fixes step content appearing overlapped due to use of ``em`` instead of ``rem`` for line-height.
### Version 1.1.0 - December 02, 2014
**Enhancements**
- **Transition** - Transition's caching of final display state and *animation existence* now has improved performance.
- **Popup** - Popup now has a ``settings.prefer`` that defaults to ``adjacent``, prefering adjacent positioning. It can also be set to ``opposite`` to prefer the same position on the opposite side
- **Popup** - Popup can now use a setting ``lastResort``. When set to a position it will be used as a last resort even if popup does not entirely fit on the page.
- **Transition** - Transition's caching of final display state and animation existence now has improved performance.
- **Popup** - Popup now has a ``settings.prefer`` that defaults to ``adjacent``. This setting sets prefered next placement when a popup cannot fit on screen in the chosen placement. ``prefer`` can also be set to ``opposite`` to prefer the same position on the opposite side
- **Popup** - Popup can now use a setting ``lastResort``. When set to a position it will be used as a last resort even if popup does not entirely fit on the page. Setting this to ``false`` will produce an error when a popup cannot fit on screen.
- **Transition** now has ``useFailSafe`` parameter (off by default) to ensure transition callback fires even if native ``onAnimationEnd`` event does not fire due to element visibility. [Chromium Bug Report by Product Manager @ Mozilla](https://code.google.com/p/chromium/issues/detail?id=135350#c2) and [this open issue](https://code.google.com/p/chromium/issues/detail?id=437860)
- **All UI** - Many ``em`` measurements adjusted slightly to calculate out as exact pixel values (Fixes 1px rounding errors)
- **Steps** - Now use global border color

2
dist/components/sidebar.js

@ -385,7 +385,7 @@ $.fn.sidebar = function(parameters) {
transition = module.get.transition(),
$transition = (transition == 'safe')
? $context
: (transition == 'overlay' || module.othersActive())
: (transition == 'overlay' || module.othersVisible())
? $module
: $pusher,
animate,

2
dist/components/sidebar.min.js
File diff suppressed because it is too large
View File

2
dist/components/step.css

@ -155,7 +155,7 @@
font-size: 0em;
background: '';
box-shadow: '';
line-height: 1.142em;
line-height: 1.142rem;
box-sizing: border-box;
border-radius: 0.2857rem;
}

2
dist/components/step.min.css
File diff suppressed because it is too large
View File

2
dist/semantic.css

@ -25056,7 +25056,7 @@ a:hover {
font-size: 0em;
background: '';
box-shadow: '';
line-height: 1.142em;
line-height: 1.142rem;
box-sizing: border-box;
border-radius: 0.2857rem;
}

2
dist/semantic.js

@ -10623,7 +10623,7 @@ $.fn.sidebar = function(parameters) {
transition = module.get.transition(),
$transition = (transition == 'safe')
? $context
: (transition == 'overlay' || module.othersActive())
: (transition == 'overlay' || module.othersVisible())
? $module
: $pusher,
animate,

2
dist/semantic.min.css
File diff suppressed because it is too large
View File

2
dist/semantic.min.js
File diff suppressed because it is too large
View File

2
package.json

@ -1,6 +1,6 @@
{
"name": "semantic-ui",
"version": "1.1.0",
"version": "1.1.1",
"title": "Semantic UI",
"description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.",
"homepage": "http://www.semantic-ui.com",

Loading…
Cancel
Save