Skip to content
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.

Commit

Permalink
⬆️ Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed May 12, 2022
1 parent 53237b2 commit bed08c3
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 32 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ build/

bin/query_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.2';
static const String version = '2.0.3';
static final Uri githubRepositoryUrl =
Uri.https('github.com', '/techouse/alfred-cakephp-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.2</string>
<string>2.0.3</string>
<key>webaddress</key>
<string>https://github.com/techouse/alfred-cakephp-docs</string>
</dict>
Expand Down
45 changes: 25 additions & 20 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,17 @@ packages:
alfred_workflow:
dependency: "direct main"
description:
path: "."
ref: master
resolved-ref: ecbe8de5c4b6cc997836a4b62111a105a4352979
url: "git@github.com:techouse/alfred_workflow.git"
source: git
version: "0.0.8"
name: alfred_workflow
url: "https://pub.dartlang.org"
source: hosted
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 @@ -51,14 +49,14 @@ packages:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "2.3.0"
version: "2.3.1"
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.2"
version: "2.9.0"
charcode:
dependency: transitive
description:
Expand Down Expand Up @@ -100,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 @@ -114,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 @@ -170,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 @@ -219,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 @@ -247,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 @@ -261,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 @@ -282,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"
13 changes: 5 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,17 @@ description: Search the Flask documentation using Alfred
# Prevent accidental publishing to pub.dev.
publish_to: 'none'

version: 2.0.2
version: 2.0.3

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:
git:
url: git@github.com:techouse/alfred_workflow.git
ref: master
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.2
2.0.3

0 comments on commit bed08c3

Please sign in to comment.