Skip to content

Commit

Permalink
Version 1.1.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocchetti committed Aug 4, 2019
1 parent 979d4dc commit e0ba9b6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.DS_STORE
.idea/
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,20 @@

# WideGitHub

This add-on makes the GitHub layout **wide, fluid and responsive**. Now you can focus on your code.
This is a simple add-on that makes the GitHub layout **wide** on Mozilla Firefox.
Now you can focus on your code.

It works on Mozilla Firefox 57 (Quantum) or superior.
It works on Mozilla Firefox 57 (Quantum) or superior. Compatible with private GitHub domains.

### Changelog

**1.0.1** Minor changes.
**1.1.0**
- Support for private GitHub domains ([Issue #1](https://github.com/fabiocchetti/widegithub/issues/1)).
- [Project views](https://help.github.com/en/articles/about-project-boards) have been excluded. WideGitHub should not be enabled there ([Issue #2](https://github.com/fabiocchetti/widegithub/issues/2)).
- Fixed bigger-than-expected images in user detail view. ([Issue #3](https://github.com/fabiocchetti/widegithub/issues/3)).

**1.0.0** Initial release.
**1.0.1**
- Minor changes.

**1.0.0**
- Initial release.
8 changes: 5 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{

"description": "Makes GitHub layout wide, fluid and responsive.",
"description": "Makes GitHub layout wide on Mozilla Firefox.",
"manifest_version": 2,
"name": "Wide GitHub",
"version": "1.0.1",
"version": "1.1.0",
"homepage_url": "https://github.com/fabiocchetti/widegithub",
"icons": {
"128": "icons/widegithub-128.png"
},

"content_scripts": [
{
"matches": ["*://github.com/*"],
"css": ["style.css"],
"matches": ["*://github.com/*"],
"include_globs": ["*://*github*.com/*"],
"exclude_globs": ["*://*github*.com/*/projects/*"],
"run_at" : "document_start"
}
]
Expand Down
4 changes: 0 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
.avatar {
width: auto !important;
}

.css-truncate-button a {
color: gray;
margin-right: 5px;
Expand Down

0 comments on commit e0ba9b6

Please sign in to comment.