Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
Releasing chrome-app-developer-tool v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
agrieve committed Jun 25, 2014
1 parent e8dfbe5 commit f37a2b6
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 9 deletions.
48 changes: 48 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,51 @@ Suggestions are always welcome! :)
### In-App Menu
* Inject a JSConsole script tag
* Initiate a weinre session
* Suggestions welcome! :)

# Harness Server

A server runs within the app that enables remote control functionality.

Use `cca` or `harness-push/harness-push.js` (see [harness-push/README.md]) to send commands to the Chrome App Developer Tool for Mobile.

# Release Notes

## v0.8.0 (June 25, 2014)
* Add chrome.alarms and org.apache.cordova.media plugins (mistakenly left out)
* Fix Android back button always quitting the app (now does what you'd expect)
* App now loads only the plugins that an app uses (instead of all installed plugins)
* Initial app push is now much faster for apps with lots of files
* First cut at "Details" and "About" pages
* Deleted notification bubble
* Fix apps not launching when you: push App A, then push App B, then push App A again

## v0.7.1 (June 17, 2014)
* Fix crash on launch-after-backbutton (#13)

## v0.7.0 (June 17, 2014)
* Speed improvements to initial app push (zippush endpoint)
* Implemented details & about page
* Minor UI tweaks

## v0.6.0 (June 17, 2014)
* New name: Chrome App Developer Tool for Mobile
* Default WebView for Chrome Apps is now using Crosswalk, currently based on Chrome/36.0.1985.18
* Changed the Android Launch Mode to singleTop so that clicking icon from launcher doesn't restart the app unnecessarily
* Few updates to the set of plugins we bundle by default
* Fix "failed to start server" when you close the app and start it again
* Displayed IP address now updates when your device's IP changes
* Some minor UI updates

## v0.5.1 (June 3, 2014)
* Now bundling all core Cordova plugins
* Use relative times for "last updated"
* Deleted in-app menu in favour of showing the main screen on double two-finger tap
* UI Overhaul

## v0.5.0 (May 27, 2014)
* Harness server now written in JS using chrome.socket
* Supports incremental updates to apps for faster pushes
* Server now works on iOS
* Use two-finger double-tap to summon menu instead of three-finger swipe

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "chrome-app-harness",
"version": "0.0.1",
"name": "chrome-app-developer-tool",
"version": "0.8.0",
"description": "The Chrome App Developer Tool for Mobile (\"App Dev Tool\" for short) is a distribution of [Apache Cordova App Harness](https://git-wip-us.apache.org/repos/asf/cordova-app-harness.git) that can run Chrome Apps. It is based on the plugins from the [cca](https://github.com/MobileChomeApps/mobile-chrome-apps) toolkit.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/MobileChromeApps/chrome-app-harness.git"
"url": "git://github.com/MobileChromeApps/chrome-app-developer-tool.git"
},
"author": "",
"author": "The Chrome Team",
"license": "Apache version 2.0",
"bugs": {
"url": "https://github.com/MobileChromeApps/chrome-app-harness/issues"
"url": "https://github.com/MobileChromeApps/chrome-app-developer-tool/issues"
},
"homepage": "https://github.com/MobileChromeApps/chrome-app-harness",
"homepage": "https://github.com/MobileChromeApps/chrome-app-developer-tool",
"devDependencies": {
"gulp-jshint": "~1.6",
"gulp": "latest",
Expand Down
2 changes: 1 addition & 1 deletion www/cdvah/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
var myApp = angular.module('ChromeAppDeveloperTool', ['ngRoute', 'angularMoment']);

myApp.value('APP_NAME', 'Chrome App Developer Tool');
myApp.value('APP_VERSION', '0.7.1-dev');
myApp.value('APP_VERSION', '0.8.0');

myApp.config(['$routeProvider', function($routeProvider){
$routeProvider.when('/', {
Expand Down

0 comments on commit f37a2b6

Please sign in to comment.