Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Version 1.3.0 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkmnct committed Oct 11, 2019
1 parent 3871639 commit c1f1b49
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
8 changes: 6 additions & 2 deletions html/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ <h2>What's new in this release</h2>
</section>
<section id="changelogPrompt" class="main special">
<header class="minor">
<h2>Don't want to see the changelog on updates?</h2>
<h2>Want to see the changelog on updates?</h2>
</header>
<ul class="actions special">
<li><a href="settings.html" class="button">Turn it off</a></li>
<li><a href="settings.html" class="button">Toggle in settings</a></li>
</ul>
</section>

Expand All @@ -54,6 +54,10 @@ <h2>Don't want to see the changelog on updates?</h2>
<header class="major">
<h2>Version History</h2>
</header>
<aside class="version">
<h4>Version 1.3.0</h4>
<p>Added a fix for the triangle indicator in some areas of Mint. See <a href="https://github.com/pkmnct/robinhood-mint-sync-chrome/pull/7">pull request on GitHub</a> for more info. The changelog no longer shows on update by default. Analytics are no longer collected by default.</p>
</aside>
<aside class="version">
<h4>Version 1.2.0</h4>
<p>Switched notifications to use a new library. This fixes issues with notification buttons.</p>
Expand Down
2 changes: 1 addition & 1 deletion html/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1>Settings</h1>
<header class="major">
<h2>Changelog</h2>
</header>
<p>Toggle this setting off to turn off the changelog page on extension updates. This changelog shows information about the new features and changes introduced with the update.</p>
<p>Enable or disable the changelog page on extension updates. This changelog shows information about the new features and changes introduced with the update.</p>
<input type="checkbox" id="setting-changelogOnUpdate" name="setting-changelogOnUpdate">
<label for="setting-changelogOnUpdate">Display changelog on update</label>
</section>
Expand Down
8 changes: 4 additions & 4 deletions html/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ <h2>Reporting a Problem</h2>
<section>
<h2>Version History</h2>
<aside class="version">
<h4>Version 1.2.0</h4>
<p>This release is a bug fix for notification buttons not working.</p>
<h4>Version 1.3.0</h4>
<p>Added a fix for the triangle indicator in some areas of Mint. See <a href="https://github.com/pkmnct/robinhood-mint-sync-chrome/pull/7">pull request on GitHub</a> for more info. The changelog no longer shows on update by default. Analytics are no longer collected by default.</p>
</aside>
<ul class="actions">
<li><a href="changelog.html" class="button">View Full Changelog</a></li>
Expand All @@ -105,8 +105,8 @@ <h4>Version 1.2.0</h4>
<section>
<h2>&nbsp;</h2>
<aside class="version">
<h4>Version 1.1.3</h4>
<p>Minor bug fixes. Detect when not logged in.</p>
<h4>Version 1.2.0</h4>
<p>This release is a bug fix for notification buttons not working.</p>
</aside>
</section>
<p class="copyright"><a href="licenses.html">View extension and third-party licenses</a></p>
Expand Down
4 changes: 2 additions & 2 deletions js/background/update-install-listener.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ chrome.runtime.onInstalled.addListener(function(details) {
// Information about the previous versionCompare
var previousVersion = details.previousVersion;

// If the changelogOnUpdate setting is set (default=true), open the changelog on updates
chrome.storage.sync.get({changelogOnUpdate: true} , function(result) {
// If the changelogOnUpdate setting is set (default=false), open the changelog on updates
chrome.storage.sync.get({changelogOnUpdate: false} , function(result) {
if (result.changelogOnUpdate) {
window.open(chrome.extension.getURL("/html/changelog.html"), '_blank');
}
Expand Down
2 changes: 1 addition & 1 deletion js/settings.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
chrome.storage.sync.get({"changelogOnUpdate": true, "disableAnalytics": true, "fixTriangle": true}, function(result) {
chrome.storage.sync.get({"changelogOnUpdate": false, "disableAnalytics": true, "fixTriangle": true}, function(result) {
console.log(result);
if (result.changelogOnUpdate) {
$("#setting-changelogOnUpdate").prop("checked", true);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"name": "Robinhood Mint Sync for Chrome",
"description": "Automatically add your Robinhood portfolio to Mint",
"version": "1.2.0",
"version": "1.3.0",
"author": "George Walker",

"icons": {
Expand Down

0 comments on commit c1f1b49

Please sign in to comment.