There was an error while loading. Please reload this page.
1 parent dec2493 commit dd0aee5Copy full SHA for dd0aee5
CHANGELOG.md
@@ -1,5 +1,9 @@
1
Changelog
2
---
3
+## 1.6.2
4
+* Excluded user status dialog to prevent browser from being freezed.
5
+* Fixed extraction.
6
+
7
## 1.6.1
8
* Added `placement` option to configure default location of hovercards.
9
demo/dist/demo.js
extensions/chrome/hovercard.js
@@ -10,7 +10,8 @@ $(() => {
10
'.time',
11
'.octotree_sidebar',
12
'time-ago',
13
- 'relative-time'
+ 'relative-time',
14
+ '.user-status-container'
15
].join(',');
16
17
const DEFAULT_TARGET = document.body;
@@ -51,9 +52,9 @@ $(() => {
51
52
'explore', 'styleguide', 'showcases', 'trending', 'stars',
53
'dashboard', 'notifications', 'search', 'developer', 'account',
54
'pulls', 'issues', 'features', 'contact', 'security', 'join',
- 'login', 'watching', 'new', 'integrations', 'pricing', 'topics',
55
+ 'login', 'watching', 'new', 'integration', 'pricing', 'topics',
56
'personal', 'business', 'open-source', 'marketplace', 'collections',
- 'hovercards', 'discover'
57
+ 'hovercards', 'discover', 'case-studies'
58
];
59
60
const GH_RESERVED_REPO_NAMES = [
extensions/chrome/manifest.json
@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "GitHub Hovercard",
"description": "Neat hovercards for GitHub.",
- "version": "1.6.1",
+ "version": "1.6.2",
"icons": {
"128": "icon.png"
},
extensions/edge/hovercard.js
@@ -10,7 +10,8 @@ document.addEventListener('DOMContentLoaded', () => {
@@ -51,9 +52,9 @@ document.addEventListener('DOMContentLoaded', () => {
extensions/edge/manifest.json
@@ -25,7 +25,7 @@
25
"storage",
26
"https://github.com/*"
27
],
28
29
"-ms-preload": {
30
"backgroundScript": "backgroundScriptsAPIBridge.js",
31
"contentScript": "contentScriptsAPIBridge.js"
extensions/firefox/hovercard.js
extensions/firefox/manifest.json
extensions/github-hovercard.safariextension/Info.plist
@@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
- <string>1.6.1</string>
+ <string>1.6.2</string>
<key>CFBundleVersion</key>
18
19
<key>Content</key>
20
<dict>
21
<key>Scripts</key>
extensions/github-hovercard.safariextension/hovercard.js
0 commit comments