susy 1.0.rc.0 → 1.0.rc.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,25 +1,15 @@
1
1
  Susy Changelog
2
2
  ==============
3
3
 
4
- v1.0.alpha.2 [May 12 2012]
5
- --------------------------
4
+ v1.0 [UNRELEASED]
5
+ -----------------
6
6
 
7
- * Fix minor bug with repeated 'display' properties.
8
- * Lower Compass dependency to 0.12.2.rc.0
9
-
10
- v1.0.alpha.1 [May 9 2012]
11
- -------------------------
12
-
13
- Due to a conflict with the Compass CSS3 module, the `columns` mixin has been
14
- renamed `span-columns`. In order to upgrade, you should simply search and replace `@include columns` (or `+columns`) in your project files.
15
-
16
- v1.0.alpha.0 [May 7 2012]
17
- -------------------------
7
+ This release is loaded with new features, but don't let that fool you. Susy
8
+ just became shockingly simple to use. See the [website][site] for details.
18
9
 
19
- *Requires Compass 0.13.alpha.0 or later.*
10
+ Note that the gem name has changed from `compass-susy-plugin` to `susy`.
20
11
 
21
- This release is loaded with new features, but don't let that fool you. Susy
22
- just became shockingly simple to use. See the README for updated usage details.
12
+ [site]: http://susy.oddbird.net/
23
13
 
24
14
  New Features:
25
15
 
@@ -37,6 +27,7 @@ Changed API:
37
27
  * `$col-width` => `$column-width`
38
28
  * `$side-gutter-width` => `$grid-padding`
39
29
  * `+un-column` & `+reset-column` => `+reset-columns`
30
+ * `+columns` => `+span-columns`
40
31
 
41
32
  Removed:
42
33
 
@@ -45,19 +36,27 @@ Removed:
45
36
  * `full` can be replaced by a simple `clear: both;` when needed.
46
37
  * `side-gutter()` is no longer needed. Use `$grid-padding` instead.
47
38
 
48
- Upgrade:
39
+ Other:
40
+
41
+ * Fix minor bug with repeated 'display' properties.
42
+ * Lower Compass dependency to 0.12.2.rc.0
43
+ * Add Sass dependency at 3.2.0.alpha.237
44
+
45
+ ### Upgrade:
49
46
 
50
- 1. Find and replace the 4 simple "Changed API's" listed above.
51
- 2. Remove the `$context` argument from all `omega` mixins.
52
- 3. Remove any mention of `alpha` and `full` in your code.
47
+ 1. Uninstall `compass-susy-plugin` and install `susy` in it's place.
48
+ 2. Find and replace the 5 simple "Changed API's" listed above.
49
+ 3. Remove the `$context` argument from all `omega` mixins.
50
+ 4. Remove any mention of `alpha` and `full` in your code.
53
51
  * Replace `full` with `clear: both;` where necessary.
54
- 4. Remove any mention of `side-gutter()`.
52
+ 5. Remove any mention of `side-gutter()`.
55
53
  * This may require some refactoring, depending on your uses.
56
- 5. [Optional] Any time 'columns' and 'omega' are declared in the same block,
54
+ 6. [Optional] Any time 'columns' and 'omega' are declared in the same block,
57
55
  they can now be joined together. `@include columns(3); @include omega();`
58
56
  can become `@include columns(3 omega)`.
59
57
 
60
- You're done! Stop worrying about all that "nested vs. root" bullshit, and start playing with the new toys!
58
+ You're done! Stop worrying about all that "nested vs. root" bullshit,
59
+ and start playing with the new toys!
61
60
 
62
61
  v0.9 [Apr 25 2011]
63
62
  ------------------
@@ -22,5 +22,16 @@ we just do the math and get out of your way.
22
22
  ## Resources
23
23
  - [Website](http://susy.oddbird.net)
24
24
  - [Changelog](https://github.com/ericam/susy/blob/master/CHANGELOG.mkdn)
25
- - [Tutorial](https://github.com/ericam/susy/blob/master/docs/source/guides/getting-started.html.md)
26
- - [Reference](https://github.com/ericam/susy/blob/master/docs/source/guides/reference.html.md#basic-usage)
25
+ - [Tutorial](http://susy.oddbird.net/guides/getting-started/)
26
+ - [Reference](http://susy.oddbird.net/guides/reference/)
27
+ - [Sites using Susy](http://susy.oddbird.net/sites-using-susy/)
28
+ - [Twitter @CompassSusy](http://twitter.com/compasssusy/)
29
+
30
+ ## Why is 1.0 a release candidate?
31
+
32
+ Susy 1.0 is stable and tested, all the features are in,
33
+ and we're ready to launch.
34
+ But our 1.0 depends on unreleased Compass and Sass features.
35
+ We think those features are stable as well,
36
+ and we'll do what it takes to stay on top of any changes they make,
37
+ but we can't officially land until they do.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.rc.0
1
+ 1.0.rc.1
@@ -11,8 +11,8 @@
11
11
  // A wrapper for the compass "column-grid-background" mixin
12
12
  // Uses all your settings to create a grid background for a container element.
13
13
  // Note: Sub-pixel rounding can lead to several pixels of variation between browsers.
14
- @mixin susy-grid-background (){
15
- @include column-grid-background($total-columns, $column-width, $gutter-width, $column-width*0, $force-fluid: true);
14
+ @mixin susy-grid-background(){
15
+ @include column-grid-background($total-columns, column(), gutter(), 0%);
16
16
  @include background-origin(content-box);
17
17
  @include background-clip(content-box);
18
18
  }
@@ -144,7 +144,7 @@ $browser-default-font-size : 16px;
144
144
  // $media-layout : a list of values [$min $layout $max $ie] including...
145
145
  // : - one unitless number (columns in a layout)
146
146
  // : - two optional lengths (min and max-width media-query breakpoints).
147
- // : - one optional boolian or string to trigger fallback support for IE.
147
+ // : - one optional boolean or string to trigger fallback support for IE.
148
148
  // $font-size : [optional] The base font-size of your layout, if you are using ems.
149
149
  // : - defaults to $base-font-size
150
150
  @function medialayout(
@@ -238,7 +238,7 @@ $browser-default-font-size : 16px;
238
238
  // $media-layout : a list of values including -
239
239
  // : One unitless number (columns in a layout)
240
240
  // : Two optional lengths (min and max-width media-query breakpoints).
241
- // : One optional boolian or string to trigger fallback support for IE.
241
+ // : One optional boolean or string to trigger fallback support for IE.
242
242
  @function is-default-layout(
243
243
  $media-layout
244
244
  ) {
@@ -23,7 +23,7 @@
23
23
  // $media-layout : a list of values [$min $layout $max $ie] including...
24
24
  // : - one unitless number (columns in a layout)
25
25
  // : - two optional lengths (min and max-width media-query breakpoints).
26
- // : - one optional boolian or string to trigger fallback support for IE.
26
+ // : - one optional boolean or string to trigger fallback support for IE.
27
27
  // $font-size : [optional] The base font-size of your layout, if you are using ems.
28
28
  // : - defaults to $base-font-size
29
29
  @mixin at-breakpoint(
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "susy"
5
- s.version = "1.0.rc.0"
5
+ s.version = "1.0.rc.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Eric Meyer"]
9
- s.date = "2012-05-13"
9
+ s.date = "2012-05-22"
10
10
  s.description = "Susy grids are fluid on the inside, ready to respond at any moment, but contained in the candy shell of your choice, so they respond how and when and where you want them to. We don't design your site or dictate your markup, we just do the math and get out of your way."
11
11
  s.email = "eric@oddbird.net"
12
12
  s.extra_rdoc_files = ["CHANGELOG.mkdn", "LICENSE.txt", "README.mkdn", "lib/susy.rb"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: susy
3
3
  version: !ruby/object:Gem::Version
4
- hash: -3651558062
4
+ hash: -2598794344
5
5
  prerelease: 4
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - rc
10
- - 0
11
- version: 1.0.rc.0
10
+ - 1
11
+ version: 1.0.rc.1
12
12
  platform: ruby
13
13
  authors:
14
14
  - Eric Meyer
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2012-05-13 00:00:00 Z
19
+ date: 2012-05-22 00:00:00 Z
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: compass
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: -3651558046
29
+ hash: -2598794326
30
30
  segments:
31
31
  - 0
32
32
  - 12
@@ -44,7 +44,7 @@ dependencies:
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- hash: -1706356446
47
+ hash: 3199863119
48
48
  segments:
49
49
  - 3
50
50
  - 2