Skip to content

Commit dd0aee5

Browse files
committed
fix: resolve #126
1 parent dec2493 commit dd0aee5

File tree

18 files changed

+36
-26
lines changed

18 files changed

+36
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Changelog
22
---
3+
## 1.6.2
4+
* Excluded user status dialog to prevent browser from being freezed.
5+
* Fixed extraction.
6+
37
## 1.6.1
48
* Added `placement` option to configure default location of hovercards.
59

demo/dist/demo.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/chrome/hovercard.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ $(() => {
1010
'.time',
1111
'.octotree_sidebar',
1212
'time-ago',
13-
'relative-time'
13+
'relative-time',
14+
'.user-status-container'
1415
].join(',');
1516

1617
const DEFAULT_TARGET = document.body;
@@ -51,9 +52,9 @@ $(() => {
5152
'explore', 'styleguide', 'showcases', 'trending', 'stars',
5253
'dashboard', 'notifications', 'search', 'developer', 'account',
5354
'pulls', 'issues', 'features', 'contact', 'security', 'join',
54-
'login', 'watching', 'new', 'integrations', 'pricing', 'topics',
55+
'login', 'watching', 'new', 'integration', 'pricing', 'topics',
5556
'personal', 'business', 'open-source', 'marketplace', 'collections',
56-
'hovercards', 'discover'
57+
'hovercards', 'discover', 'case-studies'
5758
];
5859

5960
const GH_RESERVED_REPO_NAMES = [

extensions/chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "GitHub Hovercard",
44
"description": "Neat hovercards for GitHub.",
5-
"version": "1.6.1",
5+
"version": "1.6.2",
66
"icons": {
77
"128": "icon.png"
88
},

extensions/edge/hovercard.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ document.addEventListener('DOMContentLoaded', () => {
1010
'.time',
1111
'.octotree_sidebar',
1212
'time-ago',
13-
'relative-time'
13+
'relative-time',
14+
'.user-status-container'
1415
].join(',');
1516

1617
const DEFAULT_TARGET = document.body;
@@ -51,9 +52,9 @@ document.addEventListener('DOMContentLoaded', () => {
5152
'explore', 'styleguide', 'showcases', 'trending', 'stars',
5253
'dashboard', 'notifications', 'search', 'developer', 'account',
5354
'pulls', 'issues', 'features', 'contact', 'security', 'join',
54-
'login', 'watching', 'new', 'integrations', 'pricing', 'topics',
55+
'login', 'watching', 'new', 'integration', 'pricing', 'topics',
5556
'personal', 'business', 'open-source', 'marketplace', 'collections',
56-
'hovercards', 'discover'
57+
'hovercards', 'discover', 'case-studies'
5758
];
5859

5960
const GH_RESERVED_REPO_NAMES = [

extensions/edge/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"storage",
2626
"https://github.com/*"
2727
],
28-
"version": "1.6.1",
28+
"version": "1.6.2",
2929
"-ms-preload": {
3030
"backgroundScript": "backgroundScriptsAPIBridge.js",
3131
"contentScript": "contentScriptsAPIBridge.js"

extensions/firefox/hovercard.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ $(() => {
1010
'.time',
1111
'.octotree_sidebar',
1212
'time-ago',
13-
'relative-time'
13+
'relative-time',
14+
'.user-status-container'
1415
].join(',');
1516

1617
const DEFAULT_TARGET = document.body;
@@ -51,9 +52,9 @@ $(() => {
5152
'explore', 'styleguide', 'showcases', 'trending', 'stars',
5253
'dashboard', 'notifications', 'search', 'developer', 'account',
5354
'pulls', 'issues', 'features', 'contact', 'security', 'join',
54-
'login', 'watching', 'new', 'integrations', 'pricing', 'topics',
55+
'login', 'watching', 'new', 'integration', 'pricing', 'topics',
5556
'personal', 'business', 'open-source', 'marketplace', 'collections',
56-
'hovercards', 'discover'
57+
'hovercards', 'discover', 'case-studies'
5758
];
5859

5960
const GH_RESERVED_REPO_NAMES = [

extensions/firefox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "GitHub Hovercard",
44
"description": "Neat hovercards for GitHub.",
5-
"version": "1.6.1",
5+
"version": "1.6.2",
66
"icons": {
77
"128": "icon.png"
88
},

extensions/github-hovercard.safariextension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.6.1</string>
16+
<string>1.6.2</string>
1717
<key>CFBundleVersion</key>
18-
<string>1.6.1</string>
18+
<string>1.6.2</string>
1919
<key>Content</key>
2020
<dict>
2121
<key>Scripts</key>

extensions/github-hovercard.safariextension/hovercard.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ $(() => {
1010
'.time',
1111
'.octotree_sidebar',
1212
'time-ago',
13-
'relative-time'
13+
'relative-time',
14+
'.user-status-container'
1415
].join(',');
1516

1617
const DEFAULT_TARGET = document.body;
@@ -51,9 +52,9 @@ $(() => {
5152
'explore', 'styleguide', 'showcases', 'trending', 'stars',
5253
'dashboard', 'notifications', 'search', 'developer', 'account',
5354
'pulls', 'issues', 'features', 'contact', 'security', 'join',
54-
'login', 'watching', 'new', 'integrations', 'pricing', 'topics',
55+
'login', 'watching', 'new', 'integration', 'pricing', 'topics',
5556
'personal', 'business', 'open-source', 'marketplace', 'collections',
56-
'hovercards', 'discover'
57+
'hovercards', 'discover', 'case-studies'
5758
];
5859

5960
const GH_RESERVED_REPO_NAMES = [

0 commit comments

Comments
 (0)