Skip to content

Commit

Permalink
Merge pull request #288 from ljay79/develop
Browse files Browse the repository at this point in the history
Feature: changelog report
  • Loading branch information
ljay79 authored Jun 13, 2021
2 parents e232675 + 48edec8 commit e58a553
Show file tree
Hide file tree
Showing 32 changed files with 21,712 additions and 5,681 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ module.exports = {
"comma-dangle": "off",
"no-var": "off",
"generator-star-spacing": ["error", {"anonymous": "neither"}],
quotes: "off"
}
};
};
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
/temp
/.vscode
/test/test-data
.idea
2 changes: 1 addition & 1 deletion CODESTANDARDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ function callbackForNewCoolFeature(parameters) {
.callbackForNewCoolFeature(parameters);
*/
}
```
```
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ Best described here -> [How to obtain API Token](https://confluence.atlassian.co
> It is recommended to use this Add-on only with an Jira Cloud/Server instance which runs via SSL (https).
> This Add-on is using simple Basic Auth mechanism to authenticate with Jira, which means, user credentials are transmitted unencrypted when used without SSL.
#### (C) Personal Access Token
Recent Jira Versions (starting Jira Core 8.14) allow users to create personal access tokens. One can create such token under Profile > Personal Access Tokens > Create. These tokens are available on Jira Core and Jira Software (On-Premise) in comparison to aforementioned Atlassian API Tokens (only available in cloud). [More Information on Personal Access Tokens](https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html)

> This Add-on can use Bearer Auth mechanism to authenticate with Personal Access Tokens
You're all set and ready to go.

# Features
Expand Down
36 changes: 34 additions & 2 deletions assets/s3/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ text-align: start;

/*!
* Project Aid for Jira
* @version v1.4.0
* @version v1.4.10
* @license GNU GENERAL PUBLIC LICENSE v3.
* @copyright 2017-2019, Jens Rosemeier. All rights reserved.
* @link https://github.com/ljay79/jira-tools
Expand Down Expand Up @@ -263,6 +263,32 @@ fieldset p a:visited {
}
}

.mt10 {
margin-top: 10px !important;
}
.mt20 {
margin-top: 20px !important;
}
.mt30 {
margin-top: 30px !important;
}
.mt40 {
margin-top: 40px !important;
}
.mb10 {
margin-bottom: 10px !important;
}
.mb20 {
margin-bottom: 20px !important;
}
.mb30 {
margin-bottom: 30px !important;
}
.mb40 {
margin-bottom: 40px !important;
}


.sidebar {
padding: 0;
}
Expand Down Expand Up @@ -528,7 +554,7 @@ dialog {
font-size: 13px;
}

.mdl-js fieldset.input-switch {
#addon-options-panel fieldset.input-switch {
padding-bottom: 50px;
}
.mdl-js fieldset.input-switch > .mdl-switch {
Expand All @@ -547,3 +573,9 @@ dialog {
div.filter-my-only {
margin-bottom: 10px;
}

#changelogReport .getmdl-select .mdl-menu__container .mdl-menu.filter-select .mdl-menu__item {
display: inline-flex;
height: 20px;
line-height: 20px;
}
24 changes: 12 additions & 12 deletions assets/s3/styles.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit e58a553

Please sign in to comment.