Skip to content

Commit cfff067

Browse files
committed
0.2.1
1 parent ae616d6 commit cfff067

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v0.2.1
2+
- Fixes Windows "command line too long" bug
13
v0.2.0
24
- adding global support via `npm install -g grunt-devtools`
35
- adding target support in the UI

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
grunt-devtools
1+
grunt-devtools 0.2.1
22
==============
33
![](http://v14d.com/u/grunt-devtools-main.png)
44

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

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

3737

3838
## Issues
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const BRACKETS_VERSION = "0.2.0";
1+
const BRACKETS_VERSION = "0.2.1";
22

33
var manifest = typeof(chrome) != "undefined" ? chrome.runtime.getManifest() : {version: BRACKETS_VERSION};
44
document.getElementById('toolsVersion').innerHTML = 'v' + manifest.version;

extension/src-chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Grunt Devtools",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Extends the Developer Tools, adding tools for Grunt",
55
"icons": {
66
"16": "img/icon16.png",

extension/src/less/devtools.less

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ button {
188188
padding: 0 0 40px 10px;
189189
}
190190

191+
#placeTasks {
192+
margin-bottom: 50px;
193+
}
194+
191195
#placeProjects {
192196
display: inline;
193197
}

extension/src/templates/panel-tpl.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ <h2>Grunt Projects</h2>
1818
<section id='output'>
1919
<aside id='updateWarning'>
2020
<p>
21-
The version of <code>grunt-devtools</code> is not valid for this project.
22-
Please run '<code>npm install grunt-devtools --save-dev</code>' or update this extension.
21+
The version of <code>grunt-devtools</code> is out of date.
22+
Please update the node module or update this extension, the versions should match.
2323
</p>
2424
</aside>
2525
<header>

grunt-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-devtools",
33
"description": "Grunt integration with Chrome Dev Tools",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"homepage": "https://github.com/vladikoff/grunt-devtools",
66
"author": {
77
"name": "vladikoff",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grunt-devtools-project",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"private": true,
55
"homepage": "https://github.com/vladikoff/grunt-devtools",
66
"author": {

0 commit comments

Comments
 (0)