Skip to content

Commit

Permalink
Merge pull request angular-ui#139 from angular-ui/rearch
Browse files Browse the repository at this point in the history
Rearch to 1.8.0
  • Loading branch information
orneryd committed Feb 8, 2013
2 parents 7326e81 + d84de7f commit 48124e1
Show file tree
Hide file tree
Showing 34 changed files with 795 additions and 639 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Check out the [Getting Started](https://github.com/angular-ui/ng-grid/wiki/Getti
[Examples](http://angular-ui.github.com/ng-grid/)

##Change Log##
* __2013-02-06__ - Version 1.8.0 - Major architectural changes which greatly improves performance. virtualizationThreshold now controlls when virtualization is force-enabled and is user-specified in options.
* __2013-02-06__ - Version 1.7.1 - Fixed bug with selections and multiple grids. New emit message for notifying when hitting bottom of viewport. Can disable virtualization. ng-grid virtualization is on by default, but can be disabled if there are less than 50 rows in the grid. Anything > 50 rows virtualization is forced on for performance considerations.
* __2013-02-05__ - Version 1.7.0 - BREAKING CHANGES: Will add examples. Adding cell selection, navigation, and edit on focus. Added programmatic selections. Improved scrolling. ngGridEvents changed/added: see wiki.
* __2013-01-17__ - Version 1.6.3 - Can now highlight/copy text in grid. Fixed multiple issues when using multiselect along with shift key. Refactored key events so now they are all in the same directive for viewport. Hovering over highlightable text will change cursors in viewport. Fixed #93.
Expand Down
2 changes: 1 addition & 1 deletion build/build-order.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
..\src\directives\ng-cell-text.js
..\src\directives\ng-cell-has-focus.js
..\src\directives\ng-cell-input.js
..\src\directives\ui-if.js
..\src\directives\ng-if.js
..\src\init.js
2 changes: 1 addition & 1 deletion build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $defaultEndSymbol = '}}';
$CurrentDir = (Get-Location).Path;
$OutPutFile = $CurrentDir + "\ng-grid.debug.js";
$TempFile = $OutPutFile + ".temp";
$finalprefix = "ng-grid-1.7.1.debug";
$finalprefix = "ng-grid-1.8.0.debug";
$FinalFile = "..\$finalprefix.js";
$BuildOrder = $CurrentDir + "\build-order.txt";
$commentStart = "<!--";
Expand Down
2 changes: 1 addition & 1 deletion build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

CurrentDir=$PWD
OutPutFile=$CurrentDir/ng-grid.debug.js
FinalFile=../ng-grid-1.7.1.debug.js
FinalFile=../ng-grid-1.8.0.debug.js
BuildOrder=$CurrentDir/build-order.txt

echo JSBuild Starting...
Expand Down
303 changes: 170 additions & 133 deletions build/ng-grid.debug.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng-grid",
"title": "ng-grid",
"version": "1.7.1",
"version": "1.8.0",
"homepage": "https://github.com/angular-ui/ng-grid/",
"dependencies": {},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions component.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ng-grid",
"version": "1.7.1",
"main": ["./ng-grid.css", "ng-grid-1.7.1.debug.js"]
"version": "1.8.0",
"main": ["./ng-grid.css", "ng-grid-1.8.0.debug.js"]
}
Loading

0 comments on commit 48124e1

Please sign in to comment.