[Pkg-mozext-commits] [nosquint] 10/13: Add info on getting support to about:nosquint
David Prévot
taffit at moszumanska.debian.org
Tue Apr 28 01:41:24 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag 2.1.7
in repository nosquint.
commit 0cf35bbdf67da4ac2ac8b657a0c1781594414212
Author: Jason Tackaberry <tack at urandom.ca>
Date: Sun Mar 31 20:21:01 2013 -0400
Add info on getting support to about:nosquint
---
src/content/about.html | 12 +++++-------
src/content/prefs.js | 7 +++++--
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/content/about.html b/src/content/about.html
index e1e5c01..6631896 100644
--- a/src/content/about.html
+++ b/src/content/about.html
@@ -30,9 +30,8 @@
margin: 40px 0 0;
background: #f9f9f9 url(chrome://nosquint/skin/box-grunge.png) 0 0 repeat-x;
border: 1px solid #dbe5ea;
- -moz-border-radius: 10px;
border-radius: 10px;
- -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.05);
+ box-shadow: 0 2px 3px rgba(0,0,0,0.05);
}
div.box:nth-child(2) {
@@ -102,7 +101,7 @@
<div class='col'>
<h2>Getting Started</h2>
- <p>If your status bar is visible, you should see the NoSquint icon in the bottom corner.</p>
+ <p>If your addon bar is visible, you should see the NoSquint icon in the bottom corner.</p>
<img src='chrome://nosquint/skin/statusbar-shot.jpg' />
<p>Clicking this icon with the left, middle, or right mouse buttons will provide different
options. Go ahead and try!
@@ -122,10 +121,9 @@
<p>And another tip: pressing the shift key with any zoom shortcut will use a different zoom method (text-only by default).</p>
</div>
<div class='col'>
- <h2>Firefox 4</h2>
- <p>As of version 4, Firefox natively includes zoom buttons for the toolbar. If you're using Firefox 4, you may have noticed that NoSquint automatically replaced its old buttons with the native ones. Don't worry, they still work like before!</p>
- <p>In order to best interact with NoSquint, Firefox's new Addon Bar (which replaces the old status bar) should be enabled. NoSquint will enable it for you when you upgrade.</p>
-
+ <h2>Bug? Need Help?</h2>
+ <p>Your best way of contacting the author to report a bug or ask for help is to open a ticket at the <a href="https://github.com/jtackaberry/nosquint/issues">NoSquint Issues</a> site.</p>
+ <p>Alternatively, you can email the author, Jason Tackaberry, at <a href="mailto:tack at urandom.ca">tack at urandom.ca</a>. Please be patient for a reply as a hectic day job and a modest social life competes heavily for attention. ☺</p>
</div>
<div style='clear: both'></div>
</div>
diff --git a/src/content/prefs.js b/src/content/prefs.js
index 5a7852e..df70375 100644
--- a/src/content/prefs.js
+++ b/src/content/prefs.js
@@ -870,8 +870,11 @@ NoSquint.prefs = NoSquint.ns(function() { with(NoSquint) {
cur_parts = addon.version.split('.');
last_parts = (NSQ.prefs.lastVersion || '0.0').split('.');
if (cur_parts[0] > last_parts[0] || (cur_parts[0] == last_parts[0] && cur_parts[1] > last_parts[1]))
- if (!found)
- NSQ.browser.gBrowser.selectedTab = gBrowser.addTab('about:nosquint');
+ if (!found) {
+ defer(500, function() {
+ NSQ.browser.gBrowser.selectedTab = gBrowser.addTab('about:nosquint');
+ });
+ }
branchNS.setCharPref('version', addon.version);
NoSquint.prefs.save();
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/nosquint.git
More information about the Pkg-mozext-commits
mailing list