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

Commit c1f1b49

Browse files
authored
Version 1.3.0 (#8)
1 parent 3871639 commit c1f1b49

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

Diff for: html/changelog.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ <h2>What's new in this release</h2>
4242
</section>
4343
<section id="changelogPrompt" class="main special">
4444
<header class="minor">
45-
<h2>Don't want to see the changelog on updates?</h2>
45+
<h2>Want to see the changelog on updates?</h2>
4646
</header>
4747
<ul class="actions special">
48-
<li><a href="settings.html" class="button">Turn it off</a></li>
48+
<li><a href="settings.html" class="button">Toggle in settings</a></li>
4949
</ul>
5050
</section>
5151

@@ -54,6 +54,10 @@ <h2>Don't want to see the changelog on updates?</h2>
5454
<header class="major">
5555
<h2>Version History</h2>
5656
</header>
57+
<aside class="version">
58+
<h4>Version 1.3.0</h4>
59+
<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>
60+
</aside>
5761
<aside class="version">
5862
<h4>Version 1.2.0</h4>
5963
<p>Switched notifications to use a new library. This fixes issues with notification buttons.</p>

Diff for: html/settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h1>Settings</h1>
3434
<header class="major">
3535
<h2>Changelog</h2>
3636
</header>
37-
<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>
37+
<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>
3838
<input type="checkbox" id="setting-changelogOnUpdate" name="setting-changelogOnUpdate">
3939
<label for="setting-changelogOnUpdate">Display changelog on update</label>
4040
</section>

Diff for: html/welcome.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ <h2>Reporting a Problem</h2>
9595
<section>
9696
<h2>Version History</h2>
9797
<aside class="version">
98-
<h4>Version 1.2.0</h4>
99-
<p>This release is a bug fix for notification buttons not working.</p>
98+
<h4>Version 1.3.0</h4>
99+
<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>
100100
</aside>
101101
<ul class="actions">
102102
<li><a href="changelog.html" class="button">View Full Changelog</a></li>
@@ -105,8 +105,8 @@ <h4>Version 1.2.0</h4>
105105
<section>
106106
<h2>&nbsp;</h2>
107107
<aside class="version">
108-
<h4>Version 1.1.3</h4>
109-
<p>Minor bug fixes. Detect when not logged in.</p>
108+
<h4>Version 1.2.0</h4>
109+
<p>This release is a bug fix for notification buttons not working.</p>
110110
</aside>
111111
</section>
112112
<p class="copyright"><a href="licenses.html">View extension and third-party licenses</a></p>

Diff for: js/background/update-install-listener.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ chrome.runtime.onInstalled.addListener(function(details) {
99
// Information about the previous versionCompare
1010
var previousVersion = details.previousVersion;
1111

12-
// If the changelogOnUpdate setting is set (default=true), open the changelog on updates
13-
chrome.storage.sync.get({changelogOnUpdate: true} , function(result) {
12+
// If the changelogOnUpdate setting is set (default=false), open the changelog on updates
13+
chrome.storage.sync.get({changelogOnUpdate: false} , function(result) {
1414
if (result.changelogOnUpdate) {
1515
window.open(chrome.extension.getURL("/html/changelog.html"), '_blank');
1616
}

Diff for: js/settings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
chrome.storage.sync.get({"changelogOnUpdate": true, "disableAnalytics": true, "fixTriangle": true}, function(result) {
1+
chrome.storage.sync.get({"changelogOnUpdate": false, "disableAnalytics": true, "fixTriangle": true}, function(result) {
22
console.log(result);
33
if (result.changelogOnUpdate) {
44
$("#setting-changelogOnUpdate").prop("checked", true);

Diff for: manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"name": "Robinhood Mint Sync for Chrome",
55
"description": "Automatically add your Robinhood portfolio to Mint",
6-
"version": "1.2.0",
6+
"version": "1.3.0",
77
"author": "George Walker",
88

99
"icons": {

0 commit comments

Comments
 (0)