Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit 75be40a

Browse files
committed
Init 1.6
1 parent 24f0060 commit 75be40a

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ A browser extension that enhance all Merge Requests lists on any instance of Git
2323
- Base Jira URL is configured in extension preferences
2424
- The ticket ID or an icon can be displayed as the link label (configured in extension preferences)
2525
- WIP toggle button (can be enabled/disabled in the extension preferences)
26+
- Show an indicator when there's unresolved discussions left on Merge Requests (can be enabled/disabled in the extension preferences)
2627
- Compatible with all GitLab editions (GitLab CE, GitLab EE, GitLab.com) (look at the prerequisites, though)
2728

2829
## Prerequisites

css/options.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ body.is-chrome {
8585
* Layout styles */
8686

8787
.row {
88-
display: table;
89-
width: 100%;
88+
display: flex;
89+
flex-direction: row;
9090
}
9191

92-
.row > * {
93-
display: table-cell;
92+
.row > .fluid {
93+
flex-grow: 1;
9494
}
9595

9696
/************************************************************************

html/options.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="w40p txt-center browser-style">
1111
<input type="checkbox" id="display_source_and_target_branches">
1212
</div>
13-
<div>
13+
<div class="fluid">
1414
<label for="display_source_and_target_branches">Display source and target branches</label>
1515
</div>
1616
</div>
@@ -21,7 +21,7 @@
2121
<div class="w40p txt-center browser-style">
2222
<input type="checkbox" id="enable_button_to_copy_mr_info">
2323
</div>
24-
<div>
24+
<div class="fluid">
2525
<label for="enable_button_to_copy_mr_info">Enable button allowing to copy Merge Request information</label>
2626
</div>
2727
</div>
@@ -37,7 +37,7 @@
3737
<div class="w40p txt-center browser-style">
3838
<input type="checkbox" id="enable_jira_ticket_link">
3939
</div>
40-
<div>
40+
<div class="fluid">
4141
<label for="enable_jira_ticket_link">Enable Jira ticket link</label>
4242
</div>
4343
</div>
@@ -55,7 +55,7 @@
5555
<div class="w40p txt-center browser-style">
5656
<input type="checkbox" id="enable_button_to_toggle_wip_status">
5757
</div>
58-
<div>
58+
<div class="fluid">
5959
<label for="enable_button_to_toggle_wip_status">Enable button allowing to toggle WIP status</label>
6060
</div>
6161
</div>

scripts/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MANIFEST_FILE = {
22
'manifest_version': 2,
33
'name': 'GitLab Merge Requests lists enhancer',
4-
'version': '1.5.1',
4+
'version': '1.6.0',
55
'description': 'An extension that enhance all Merge Requests lists on any instance of Gitlab and GitLab.com.',
66
'homepage_url': 'https://github.com/EpocDotFr/gitlab-merge-requests-lists-enhancer',
77
'author': 'Maxime \'Epoc\' G.',

0 commit comments

Comments
 (0)