Skip to content

Commit

Permalink
v1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
thl committed Jun 16, 2020
1 parent 1644b6b commit b6f489e
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1

* TODO: add license.

## 1.0.0

* TODO: NineGridView & DragSortView.
30 changes: 29 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1 +1,29 @@
TODO: Add your license here.
BSD 3-Clause License

Copyright (c) 2020, Sky24n
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4 changes: 2 additions & 2 deletions README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Language: [English](https://github.com/flutterchina/nine_grid_view) | 中文简
### Pub
```yaml
dependencies:
nine_grid_view: ^1.0.0
nine_grid_view: ^1.0.1
```
### Example
Expand Down Expand Up @@ -49,7 +49,7 @@ DragSortView(
### Screenshots

截图无法查看?
掘金地址:[Flutter 仿微信/微博九宫格](https://juejin.im/post/5edb5fa46fb9a047bf707993)
掘金地址:[Flutter 仿微信/微博九宫格](https://juejin.im/post/5ee825ab5188251f3f07af75)
简书地址:[Flutter 仿微信/微博九宫格](https://www.jianshu.com/p/73548cc82326)

|<img src="screenshots/nine_grid_view1.jpg" width="260" height="513"/>|<img src="screenshots/nine_grid_view2.jpg" width="260" height="513"/>|<img src="screenshots/nine_grid_view3.jpg" width="260" height="513"/>|
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Similar to Weibo/WeChat release dynamic picture selection nine grid view. Suppor
### Pub
```yaml
dependencies:
nine_grid_view: ^1.0.0
nine_grid_view: ^1.0.1
```
### Example
Expand Down
20 changes: 20 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# https://www.dartlang.org/guides/language/analysis-options
# Source of linter options:
# http://dart-lang.github.io/linter/lints/options/options.html
analyzer:
# implicit-casts: false
# implicit-dynamic: false
errors:
todo: ignore
exclude:
- flutter/**
- lib/*.dart

linter:
rules:
- camel_case_types
- hash_and_equals
- iterable_contains_unrelated_type
- list_remove_unrelated_type
- unrelated_type_equality_checks
- valid_regexps
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.0.1"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion lib/nine_grid_view.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library nine_grid_view;

export 'src/nine_grid_view.dart';
export 'src/darg_sort_view.dart';
export 'src/drag_sort_view.dart';
File renamed without changes.
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nine_grid_view
description: Flutter NineGridView & DragSortView, NineGridView similar to Weibo dynamics, WeChat circle of friends, nine grid view controls to display pictures. DragSortView similar to Weibo/WeChat release dynamic picture selection nine grid view. Support press to enlarge effect, drag and drop sorting, drag and drop to a specified location to delete.
version: 1.0.0
description: Flutter NineGridView & DragSortView, Similar to Weibo / WeChat nine grid view controls to display pictures.
version: 1.0.1
author: Sky24n <[email protected]>
homepage: https://github.com/flutterchina/nine_grid_view

Expand Down

0 comments on commit b6f489e

Please sign in to comment.