Skip to content

Commit

Permalink
⬆️ Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed May 12, 2022
1 parent 3949c7c commit 8004501
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 24 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ build/
.DS_Store

bin/query_cache/
bin/update_cache/
bin/update_cache/
sign.sh
2 changes: 1 addition & 1 deletion bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void main(List<String> arguments) async {
} else {
version = Config.supportedVersions.last;
}
final String queryString = query.join(' ').trim();
final String queryString = query.join(' ').trim().toLowerCase();

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

Expand Down
2 changes: 1 addition & 1 deletion bin/src/constants/config.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Config {
Config._();

static const String version = '2.0.8';
static const String version = '2.0.9';
static final Uri githubRepositoryUrl =
Uri.https('github.com', '/techouse/alfred-django-docs');
static const String algoliaApplicationId = 'WODHKE4WZG';
Expand Down
2 changes: 1 addition & 1 deletion info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>2.0.8</string>
<string>2.0.9</string>
<key>webaddress</key>
<string>https://github.com/techouse</string>
</dict>
Expand Down
35 changes: 21 additions & 14 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ packages:
name: alfred_workflow
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.2"
version: "0.1.3"
algolia:
dependency: "direct main"
description:
name: algolia
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.4"
version: "1.1.1"
analyzer:
dependency: transitive
description:
Expand Down Expand Up @@ -49,7 +49,7 @@ packages:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "2.3.0"
version: "2.3.1"
async:
dependency: transitive
description:
Expand Down Expand Up @@ -98,7 +98,7 @@ packages:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.1"
version: "3.0.2"
csslib:
dependency: transitive
description:
Expand All @@ -112,14 +112,14 @@ packages:
name: dart_code_metrics
url: "https://pub.dartlang.org"
source: hosted
version: "4.13.0"
version: "4.15.0"
dart_style:
dependency: transitive
description:
name: dart_style
url: "https://pub.dartlang.org"
source: hosted
version: "2.2.2"
version: "2.2.3"
equatable:
dependency: transitive
description:
Expand Down Expand Up @@ -168,14 +168,14 @@ packages:
name: json_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "4.4.0"
version: "4.5.0"
lints:
dependency: "direct dev"
description:
name: lints
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
version: "2.0.0"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -217,7 +217,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.2"
version: "1.9.0"
stash:
dependency: transitive
description:
Expand Down Expand Up @@ -245,7 +245,7 @@ packages:
name: string_scanner
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
term_glyph:
dependency: transitive
description:
Expand All @@ -259,7 +259,14 @@ packages:
name: typed_data
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.3.1"
universal_io:
dependency: transitive
description:
name: universal_io
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.4"
uuid:
dependency: transitive
description:
Expand All @@ -280,13 +287,13 @@ packages:
name: xml
url: "https://pub.dartlang.org"
source: hosted
version: "5.4.1"
version: "6.0.1"
yaml:
dependency: transitive
description:
name: yaml
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.0"
version: "3.1.1"
sdks:
dart: ">=2.16.1 <3.0.0"
dart: ">=2.17.0 <3.0.0"
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ description: Search the Django documentation using Alfred
# Prevent accidental publishing to pub.dev.
publish_to: 'none'

version: 2.0.8
version: 2.0.9

environment:
sdk: '>=2.16.1 <3.0.0'
sdk: '>=2.17.0 <3.0.0'

dependencies:
algolia: ^1.0.4
algolia: ^1.1.1
args: ^2.3.0
alfred_workflow: ^0.1.2
alfred_workflow: ^0.1.3
collection: ^1.16.0

dev_dependencies:
lints: ^1.0.0
lints: ^2.0.0
dart_code_metrics: ^4.8.1
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.8
2.0.9

0 comments on commit 8004501

Please sign in to comment.