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

Commit

Permalink
Release 1.1.0 (#617)
Browse files Browse the repository at this point in the history
* Update version information in popup.html.
* Update version in package.json and manifest.json
* Write Changelog entry for version 1.1.0
  • Loading branch information
Aaron Muir Hamilton authored Sep 8, 2016
1 parent d947ab4 commit e681fd8
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 85 deletions.
28 changes: 26 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## [1.1.0](https://github.com/rangle/augury/tree/1.1.0)
* Port Augury to Angular 2.0.0 RC6 ([524](https://github.com/rangle/augury/issues/524), [563](https://github.com/rangle/augury/issues/563))
* Remove support for the deprecated router ([590](https://github.com/rangle/augury/issues/590))
* Move @Output info to the state editor, remove the Outputs accordion. ([606](https://github.com/rangle/augury/issues/606))
* Move @Input info to the state editor, remove the Inputs accordion. ([605](https://github.com/rangle/augury/issues/605))
* Display the state editor tree collapsed by default. ([610](https://github.com/rangle/augury/issues/610))
* Show the change detection strategy bare instead of in an accordion. ([607](https://github.com/rangle/augury/issues/607))
* Reduce component tree serialization overhead. ([592](https://github.com/rangle/augury/issues/592))
* Redraw augury-logo.svg and clean up Triangle.svg to prevent aliasing in Skia ([587](https://github.com/rangle/augury/issues/587))
* Rework the Router Tree and the Injector Tree ([585](https://github.com/rangle/augury/issues/585))
* Remove the Children accordion from Component Info since that information is available in the state editor and component tree. ([584](https://github.com/rangle/augury/issues/584))
* Simplify theming system and centralize color definitions. ([580](https://github.com/rangle/augury/issues/580))
* Improve performance by avoiding deep cloning in the JSON diff/patch utility. ([573](https://github.com/rangle/augury/issues/573))
* Only expand the Component Tree 3 levels deep by default. ([558](https://github.com/rangle/augury/issues/558))
* Massive refactoring of entire backend and most of the frontend. ([546](https://github.com/rangle/augury/issues/546))
* Add more graceful error handling and display a helpful message when the target application is not running in debug mode ([603](https://github.com/rangle/augury/issues/603))
* Reintroduce route search ([579](https://github.com/rangle/augury/issues/579))
* Hide Component Info accordions when they are empty. ([575](https://github.com/rangle/augury/issues/575))
* Make the Info Panel resizable. ([537](https://github.com/rangle/augury/issues/537))
* Run Augury's Angular 2 instance in production mode. ([530](https://github.com/rangle/augury/issues/530))
* Fix: $a is not being defined on regular elements (only components) ([615](https://github.com/rangle/augury/issues/615))
* Fix: Escape double quotes in node description so that sanitizeHtml doesn't complain. ([522](https://github.com/rangle/augury/issues/522))
* Fix: Settings menu doesn't close when the user clicks outside of it. ([436](https://github.com/rangle/augury/issues/436))

## [1.0.5](https://github.com/rangle/augury/tree/1.0.5)
* Performance improvements ([493](https://github.com/rangle/augury/issues/493), [504](https://github.com/rangle/augury/issues/504))
* Bug fixes for search ([496](https://github.com/rangle/augury/issues/496), [511](https://github.com/rangle/augury/issues/511))
Expand All @@ -15,9 +39,9 @@
* Color Settings popup should be consistent with theme ([459](https://github.com/rangle/augury/issues/459))

## [1.0.3](https://github.com/rangle/augury/tree/1.0.3)
* Augury supports projects written in Angular 2.0.0-rc.3
* Augury supports projects written in Angular 2.0.0-rc.3
* Update Augury to Angular 2.0.0-rc.3 ([450](https://github.com/rangle/augury/issues/450))
* Fix a bug where graph colors in "Router Tree" where not matching the dark theme ([435](https://github.com/rangle/augury/issues/435))
* Fix a bug where graph colors in Router Tree were not matching the dark theme ([435](https://github.com/rangle/augury/issues/435))
* Ignore build output ([453](https://github.com/rangle/augury/issues/453))
* Rename `openedNodes` to `closedNodes` for clarity ([363](https://github.com/rangle/augury/issues/363))

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Augury",
"short_name": "Augury",
"version": "1.0.5",
"version": "1.1.0",
"description": "Extends the Developer Tools, adding tools for debugging and profiling Angular 2.0 applications.",
"permissions": [
"tabs",
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": "augury",
"version": "1.0.5",
"version": "1.1.0",
"description": "Chrome Developer Tools Extension for inspecting Angular 2.0 applications",
"repository": {
"type": "git",
Expand Down
121 changes: 40 additions & 81 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,90 +3,68 @@
<head>
<style>
/* Modal Structure */

html,
body {
margin: 0;
min-height: 150px;
padding: 0;
width: 400px;
width: 384px;
}

.modal_header {
align-items: center;
border-bottom: 0.5px solid #dadada;
display: flex;
height: 55px;
width: 100%;
}

.modal_content {
padding: 20px 22px;
}

.modal_cta {
border-top: 0.5px solid #dadada;
height: 50px;
width: 100%;
}
/* Header Section */

.logo {
align-items: center;
display: flex;
padding-left: 22px;
width: 60%;
padding: 16px;
}

.logo_icon {
display: inline-block;
float: left;
margin-right: 10px;
}

.logo_text {
float: left;
}

.close_btn {
background: url(images/close.svg) no-repeat center center;
border: none;
cursor: pointer;
height: 25px;
margin-left: auto;
vertical-align: text-bottom;
margin-right: 12px;
opacity: 0.65;
outline: none;
transition: opacity 0.2s ease-in-out;
width: 25px;
}

.close_btn:hover {
opacity: 0.4;

.version_number {
color: #444;
font-size: 18px;
}

/* CTA Section */

.flex_container {
display: flex;
justify-content: space-between;
padding: 12px 22px;
}

.flex {
opacity: 1;
transition: opacity 0.2s ease-in-out;
width: 120px;
}

.flex:hover {
opacity: 0.4;
}

.icon {
display: inline-block;
position: relative;
}

.icon:before {
content: "";
display: inline-block;
Expand All @@ -95,58 +73,47 @@
vertical-align: middle;
width: 25px;
}

.icon span {
display: inline-block;
margin-top: 3px;
}

.github {
background-image: url(images/github.svg);
background-repeat: no-repeat;
}

.website {
background-image: url(images/augury-bw.svg);
background-repeat: no-repeat;
}

.contribute {
background-image: url(images/contribute.svg);
background-repeat: no-repeat;
}
/* Content */

a:link,
a:visited {
color: #000000;
outline: 0;
text-decoration: none;
}

img {
width: 30px;
}

h1 {
font-family: 'Menlo', monospace;
font-size: 16px;
font-weight: 100;
margin: 0;
}

p, .version-support {
font-family: 'Open Sans', sans-serif;
font-size: 12px;
line-height: 24px;
font-size: 22px;
font-weight: 400;
margin: 0;
}

.version-support {
padding: 0 18px;
}

span {
body {
font-family: 'Open Sans', sans-serif;
font-size: 14px;
}
Expand All @@ -156,42 +123,34 @@

<body>
<div class="modal_header">
<div class="logo">
<div class="logo_icon">
<img src="images/augury-logo.svg">
</div>
<div class="logo_text">
<h1>Augury</h1>
</div>
</div>
<h1 class="logo"><img class="logo_icon" src="images/augury-logo.svg">Augury&nbsp;<span class="version_number">(1.1.0)</span></h1>
</div>

<div class="modal_content">
<p>Augury is a Google Chrome Dev Tool extension for debugging Angular 2 applications.</p>
<p>Augury is a Chrome Dev Tools extension for debugging Angular&nbsp;2 applications.</p>
<br>
<p>Currently works with:</p>
<ul class="version-support">
<li>Angular 2.0.0-rc.4</li>
<li>"@angular/router": "^3.0.0-beta.2"</li>
<li>"@angular/router-deprecated": "2.0.0-rc.2"</li>
<ul>
<li>Angular 2.0.0-rc.4 through rc.6</li>
<li>@angular/router 3.0.0-beta.2 and later</li>
</ul>
</div>

<div class="modal_cta">
<div class="flex_container">
<div class="flex github">
<a href="https://github.com/rangle/augury" target="_blank" class="icon github">
<span>Github</span>
<a href="https://github.com/rangle/augury" target="__augury_github" class="icon github">
Github
</a>
</div>
<div class="flex website">
<a href="https://augury.angular.io/" target="_blank" class="icon">
<span>Website</span>
<a href="https://augury.angular.io/" target="__augury_website" class="icon">
Website
</a>
</div>
<div class="flex contribute">
<a href="https://github.com/rangle/augury/blob/master/CONTRIBUTING.md" target="_blank" class="icon">
<span>Contribute</span>
<a href="https://github.com/rangle/augury/blob/master/CONTRIBUTING.md" target="__augury_contribute" class="icon">
Contribute
</a>
</div>
</div>
Expand Down

0 comments on commit e681fd8

Please sign in to comment.