Skip to content

Commit

Permalink
version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
buzzdecafe committed Nov 17, 2013
1 parent dfba854 commit 3bd76b5
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 12 deletions.
1 change: 0 additions & 1 deletion app/js/directives/solvedMark.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ angular.module('kinghunt.directives').
replace: true,
template: '<button class="pull-right btn btn-default"><span class="glyphicon {{ problemSolved | toProblemClass }}"></span></button>',
link: function(scope, element, attrs) {
// update model
scope.problemSolved = bookSvc.isSolved(scope.problem.id);
element.on('click', function(e) {
var id = scope.problem.id;
Expand Down
2 changes: 1 addition & 1 deletion app/js/services/services.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

angular.module('kinghunt.services', []).
value('version', '0.1.0').
value('version', '0.2.0').
value('credits', [
{name: 'chess.js', url: 'https://github.com/jhlywa/chess.js'},
{name: 'chessboardjs', url: 'https://github.com/oakmac/chessboardjs'},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Buzz de Cafe <[email protected]> (buzzdecafe.com)",
"name": "KingHunt",
"description": "Chess problem app for FirefoxOS.",
"version": "0.1.0",
"version": "0.2.0",
"homepage": "https://www.github.com/buzzdecafe/kinghunt",
"license": "MIT",
"repository": {
Expand Down
8 changes: 0 additions & 8 deletions test/unit/controllers/controllersSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,4 @@ describe('controllers', function(){
beforeEach(module('kinghunt.controllers'));



it('Load a game from a FEN position', inject(function() {
//spec body
}));

it('should ....', inject(function() {
//spec body
}));
});
2 changes: 1 addition & 1 deletion test/unit/services/servicesSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('service', function() {

describe('version', function() {
it('should return current version', inject(function(version) {
expect(version).toEqual('0.1.0');
expect(version).toEqual('0.2.0');
}));
});

Expand Down

0 comments on commit 3bd76b5

Please sign in to comment.