Skip to content

Commit

Permalink
Version bump - 1.0.0-pre.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Oct 25, 2012
1 parent f78a7b6 commit b851567
Show file tree
Hide file tree
Showing 13 changed files with 111 additions and 28 deletions.
83 changes: 83 additions & 0 deletions CHANGELOG
@@ -1,3 +1,86 @@
*Ember 1.0.0-pre.2 (October 25, 2012)*

* Ember.SortableMixin: don't remove and reinsert items when their sort order doesn't change. Fixes #1486.
* Fix edge cases with adding/removing observers
* Added 'disabled' attribute binding to Select
* Deprecate usage of {{collection}} without a class in favor of {{each}}
* Changing `Ember.Handlebars.getPath` to `Ember.Handlebars.get` for consistency. This addresses #1469.
* Since `$.uuid` was removed from jQuery master, we're switching to using `Ember.uuid` instead.
* Add Ember.View#nearestOfType, deprecate nearestInstanceOf
* Adds support for globbed routes
* Remove CP_DEFAULT_CACHEABLE flag
* Remove VIEW_PRESERVES_CONTEXT flag
* Replace willRerender with willClearRender
* Bumped jQuery requirement to 1.7.2+, explicitly forbidding 1.7 and 1.7.1 (see: #1448)
* Add Ember.String.classify() to string extensions
* HistoryLocation now utilizes history.replaceState
* Add a basic instrumentation API
* Allow extension of chosen prototypes instead of the current all or none.
* Remove dependency on `window` throughout Ember
* Don't attempt to concat a concatenatedProperty onto an object that doesn't have a concat method
* Remove ember-views dependency from ember-states
* Multiselect updates array content in place.
* Support applications without a router
* Add Ember.Deferred mixin which implements promises using RSVP.js
* Fix for popstate firing on page load.
* Fixed bug in CP setter where observers could be suspended and never restored.
* Fixed a bug with setting computed properties that modify the passed in value.
* Initial work to allow operation with handlebars runtime only
* A listener registered with one can be removed with off
* Calling removeListener without method should remove all listeners
* Add autoinit flag to Application to call initialize on DOM ready.
* Create view for application template if no ApplicationView.
* Remove support for inline anonymous templates.
* Rename createRouter to setupRouter to make clear.
* Extract createRouter from Application#initialize
* Extract runInjections from Application#initialize
* Simplify syntax so we can extract more easily
* Extract createEventDispatcher from Application#init
* Update for Handlebars 1.0.rc.1
* Fix State.transitionTo to handle multiple contexts
* Cleanup classNameBindings on remove
* Support defining injections to occur after other injections
* Computed prop setter improvements
* fix :: syntax in classNameBindings to work with falsy values
* Fix Ember.Error properties
* Improved error handling with Ember.onerror
* Adds currentPath to Ember.StateManager
* Provide default args to tryInvoke - fixes #1327
* Fix a bug in multi-selects with primitive options
* Fix formatURL to use rootURL and remove formatPath
* Fixing Ember.Router.route when rootURL is used
* ContainerViews should invalidate `element` on children when rendering.
* Add test for selecting in multi selects with prompts
* Fix: Passing a regex to split in IE8 returns a single item array, causing class names beginning with a colon to fail to render in IE8.
* Adding itemViewClass attribute to the each helper.
* Reorganize load hooks to be more sane
* Improve application readiness framework
* Small restructuring of ArrayProxy
* Add #setObjects to mutable array. A helper for replacing whole content of the array with a new one.
* Fixed selecting items in ember multi-selects
* Add disconnectOutlet method to controller
* The content property of an ArrayProxy instance should be defined before modifying it
* Adds a has() method to Ember.OrderedSet
* Adds hooks for suspending observers
* Check that a controller inherits from Ember.Object before instantiating it to the router.
* Support jQuery 1.8 - fixes #1267
* Ember.empty returns true if empty Ember.ArrayProxy
* add scheduleOnce and remove flag
* add various lifecycle tests to check updated ContainerView path. Expose problem with flag for scheduling one time.
* Moving location tests to routing package
* Make outlet a Metamorph view
* Tests showing problem with adding and replacing
* refactor ContainerView children rendering to not make assumptions at scheduling time, just at render time.
* Remove remaining references to viewstates
* Select element should initialize with the correct selectedIndex when using valueBinding
* Remove deprecated Ember.ViewState.
* Handle undefined element in bindAttr and classNameBindings
* Render now uses context instead of _context
* Better version replacement regexp
* Outlets reference context instead of controller.
* Rakefile :clean remove 'tmp' folder
* Performance improvements

*Ember 1.0.pre (August 03, 2012)*

* Return undefined instead of empty jQuery object for Ember.View#$ when not in DOM
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.0.pre
1.0.0-pre.2
2 changes: 1 addition & 1 deletion ember.json
Expand Up @@ -2,7 +2,7 @@
"name": "ember",
"bpm": "1.0.0",
"dependencies": {
"ember": "1.0.pre"
"ember": "1.0.0-pre.2"
},
"dependencies:development": {
"spade-qunit": "~> 1.0.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/ember-application/package.json
Expand Up @@ -4,11 +4,11 @@
"description": "Extensions to the Handlebars templating engine for use with Ember. These extensions make Handlebars aware of property observing, which allows it to automatically update the DOM when the referenced properties change. It also provides Handlebars helpers for creating Ember views and working with collections.",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.pre",
"version": "1.0.0-pre.2",
"dependencies": {
"ember-views": "1.0.pre",
"ember-states": "1.0.pre",
"ember-routing": "1.0.pre"
"ember-views": "1.0.0-pre.2",
"ember-states": "1.0.0-pre.2",
"ember-routing": "1.0.0-pre.2"
},

"directories": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-debug/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "Debugging helpers for Ember",
"homepage": "http://www.emberjs.com",
"author": "Peter Wagenet",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"directories": {
"lib": "lib"
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-handlebars/package.json
Expand Up @@ -4,11 +4,11 @@
"description": "Extensions to the Handlebars templating engine for use with Ember. These extensions make Handlebars aware of property observing, which allows it to automatically update the DOM when the referenced properties change. It also provides Handlebars helpers for creating Ember views and working with collections.",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.pre",
"version": "1.0.0-pre.2",
"dependencies": {
"spade": "~> 1.0.0",
"handlebars": "~> 1.0.0.beta.6",
"ember-views": "1.0.pre",
"ember-views": "1.0.0-pre.2",
"metamorph": "~> 1.0.0"
},

Expand Down
6 changes: 3 additions & 3 deletions packages/ember-metal/lib/core.js
Expand Up @@ -23,7 +23,7 @@
@class Ember
@static
@version 1.0.pre
@version 1.0.0-pre.2
*/

if ('undefined' === typeof Ember) {
Expand All @@ -50,10 +50,10 @@ Ember.toString = function() { return "Ember"; };
/**
@property VERSION
@type String
@default '1.0.pre'
@default '1.0.0-pre.2'
@final
*/
Ember.VERSION = '1.0.pre';
Ember.VERSION = '1.0.0-pre.2';

/**
Standard environmental variables. You can define these in a global `ENV`
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-metal/package.json
Expand Up @@ -4,7 +4,7 @@
"summary": "JavaScript on Steroids",
"homepage": "http://github.com/emberjs/ember.js",
"author": "Charles Jolley",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"dependencies": {
"spade": "~> 1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/ember-routing/package.json
Expand Up @@ -4,16 +4,16 @@
"description": "The Ember routing system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-views": "1.0.pre",
"ember-states": "1.0.pre"
"ember-views": "1.0.0-pre.2",
"ember-states": "1.0.0-pre.2"
},

"dependencies:development": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-runtime/package.json
Expand Up @@ -5,15 +5,15 @@

"homepage": "http://emberjs.com",
"author": "Charles Jolley",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-metal": "1.0.pre"
"ember-metal": "1.0.0-pre.2"
},

"dependencies:development": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-states/package.json
Expand Up @@ -4,15 +4,15 @@
"description": "The Ember state management system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-runtime": "1.0.pre"
"ember-runtime": "1.0.0-pre.2"
},

"dependencies:development": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-views/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "The Ember view system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"directories": {
"lib": "lib"
Expand All @@ -13,7 +13,7 @@
"dependencies": {
"spade": "~> 1.0",
"jquery": "~> 1.7",
"ember-runtime": "1.0.pre"
"ember-runtime": "1.0.0-pre.2"
},

"dependencies:development": {
Expand Down
12 changes: 6 additions & 6 deletions packages/ember/package.json
Expand Up @@ -4,15 +4,15 @@
"summary": "Ember - JavaScript Application Framework",
"homepage": "http://github.com/emberjs/ember.js",
"author": "Charles Jolley",
"version": "1.0.pre",
"version": "1.0.0-pre.2",

"dependencies": {
"spade": "~> 1.0.0",
"ember-runtime": "1.0.pre",
"ember-views": "1.0.pre",
"ember-states": "1.0.pre",
"ember-routing": "1.0.pre",
"ember-handlebars": "1.0.pre"
"ember-runtime": "1.0.0-pre.2",
"ember-views": "1.0.0-pre.2",
"ember-states": "1.0.0-pre.2",
"ember-routing": "1.0.0-pre.2",
"ember-handlebars": "1.0.0-pre.2"
},

"directories": {
Expand Down

2 comments on commit b851567

@Gaubee
Copy link

@Gaubee Gaubee commented on b851567 Jan 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

好吧,说实话,帮助文档有点拗口。比其他项目的英文帮助难读…………这事实话。
入门的教程不是写得很好。最好说明一下ember用来写程序时应该避免什么,还有一些性能的概述。。
translation:
Well, to be honest, help documentation is a bit hard to pronounce. Read ............ this fact, then than English help other items difficult.
Getting Started tutorial is not very well written. Best to explain what should be avoided, as well as an overview of some of the performance ember used to write programs. .

@Gaubee
Copy link

@Gaubee Gaubee commented on b851567 Jan 1, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps it is the font problem ............Be better for some of serif characters

Please sign in to comment.