Skip to content

Commit

Permalink
⬆️ Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Jul 31, 2022
1 parent 3334af5 commit e6aa134
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 18 deletions.
4 changes: 3 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
include: package:lints/recommended.yaml

analyzer:
plugins:
- dart_code_metrics
Expand All @@ -22,5 +24,5 @@ dart_code_metrics:

linter:
rules:
avoid_print: false
avoid_print: true
prefer_single_quotes: true
2 changes: 1 addition & 1 deletion bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void main(List<String> arguments) async {
if (queryString.isEmpty) {
_showPlaceholder();
} else {
workflow.cacheKey = '${queryString}_${version}';
workflow.cacheKey = '${queryString}_$version';
if (await workflow.getItems() == null) {
await _performSearch(queryString, version: version);
}
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.1.4';
static const String version = '2.1.5';
static final Uri githubRepositoryUrl =
Uri.https('github.com', '/techouse/alfred-tailwindcss-docs');
static const String algoliaApplicationId = 'KNPXZI5B0M';
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.1.4</string>
<string>2.1.5</string>
<key>webaddress</key>
<string>https://github.com/techouse</string>
</dict>
Expand Down
24 changes: 12 additions & 12 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ packages:
name: _fe_analyzer_shared
url: "https://pub.dartlang.org"
source: hosted
version: "39.0.0"
version: "43.0.0"
alfred_workflow:
dependency: "direct main"
description:
name: alfred_workflow
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.0"
version: "0.2.2"
algolia:
dependency: "direct main"
description:
Expand All @@ -28,7 +28,7 @@ packages:
name: analyzer
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
version: "4.3.1"
analyzer_plugin:
dependency: transitive
description:
Expand Down Expand Up @@ -63,7 +63,7 @@ packages:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.1.1"
collection:
dependency: "direct main"
description:
Expand Down Expand Up @@ -105,7 +105,7 @@ packages:
name: dart_code_metrics
url: "https://pub.dartlang.org"
source: hosted
version: "4.15.2"
version: "4.17.0"
dart_style:
dependency: transitive
description:
Expand Down Expand Up @@ -133,7 +133,7 @@ packages:
name: glob
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
version: "2.1.0"
html:
dependency: transitive
description:
Expand Down Expand Up @@ -168,7 +168,7 @@ packages:
name: json_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "4.5.0"
version: "4.6.0"
lints:
dependency: "direct dev"
description:
Expand All @@ -189,7 +189,7 @@ packages:
name: package_config
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
version: "2.1.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -217,21 +217,21 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.0"
version: "1.9.1"
stash:
dependency: transitive
description:
name: stash
url: "https://pub.dartlang.org"
source: hosted
version: "4.1.0"
version: "4.3.1"
stash_file:
dependency: transitive
description:
name: stash_file
url: "https://pub.dartlang.org"
source: hosted
version: "4.1.0"
version: "4.3.1"
stream_transform:
dependency: transitive
description:
Expand All @@ -252,7 +252,7 @@ packages:
name: term_glyph
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.2.1"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Search the Tailwind CSS documentation using Alfred
# Prevent accidental publishing to pub.dev.
publish_to: 'none'

version: 2.1.4
version: 2.1.5

environment:
sdk: '>=2.17.0 <3.0.0'
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.4
2.1.5

0 comments on commit e6aa134

Please sign in to comment.