From 4b47958db2e526356d04e031ac17ea3591507b68 Mon Sep 17 00:00:00 2001 From: Neevash Ramdial Date: Thu, 2 Jul 2020 17:52:01 -0400 Subject: [PATCH 1/5] updates version number --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0066e3f..691a787 100644 --- a/package.json +++ b/package.json @@ -2,11 +2,11 @@ "name": "awesome-flutter-snippets", "displayName": "Awesome Flutter Snippets", "description": "Awesome Flutter Snippets is a collection snippets and shortcuts for commonly used Flutter functions and classes", - "version": "2.0.3", + "version": "2.0.4", "icon": "logo.png", "publisher": "Nash", "engines": { - "vscode": "^1.39.0" + "vscode": "^1.46.0" }, "keywords": [ "Flutter", @@ -37,4 +37,4 @@ } ] } -} \ No newline at end of file +} From 4a7a41dd28e0637b660afe244355437e6304c9d2 Mon Sep 17 00:00:00 2001 From: Neevash Ramdial Date: Thu, 2 Jul 2020 17:52:10 -0400 Subject: [PATCH 2/5] change email --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 691a787..1e48c22 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "bugs": { "url": "https://github.com/Neevash/awesome-flutter-snippets/issues", - "email": "ramdialnash@outlook.com" + "email": "mail@neevash.dev" }, "categories": [ "Snippets" From d7cd21461f85d69ed1baf3921556a7b531002ec6 Mon Sep 17 00:00:00 2001 From: Neevash Ramdial Date: Thu, 2 Jul 2020 17:52:37 -0400 Subject: [PATCH 3/5] ignore package lock --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3375760..3bb9df7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules *.vsix -vsc-extension-quickstart.md \ No newline at end of file +vsc-extension-quickstart.md +package-lock.json From a31fd7f34240c7a39685c770c0e48bc305b585a1 Mon Sep 17 00:00:00 2001 From: Neevash Ramdial Date: Thu, 2 Jul 2020 17:58:44 -0400 Subject: [PATCH 4/5] update widget test prefix --- README.md | 2 +- snippets/snippets.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8de7664..ab1cb42 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Awesome Flutter Snippets is a collection of commonly used Flutter classes and me | `tweenAnimationBuilder` | Tween Animation Builder | Widget builder that animates a property of a Widget to a target value whenever the target value changes. | `valueListenableBuilder` | Value Listenable Builder | Given a ValueListenable and a builder which builds widgets from concrete values of T, this class will automatically register itself as a listener of the ValueListenable and call the builder with updated values when the value changes. | `f-test` | Test | Create a test function. -| `f-testWidgets` | Test Widgets | Create a testWidgets function. +| `widgetTest` | Test Widgets | Create a testWidgets function.
diff --git a/snippets/snippets.json b/snippets/snippets.json index 11bddbd..a55ea68 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -445,7 +445,7 @@ "description": "Create a test function" }, "Test Widgets": { - "prefix": "f-testWidgets", + "prefix": "widgetTest", "body": [ "testWidgets(", " \"${1:test description}\",", From b43b138e0063bd1f8eb9f4059bbf23748c95d444 Mon Sep 17 00:00:00 2001 From: Neevash Ramdial Date: Thu, 2 Jul 2020 17:59:40 -0400 Subject: [PATCH 5/5] Update changelog --- CHANGELOG.md | 6 ++++++ README.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 839551a..c40c5e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. ## [Changes] +### 2.0.4 +- Add Flutter test import (Thank you @arthurdenner https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/16) +- Support for unit and widget test functions (Thank you @TNorbury https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/20) +- Added support for Listview.Separated (Thank you @timilehinjegede https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/26) +- Fixed inheritedW (Thank you @ianwith https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/22) + ### 2.0.3 - Support for `BehaviorSubject` (Thanks @sinadarvi https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/7) - Support for `TweenAnimationBuilder` diff --git a/README.md b/README.md index ab1cb42..f3aa93a 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,12 @@ At this time, there are no known issues. If you discover a bug or would like to ## Release Notes +### 2.0.4 +- Add Flutter test import (Thank you @arthurdenner https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/16) +- Support for unit and widget test functions (Thank you @TNorbury https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/20) +- Added support for Listview.Separated (Thank you @timilehinjegede https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/26) +- Fixed inheritedW (Thank you @ianwith https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/22) + ### 2.0.3 - Support for `BehaviorSubject` (Thanks @sinadarvi https://github.com/Nash0x7E2/awesome-flutter-snippets/pull/7) - Support for `TweenAnimationBuilder`