Skip to content

Commit 6d0de54

Browse files
author
aliasadidev
committed
add star pattern
1 parent 4b3cf43 commit 6d0de54

File tree

20 files changed

+383
-295
lines changed

20 files changed

+383
-295
lines changed

.github/workflows/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: aliasadidev

.github/workflows/vscode-extension.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install Node.js
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 16.x
16+
node-version: 20.x
1717
- run: |
1818
npm install
1919
npm install -g vsce
@@ -27,13 +27,13 @@ jobs:
2727
- uses: actions/checkout@v2
2828
- uses: actions/setup-node@v1
2929
with:
30-
node-version: 16.x
30+
node-version: 20.x
3131

3232
- name: Build the front-end
3333
run: |
3434
cd front-end
3535
npm install
36-
npm i @angular/cli@12.1.4 -g
36+
npm i @angular/cli@16.2.12 -g
3737
ng build
3838
3939
- name: Build the extension

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"ms-vscode.extension-test-runner",
88
"esbenp.prettier-vscode"
99
]
10-
}
10+
}

.vscode/settings.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
"typescript.tsc.autoDetect": "off",
1313
"editor.formatOnSave": true,
1414
"editor.detectIndentation": false,
15-
"cSpell.words": [
16-
"nugetpackagemanagergui"
17-
],
15+
"cSpell.words": ["nugetpackagemanagergui"],
1816
"mochaExplorer.require": "ts-node/register",
1917
"mochaExplorer.files": "src/test/**/**.test.ts",
2018
"mochaExplorer.ui": "tdd",
@@ -27,7 +25,7 @@
2725
},
2826
"[html][typescript]": {
2927
"editor.codeActionsOnSave": {
30-
"source.fixAll.eslint": "explicit"
28+
"source.fixAll.eslint": "explicit"
3129
}
3230
}
33-
}
31+
}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
# Version 2.1.0 - March 19, 2024
4+
5+
#### Added
6+
7+
- Support **star** in PackageReference's version `<PackageReference Include="SixLaborsCaptcha.Core" Version="1.*" />`
8+
9+
#### Fixed
10+
11+
- Persist view in memory for continuous accessibility
12+
313
# Version 2.0.6 - Jan 14, 2023
414

515
#### Fixed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,16 @@
8989

9090
# What's New
9191

92+
# Version 2.1.0 - March 19, 2024
93+
94+
#### Added
95+
96+
- Support **star** in PackageReference's version `<PackageReference Include="SixLaborsCaptcha.Core" Version="1.*" />`
97+
98+
#### Fixed
99+
100+
- Persist view in memory for continuous accessibility
101+
92102
# Version 2.0.6 - Jan 14, 2023
93103

94104
#### Fixed

front-end/src/app/app.component.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
height: 100% !important;
2828
}
2929

30-
::ng-deep .packageUrl[href=""],
31-
::ng-deep .packageUrl[href="#"] {
30+
::ng-deep .packageUrl[href=''],
31+
::ng-deep .packageUrl[href='#'] {
3232
pointer-events: none;
3333
cursor: not-allowed;
3434
}

front-end/src/app/services/loading-screen/loading-screen.service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export class LoadingScreenService {
2222
}
2323

2424
stopLoading() {
25-
if (this.counter > 0) {this.counter--;}
25+
if (this.counter > 0) {
26+
this.counter--;
27+
}
2628
}
2729
}

front-end/src/app/shared/drop-down/drop-down.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ export class DropDownComponent implements ControlValueAccessor {
7676
this.isStyledSelect = false;
7777
this.label = this.dataSource.find(e => e.key == key)?.value;
7878
this.isShowList = false;
79-
if (this.parent.control.controls[this.formControlName])
80-
{this.parent.control.controls[this.formControlName].setValue(key);}
79+
if (this.parent.control.controls[this.formControlName]) {
80+
this.parent.control.controls[this.formControlName].setValue(key);
81+
}
8182
}
8283

8384
@HostListener('document:click', ['$event'])

0 commit comments

Comments
 (0)