Skip to content

Commit d6b0912

Browse files
committed
⬆️ Updates
1 parent 1db7c9a commit d6b0912

File tree

7 files changed

+32
-24
lines changed

7 files changed

+32
-24
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ build/
1212
.DS_Store
1313

1414
bin/query_cache/
15-
bin/update_cache/
15+
bin/update_cache/
16+
sign.sh

bin/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void main(List<String> arguments) async {
5050
verbose = args['verbose'];
5151

5252
final String queryString =
53-
args['query'].replaceAll(RegExp(r'\s+'), ' ').trim();
53+
args['query'].replaceAll(RegExp(r'\s+'), ' ').trim().toLowerCase();
5454

5555
if (verbose) stdout.writeln('Query: "$queryString"');
5656

bin/src/constants/config.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Config {
22
Config._();
33

4-
static const String version = '2.0.7';
4+
static const String version = '2.0.8';
55
static final Uri githubRepositoryUrl =
66
Uri.https('github.com', '/techouse/alfred-react-docs');
77
static const String algoliaApplicationId = 'BH4D9OD16A';

info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
<key>variablesdontexport</key>
216216
<array/>
217217
<key>version</key>
218-
<string>2.0.7</string>
218+
<string>2.0.8</string>
219219
<key>webaddress</key>
220220
<string>https://github.com/techouse</string>
221221
</dict>

pubspec.lock

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ packages:
1414
name: alfred_workflow
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "0.1.2"
17+
version: "0.1.3"
1818
algolia:
1919
dependency: "direct main"
2020
description:
2121
name: algolia
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "1.0.4"
24+
version: "1.1.1"
2525
analyzer:
2626
dependency: transitive
2727
description:
@@ -49,7 +49,7 @@ packages:
4949
name: args
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "2.3.0"
52+
version: "2.3.1"
5353
async:
5454
dependency: transitive
5555
description:
@@ -98,7 +98,7 @@ packages:
9898
name: crypto
9999
url: "https://pub.dartlang.org"
100100
source: hosted
101-
version: "3.0.1"
101+
version: "3.0.2"
102102
csslib:
103103
dependency: transitive
104104
description:
@@ -112,14 +112,14 @@ packages:
112112
name: dart_code_metrics
113113
url: "https://pub.dartlang.org"
114114
source: hosted
115-
version: "4.13.0"
115+
version: "4.15.0"
116116
dart_style:
117117
dependency: transitive
118118
description:
119119
name: dart_style
120120
url: "https://pub.dartlang.org"
121121
source: hosted
122-
version: "2.2.2"
122+
version: "2.2.3"
123123
equatable:
124124
dependency: transitive
125125
description:
@@ -175,14 +175,14 @@ packages:
175175
name: json_annotation
176176
url: "https://pub.dartlang.org"
177177
source: hosted
178-
version: "4.4.0"
178+
version: "4.5.0"
179179
lints:
180180
dependency: "direct dev"
181181
description:
182182
name: lints
183183
url: "https://pub.dartlang.org"
184184
source: hosted
185-
version: "1.0.1"
185+
version: "2.0.0"
186186
meta:
187187
dependency: transitive
188188
description:
@@ -224,7 +224,7 @@ packages:
224224
name: source_span
225225
url: "https://pub.dartlang.org"
226226
source: hosted
227-
version: "1.8.2"
227+
version: "1.9.0"
228228
stash:
229229
dependency: transitive
230230
description:
@@ -252,7 +252,7 @@ packages:
252252
name: string_scanner
253253
url: "https://pub.dartlang.org"
254254
source: hosted
255-
version: "1.1.0"
255+
version: "1.1.1"
256256
term_glyph:
257257
dependency: transitive
258258
description:
@@ -266,7 +266,14 @@ packages:
266266
name: typed_data
267267
url: "https://pub.dartlang.org"
268268
source: hosted
269-
version: "1.3.0"
269+
version: "1.3.1"
270+
universal_io:
271+
dependency: transitive
272+
description:
273+
name: universal_io
274+
url: "https://pub.dartlang.org"
275+
source: hosted
276+
version: "2.0.4"
270277
uuid:
271278
dependency: transitive
272279
description:
@@ -287,13 +294,13 @@ packages:
287294
name: xml
288295
url: "https://pub.dartlang.org"
289296
source: hosted
290-
version: "5.4.1"
297+
version: "6.0.1"
291298
yaml:
292299
dependency: transitive
293300
description:
294301
name: yaml
295302
url: "https://pub.dartlang.org"
296303
source: hosted
297-
version: "3.1.0"
304+
version: "3.1.1"
298305
sdks:
299-
dart: ">=2.16.1 <3.0.0"
306+
dart: ">=2.17.0 <3.0.0"

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ description: Search the React documentation using Alfred
44
# Prevent accidental publishing to pub.dev.
55
publish_to: 'none'
66

7-
version: 2.0.7
7+
version: 2.0.8
88

99
environment:
10-
sdk: '>=2.16.1 <3.0.0'
10+
sdk: '>=2.17.0 <3.0.0'
1111

1212
dependencies:
13-
algolia: ^1.0.4
13+
algolia: ^1.1.1
1414
args: ^2.3.0
1515
html_unescape: ^2.0.0
16-
alfred_workflow: ^0.1.2
16+
alfred_workflow: ^0.1.3
1717

1818
dev_dependencies:
19-
lints: ^1.0.0
19+
lints: ^2.0.0
2020
dart_code_metrics: ^4.8.1

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.7
1+
2.0.8

0 commit comments

Comments
 (0)