Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Sep 22, 2013
1 parent ae616d6 commit cfff067
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
v0.2.1
- Fixes Windows "command line too long" bug
v0.2.0
- adding global support via `npm install -g grunt-devtools`
- adding target support in the UI
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
grunt-devtools
grunt-devtools 0.2.1
==============
![](http://v14d.com/u/grunt-devtools-main.png)

Expand Down Expand Up @@ -32,7 +32,7 @@ __Grunt Task Runner Extension for Chrome Developer Tools and Adobe Brackets__

* Chrome extension updates automatically or you can force an update under `chrome://extensions` ![](http://v14d.com/i/513cbb8a20af4.png)
* Grunt plugin updates using `npm install grunt-devtools@latest`
* The versions of the plugin and extension should always match (`0.2.0` in Chrome is `0.2.0` on npm)
* The versions of the plugin and extension should always match (`0.2.1` in Chrome is `0.2.1` on npm)


## Issues
Expand Down
2 changes: 1 addition & 1 deletion extension/src-brackets/js/runtime.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const BRACKETS_VERSION = "0.2.0";
const BRACKETS_VERSION = "0.2.1";

var manifest = typeof(chrome) != "undefined" ? chrome.runtime.getManifest() : {version: BRACKETS_VERSION};
document.getElementById('toolsVersion').innerHTML = 'v' + manifest.version;
2 changes: 1 addition & 1 deletion extension/src-chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Grunt Devtools",
"version": "0.2.0",
"version": "0.2.1",
"description": "Extends the Developer Tools, adding tools for Grunt",
"icons": {
"16": "img/icon16.png",
Expand Down
4 changes: 4 additions & 0 deletions extension/src/less/devtools.less
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ button {
padding: 0 0 40px 10px;
}

#placeTasks {
margin-bottom: 50px;
}

#placeProjects {
display: inline;
}
Expand Down
4 changes: 2 additions & 2 deletions extension/src/templates/panel-tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ <h2>Grunt Projects</h2>
<section id='output'>
<aside id='updateWarning'>
<p>
The version of <code>grunt-devtools</code> is not valid for this project.
Please run '<code>npm install grunt-devtools --save-dev</code>' or update this extension.
The version of <code>grunt-devtools</code> is out of date.
Please update the node module or update this extension, the versions should match.
</p>
</aside>
<header>
Expand Down
2 changes: 1 addition & 1 deletion grunt-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-devtools",
"description": "Grunt integration with Chrome Dev Tools",
"version": "0.2.0",
"version": "0.2.1",
"homepage": "https://github.com/vladikoff/grunt-devtools",
"author": {
"name": "vladikoff",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grunt-devtools-project",
"version": "0.2.0",
"version": "0.2.1",
"private": true,
"homepage": "https://github.com/vladikoff/grunt-devtools",
"author": {
Expand Down

0 comments on commit cfff067

Please sign in to comment.