Skip to content

Commit 150dbee

Browse files
authored
Merge pull request #4 from klaufel/feat/road-to-v1
Feat/road to v1
2 parents 8524ea2 + 6a5f525 commit 150dbee

File tree

13 files changed

+364
-410
lines changed

13 files changed

+364
-410
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center">
2-
🦖 GoJIRA
2+
🔷 GoJIRA
33
<br/><br/>
44
</h1>
55

@@ -11,7 +11,7 @@
1111
</p>
1212

1313
<p align="center">
14-
<img src="https://user-images.githubusercontent.com/1427623/93541046-b5737300-f955-11ea-9032-26f043dda03e.png" width="250" height="458" alt="GoJIRA browser extension for JIRA">
14+
<img src="https://user-images.githubusercontent.com/1427623/94141222-b718cb80-fe6c-11ea-919e-324926cd576a.png" width="236" height="533" alt="GoJIRA browser extension for JIRA">
1515
</p>
1616

1717
## :fire: Overview

images/get_started128.png

-22.2 KB
Binary file not shown.

images/icon-128.png

6.2 KB
Loading

images/icon-16.png

514 Bytes
Loading

images/icon-32.png

810 Bytes
Loading

images/icon-48.png

1.72 KB
Loading

manifest.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "GoJIRA",
3-
"version": "0.0.2",
3+
"version": "1.0.0",
44
"description": "JIRA browser extension to provides useful tools to manage your dashboards and direct links to your most used JIRA dashboards.",
55
"permissions": ["activeTab", "declarativeContent", "storage"],
66
"options_page": "src/modules/options/options.html",
@@ -10,11 +10,14 @@
1010
"page_action": {
1111
"default_popup": "src/modules/popup/popup.html",
1212
"default_icon": {
13-
"128": "images/get_started128.png"
13+
"128": "images/icon-128.png"
1414
}
1515
},
1616
"icons": {
17-
"128": "images/get_started128.png"
17+
"128": "images/icon-128.png",
18+
"48": "images/icon-48.png",
19+
"32": "images/icon-32.png",
20+
"16": "images/icon-16.png"
1821
},
1922
"minimum_chrome_version": "61",
2023
"manifest_version": 2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gojira",
3-
"version": "0.0.2",
3+
"version": "1.0.0",
44
"description": "JIRA browser extension to provides useful tools to manage your dashboards and direct links to your most used JIRA dashboards.",
55
"main": "",
66
"scripts": {

src/modules/options/options.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
</head>
77
<body>
88
<div class="wrapper wrapper--form">
9-
<h1>&#x1f996; GoJIRA</h1>
9+
<h1>&#x1f537; GoJIRA</h1>
1010
<p>Configure the extension to be a productivity raptor!</p>
1111
<hr />
1212
<form id="configForm" class="form">
1313
<div id="form"></div>
14-
<button type="submit">Save config</button>
15-
<div id="messages"></div>
14+
<button class="button" type="submit">Save config</button>
15+
<div class="messages"></div>
1616
</form>
1717
</div>
1818
</body>

src/modules/options/options.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { _browser } from "../../config/repository.js";
22
import { INPUT_FORM, INPUT_KEYS } from "../../config/index.js";
33

44
const configForm = document.getElementById("configForm");
5-
const messages = document.getElementById("messages");
65
const formOptions = document.getElementById("form");
6+
const messages = document.querySelector(".messages");
77

88
const getDomainUrl = (url) => {
99
const split = url?.split("/");
@@ -16,6 +16,7 @@ const genForm = (values) => {
1616
<div class="form-control">
1717
<label for="${name}">${label}</label>
1818
<input
19+
class="input"
1920
id="${name}"
2021
name="${name}"
2122
placeholder="${placeholder || ""}"

0 commit comments

Comments
 (0)