Skip to content

Latest commit

 

History

History
477 lines (350 loc) · 14.3 KB

History.md

File metadata and controls

477 lines (350 loc) · 14.3 KB

0.15.1 / 2011-08-18

  • Added pseudo-element vendor expansion support
  • Added @keyframe expansion support. Closes #293
  • Added support for arbitrary @-VENDOR-keyframes support
  • Added support for @property mixin property access Closes #363
  • Added /*! support to comments to disable suppression
  • Changed: allow uses to append .styl when importing. Closes #366
  • Fixed paren matching issue. Closes #368
  • Fixed windows absolute path checking Added utils.absolute(path)
  • Fixed Ident#clone() with .property flag
  • Fixed evaluation of expression when using @name. Closes #361
  • Fixed path.join() usage in utils.lookup(). Closes #356
  • Fixed space after comment regression. Closes #360

0.15.0 / 2011-08-15

  • Adding Renderer#get(option)
  • Added the ability to reference property values with @<name>. Closes #344
  • Changed comment output. css-style multi-line comments are preserved
  • Fixed issue with bools in selectors. Closes #280

0.14.0 / 2011-08-10

  • Added firebug original file / line number mapping [parallel]
  • Added support for #rgba and #rrggbbaa color formats
  • Changed: fix alpha to a scale of 2
  • Fixing function param check to allow for empty function arguments

0.13.9 / 2011-08-04

  • Fixed lighten() BIF 'lighten by %' function push color closer to white [cwolves]
  • Fixed cli plugin usage absolute paths, don't prepend the CWD [cpojer]
  • Renaming 'import' to '_import' because import is a reserved word in node v0.5

0.13.8 / 2011-08-01

  • Added PI and -math-prop(name)
  • Added cos() and sin()
  • Added support for SVG data URIs [mhemesath]
  • Rename variable "import" to "imported" [eegg]

0.13.7 / 2011-07-15

  • Added js(str) BIF
  • Fixed reserved keyword import with imported

0.13.6 / 2011-07-12

  • Added @-webkit-keyframes support. Closes #307
  • Added gedit language-spec
  • Changed: optional growl dep for stylus(1)
  • Changed: require("stylus") instead of ../ for the mac app integration

0.13.5 / 2011-06-27

  • Fixed middleware handling of new and removed @import s [brandonbloom]

0.13.4 / 2011-06-22

  • Added Compile and Display CSS TextMate command (⌘B) [Daniel Gasienica]
  • Fixed caching behavior for recompilation of files with changed imports [Brandon Bloom]

0.13.3 / 2011-06-01

  • Added padding for error linenos so they line up
  • Improved unary op error messages
  • Improved invalid @keyframes ident error msg
  • Fixed HSLA regression for operations resulting in a bool. Closes #274
  • Fixed arguments issue with excluding defaults. Closes #272

0.13.2 / 2011-05-31

  • Fixed colors after url() call regression. Closes #270

0.13.1 / 2011-05-30

  • Fixed colors in url(). Closes #267
  • Fixed selector without trailing comma containing selector token. Closes #260

0.13.0 / 2011-05-17

  • Added -u, --use PATH flag for utilizing plugins
  • Fixed hsla.clampDegrees() with negative values [Bruno Héridet]

0.12.4 / 2011-05-12

  • Added support for underscore in identifiers. Closes #247
  • Fixed @keyframe block evaluation. Closes #252

0.12.3 / 2011-05-08

  • Fixed 0% in @keyframes from becoming 0 when compressed. Closes #248

0.12.2 / 2011-05-03

  • Fixed issue with ^= attr selector causing infinite loop. Closes #244
  • Fixed multiple occurrences of & in selectors. Closes #243

0.12.1 / 2011-04-29

  • Fixed spaces around line-height shorthand. Closes #228
  • Fixed -{foo} interpolation support. Closes #235

0.12.0 / 2011-04-29

  • Added *prop: val hack support (blueprint / html boilerplate etc parse fine now)
  • Added selector interpolation support
  • Fixed "-" within interpolation. Closes #220

0.11.12 / 2011-04-27

  • Added SyntaxError and ParseError
  • Removed stylus.parse()
  • Fixed error reporting. Closes #44

0.11.11 / 2011-04-24

  • Fixed mutation of units when using unary ops. Closes #233

0.11.10 / 2011-04-17

  • Fixed regression. Closes #229

0.11.9 / 2011-04-15

  • Fixed issue with large selectors spanning several lines

0.11.8 / 2011-04-15

  • Added support for Renderer#define(name, node) to define a global

0.11.7 / 2011-04-12

  • Added Renderer#use(fn). Closes #224
  • Improved utils.assertType() error message; include param name

0.11.6 / 2011-04-12

  • Fixed: node.source and node.filename are writable

0.11.5 / 2011-04-12

  • Added / employed Null#isNull
  • Added / employed Boolean#is{True,False}
  • Removed all uses of instanceof
  • Removed all equality checks between singleton nodes

0.11.4 / 2011-04-10

  • Added Arguments#clone()
  • Added push() / append()
  • Added unshift() / prepend() BIFs

0.11.3 / 2011-04-08

  • Fixed: keyword args previously not evaluated
  • Fixed: subpixel support
  • Fixed bug preventing combinators (and other ops) in @media blocks. Closes #216 [reported by jsteenkamp]

0.11.2 / 2011-04-06

  • Added Renderer#include(path). Closes #214
  • Fixed @import path resolution bug. Closes #215
  • Fixed optional keyword arg bug. Closes #212

0.11.1 / 2011-04-01

  • Fixed regression preventing commas from outputting

0.11.0 / 2011-04-01

  • Added HSLA#add(h,s,l,a)
  • Added HSLA#sub(h,s,l,a)
  • Added RGBA#add(r,g,b,a)
  • Added RGBA#sub(r,g,b,a)
  • Added RGBA#multiply(n)
  • Added RGBA#divide(n)
  • Added HSLA#adjustHue(deg)
  • Added HSLA#adjustLightness(percent)
  • Added HSLA#adjustSaturation(percent)
  • Added linear-gradient() example
  • Added s(fmt, ...) built-in; sprintf-like
  • Added % sprintf-like string operator, ex: '%s %s' % (1 2)
  • Added current-property local variable
  • Added add-property(name, val)
  • Added the ability for functions to duplicate the property they are invoked within
  • Added []= operator support. Ex: fonts[1] = arial, nums[1..3] = 2
  • Added -I, --include <path> to stylus(1). Closes #206
  • Added support for 50 + 25% == 75
  • Added support for rgba + 25% to lighten
  • Added support for rgba - 25% to darken
  • Added support for rgba - 25 to adjust rgb values
  • Changed: null now outputs "null" instead of "[Null]"
  • Fixed hsl operation support, all operations are equivalent on rgba/hsla nodes
  • Fixed degree rotation

0.10.0 / 2011-03-29

  • Added keyword argument support
  • Added Arguments node, acts like Expression
  • Added utils.params()
  • Added debug option to stylus middleware
  • Added support for hsl + 15deg etc to adjust hue
  • Added special-case for percentage based RGBA operations (#eee - 20%)
  • Changed: right-hand colors in operations are not clamped (#eee * 0.2)
  • Added support for unit * color (swaps operands)
  • Fixed color component requests on the opposite node type (ex red on hsla node)
  • Fixed Expression#clone() to support Arguments
  • Fixed issue with middleware where imports are improperly mapped
  • Fixed mutation of color when adjusting values
  • Fixed: coerce string to literal
  • Removed {darken,lighten}-by() BIFs

0.9.2 / 2011-03-21

  • Removed a console.log() call

0.9.1 / 2011-03-18

  • Fixed connect middleware @import support. Closes #168 The middleware is now smart enough to know when imports change, and will re-compile the target file.

  • Changed middleware compile function to return the Renderer (API change)

0.9.0 / 2011-03-18

  • Added -i, --interactive for the Stylus REPL (eval stylus expressions, tab-completion etc)
  • Added link to vim syntax
  • Changed p() built-in to display parens
  • Changed --compress -C to -c, and -css -c is now -C
  • Fixed: preserve rest-arg expressions. Closes #194
  • Fixed *= in selector, ex [class*="foo"]
  • Fixed --watch issue with growl, updated to 1.1.0. Closes #188
  • Fixed negative floats when compressed. Closes #193 [reported by ludicco]

0.8.0 / 2011-03-14

  • Added postfix for-loop support. Ex: return n if n % 2 == 0 for n in nums
  • Added support for several postfix operators Ex: border-radius: 5px if true unless false;
  • Added last(expr) built-in function
  • Added sum(nums) built-in function
  • Added avg(nums) built-in function
  • Added join(delim, vals) built-in function
  • Added Evaluator#{currentScope,currentBlock}
  • Added multi-line function paramter definition support
  • Changed: 0 is falsey, 0%, 0em, 0px etc truthy. Closes #160
  • Fixed for implicit return value
  • Fixed for explicit return value
  • Fixed mixin property ordering

0.7.4 / 2011-03-10

  • Added RGBA node
  • Added is a "color" special-case, true for HSLA and RGBA nodes. Closes #180
  • Performance; 2.5× faster compiles due to removing use of getters in Parser and Lexer (yes, they are really slow).
  • Removed Color node
  • Fixed stylus(1) --watch support due to dynamic @import support. Closes #176

0.7.3 / 2011-03-09

  • Fixed: allow semi-colons for non-css syntax for one-liners

0.7.2 / 2011-03-08

  • Added isnt operator (same as is not and !=)
  • Added support for dynamic @import expressions
  • Added @import index resolution support
  • Added light() / dark() BIFs
  • Added compress option for Connect middleware [disfated]
  • Changed: most built-in functions defined in stylus (./lib/functions/index.styl)
  • Fixed dynamic expressions in url(). Closes #105

0.7.1 / 2011-03-07

  • Fixed connect middleware for 0.4.x

0.7.0 / 2011-03-02

  • Added is and is not aliases for == and !=
  • Added @keyframes dynamic name support
  • Fixed units in interpolation
  • Fixed clamping of HSLA degrees / percentages

0.6.7 / 2011-03-01

  • Fixed RGBA -> HSLA conversion due to typo

0.6.6 / 2011-03-01

  • Added string -> unit type coercion support aka 5px + "10" will give 15px
  • Added warn option Closes #152 Currently this only reports on re-definition of functions
  • Added $ as a valid identifier character
  • Added mixin local variable for function introspection capabilities. Closes #162
  • Fixed typo: Unit#toBoolean() is now correct
  • Fixed interpolation function calls. Closes #156
  • Fixed mixins within Media node. Closes #153
  • Fixed function call in ret val. Closes #154

0.6.5 / 2011-02-24

  • Fixed parent ref & mid-selector bug. Closes #148 [reported by visnu]

0.6.4 / 2011-02-24

  • Fixed for within brackets. Closes #146

0.6.3 / 2011-02-22

  • Fixed single-ident selectors. Closes #142
  • Fixed cyclic @import with file of the same name. Closes #143

0.6.2 / 2011-02-21

  • Added stylus(1) growl support when using --watch
  • Added @import watching support to stylus(1). Closes #134
  • Changed: stylus(1) only throws when --watch is not used
  • Fixed darken-by() BIF
  • Fixed @import literal semi-colon. Closes #140

0.6.1 / 2011-02-18

  • Fixed evaluation of nodes after a return. Closes #139

0.6.0 / 2011-02-18

  • Added stylus(1) direct css to stylus file conversion [Mario] For example instead of $ stylus --css < foo.css > foo.styl you may now either $ stylus --css foo.css or provide a destination path $ stylus --css foo.css /tmp/out.styl.

  • Added postfix conditionals. Closes #74 Expressive ruby-ish syntax, ex: padding 5px if allow-padding.

0.5.3 / 2011-02-17

  • Added in operator. 3 in nums, padding in props etc
  • Added Expression#hash, hashing all of the nodes in order
  • Added tests for conditionals with braces. Closes #136
  • Fixed ids that are also valid colors. Closes #137

0.5.2 / 2011-02-15

  • Fixed spaces after } with css-style. Closes #131
  • Fixed single-line css-style support. Closes #130

0.5.1 / 2011-02-11

  • Fixed mixin property ordering. Closes #125

0.5.0 / 2011-02-09

  • Added lighten-by() BIF
  • Added darken-by() BIF

0.4.1 / 2011-02-09

  • Added support for function definition braces
  • Fixed issue with invalid color output. Closes #127

0.4.0 / 2011-02-07

  • Added css-style syntax support
  • Fixed support for * selector within @media blocks

0.3.1 / 2011-02-04

  • Fixed property disambiguation logic. Closes #117 You no longer need to add a trailing comma when chaining selectors such as td:nth-child(2)\ntd:nth-child(3)

0.3.0 / 2011-02-04

  • Added more assignment operators. Closes #77 +=, -=, *=, /=, and %=

0.2.1 / 2011-02-02

  • Fixed --compress when passing files for stylus(1). Closes #115
  • Fixed bug preventing absolute paths from being passed to @import
  • Fixed opposite-position() with nested expressions, unwrapping
  • Fixed a couple global var leaks [aheckmann]

0.2.0 / 2011-02-01

  • Added: url() utilizing general lookup paths. This means that { paths: [] } is optional now, as lookups will be relative to the file being rendered by default.

  • Added -w, --watch support to stylus(1). Closes #113

0.1.0 / 2011-02-01

  • Added opposite-position(positions) built-in function
  • Added image-lookup(path) built-in function
  • Added -o, --out <dir> support to stylus(1)
  • Added stylus [file|dir ...] support
  • Added: defaulting paths to [CWD] for stylus(1)
  • Changed: unquote() using Literal node
  • Changed: utilizing Literal in place of some Idents

0.0.2 / 2011-01-31

  • Added optional property colon support. Closes #110
  • Added --version to stylus(1)

0.0.1 / 2011-01-31

  • Initial release