Skip to content

Commit

Permalink
## [2.0.0]
Browse files Browse the repository at this point in the history
* Breaking change: add clipBehavior and restorationId
* Merge flutter/issues/29264(SliverAppBar's flexibleSpace glitch on iOS when NestedScrollView's body is a ScrollView)
  • Loading branch information
zmtzawqlp committed Sep 30, 2020
1 parent 24f564a commit c40f7d8
Show file tree
Hide file tree
Showing 83 changed files with 1,924 additions and 62,424 deletions.
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: true
19 changes: 19 additions & 0 deletions .github/workflows/checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: No Free usage issue checker

on:
issues:
types: [opened, reopened]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Check issue actor
uses: ./
with:
repo: $GITHUB_REPOSITORY
user: $GITHUB_ACTOR
token: ${{ secrets.GITHUB_TOKEN }}
19 changes: 19 additions & 0 deletions .github/workflows/pub_dry_run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pub Publish dry run

on: [push]

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Publish
uses: sakebook/[email protected]
with:
credential: ${{ secrets.CREDENTIAL_JSON }}
flutter_package: true
skip_test: true
dry_run: true
21 changes: 21 additions & 0 deletions .github/workflows/pub_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Pub Publish plugin

on:
release:
types: [published]

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Publish
uses: sakebook/[email protected]
with:
credential: ${{ secrets.CREDENTIAL_JSON }}
flutter_package: true
skip_test: true
dry_run: false
19 changes: 19 additions & 0 deletions .github/workflows/pub_publish_manually.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pub Publish plugin

on: workflow_dispatch

jobs:
publish:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Publish
uses: sakebook/[email protected]
with:
credential: ${{ secrets.CREDENTIAL_JSON }}
flutter_package: true
skip_test: true
dry_run: false
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"dart.flutterSdkPath": "D:\\Flutter\\flutter_source\\stable"
"dart.flutterSdkPath": "/Users/roott/Documents/Tools/flutter/master"
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.0.0]

* Breaking change: add clipBehavior and restorationId
* Merge flutter/issues/29264(SliverAppBar's flexibleSpace glitch on iOS when NestedScrollView's body is a ScrollView)

## [1.0.1]

* Merge flutter/flutter#59187(Support floating the header slivers of a NestedScrollView)
Expand Down
1 change: 0 additions & 1 deletion docs/assets/AssetManifest.json

This file was deleted.

1 change: 0 additions & 1 deletion docs/assets/FontManifest.json

This file was deleted.

Loading

0 comments on commit c40f7d8

Please sign in to comment.