Skip to content

Commit

Permalink
release 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyrne01 committed Apr 15, 2015
1 parent 752b73b commit 9400127
Show file tree
Hide file tree
Showing 3 changed files with 150 additions and 129 deletions.
187 changes: 104 additions & 83 deletions addon/package.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,106 @@
{
"name": "tab-data-addon",
"title": "Tab Data",
"id": "jid1-4ogjq7MUzAiCOw",
"description": "Provides user with tab related stats/data",
"author": "Robert Byrne",
"license": "GNU GPL v3",
"version": "0.5.2",
"permissions": {
"private-browsing": true
},
"preferences": [{
"name": "memoryInterval",
"title": "How many seconds between memory data collection?",
"type": "string",
"value": "10"
}, {
"name": "memoryTracking",
"title": "Enable memory usage tracking?",
"type": "bool",
"value": true
}, {
"name": "memoryUsageOnTabTitles",
"title": "Show memory usage in tab titles?",
"type": "menulist",
"value": 0,
"options": [{
"value": "0",
"label": "Prepend"
}, {
"value": "1",
"label": "Append"
}, {
"value": "2",
"label": "Disable"
}]
}, {
"name": "memoryFormat",
"title": "Format of memory usage on panel?",
"type": "menulist",
"value": 0,
"options": [{
"value": "0",
"label": "JSON"
}, {
"value": "1",
"label": "Plain"
}]
}, {
"name": "memoryUrlInUsage",
"title": "Show Url on memory usage panel?",
"type": "bool",
"value": true
}, {
"name": "memoryCautionThreshold",
"title": "Memory caution threshold? (In megabytes)?",
"type": "string",
"value": "20"
}, {
"name": "panelWidth",
"title": "Width of Panel UI",
"type": "string",
"value": "525"
}, {
"name": "panelHeight",
"title": "Height of Panel UI",
"type": "string",
"value": "525"
}, {
"name": "graphType",
"title": "Graph type?",
"type": "menulist",
"value": 0,
"options": [{
"value": "0",
"label": "Line"
}, {
"value": "1",
"label": "Bar"
}, {
"value": "2",
"label": "Radar"
}]
}]
"name": "tab-data-addon",
"title": "Tab Data",
"id": "jid1-4ogjq7MUzAiCOw",
"description": "Provides user with tab related stats/data",
"author": "Robert Byrne",
"license": "GNU GPL v3",
"version": "0.5.3",
"permissions": {
"private-browsing": true
},
"preferences": [
{
"name": "memoryInterval",
"title": "How many seconds between memory data collection?",
"type": "string",
"value": "10"
},
{
"name": "memoryTracking",
"title": "Enable memory usage tracking?",
"type": "bool",
"value": true
},
{
"name": "memoryUsageOnTabTitles",
"title": "Show memory usage in tab titles?",
"type": "menulist",
"value": 0,
"options": [
{
"value": "0",
"label": "Prepend"
},
{
"value": "1",
"label": "Append"
},
{
"value": "2",
"label": "Disable"
}
]
},
{
"name": "memoryFormat",
"title": "Format of memory usage on panel?",
"type": "menulist",
"value": 0,
"options": [
{
"value": "0",
"label": "JSON"
},
{
"value": "1",
"label": "Plain"
}
]
},
{
"name": "memoryUrlInUsage",
"title": "Show Url on memory usage panel?",
"type": "bool",
"value": true
},
{
"name": "memoryCautionThreshold",
"title": "Memory caution threshold? (In megabytes)?",
"type": "string",
"value": "20"
},
{
"name": "panelWidth",
"title": "Width of Panel UI",
"type": "string",
"value": "525"
},
{
"name": "panelHeight",
"title": "Height of Panel UI",
"type": "string",
"value": "525"
},
{
"name": "graphType",
"title": "Graph type?",
"type": "menulist",
"value": 0,
"options": [
{
"value": "0",
"label": "Line"
},
{
"value": "1",
"label": "Bar"
},
{
"value": "2",
"label": "Radar"
}
]
}
]
}
38 changes: 19 additions & 19 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "tab-data-firefox",
"version": "0.5.2",
"homepage": "https://github.com/bobbyrne01/tab-data-firefox",
"authors": [
"Robert Byrne"
],
"description": "Firefox addon providing user with tab related stats/data",
"main": "addon/lib/main.js",
"keywords": [
"firefox",
"tab",
"memory",
"count"
],
"license": "GNU GPL v3",
"private": true,
"dependencies": {
"Chart.js": "~1.0.1"
}
"name": "tab-data-firefox",
"version": "0.5.3",
"homepage": "https://github.com/bobbyrne01/tab-data-firefox",
"authors": [
"Robert Byrne"
],
"description": "Firefox addon providing user with tab related stats/data",
"main": "addon/lib/main.js",
"keywords": [
"firefox",
"tab",
"memory",
"count"
],
"license": "GNU GPL v3",
"private": true,
"dependencies": {
"Chart.js": "~1.0.1"
}
}
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"name": "tab-data-firefox",
"version": "0.5.2",
"description": "Firefox addon providing user with tab related stats/data",
"main": "addon/lib/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/bobbyrne01/tab-data-firefox.git"
},
"author": "Robert Byrne",
"license": "GNU GPL v3",
"bugs": {
"url": "https://github.com/bobbyrne01/tab-data-firefox/issues"
},
"homepage": "https://github.com/bobbyrne01/tab-data-firefox",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-csslint": "^0.4.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-html-validation": "^0.1.18",
"grunt-jsbeautifier": "^0.2.7",
"grunt-notify": "^0.4.1",
"grunt-release": "^0.12.0"
}
"name": "tab-data-firefox",
"version": "0.5.3",
"description": "Firefox addon providing user with tab related stats/data",
"main": "addon/lib/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/bobbyrne01/tab-data-firefox.git"
},
"author": "Robert Byrne",
"license": "GNU GPL v3",
"bugs": {
"url": "https://github.com/bobbyrne01/tab-data-firefox/issues"
},
"homepage": "https://github.com/bobbyrne01/tab-data-firefox",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-csslint": "^0.4.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-html-validation": "^0.1.18",
"grunt-jsbeautifier": "^0.2.7",
"grunt-notify": "^0.4.1",
"grunt-release": "^0.12.0"
}
}

0 comments on commit 9400127

Please sign in to comment.