Skip to content

Release #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Nov 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false

[manifest.json]
indent_size = 2
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
/[Ll]ogs/
/[Mm]emoryCaptures/

# Visual Studio 2015 cache directory
/.vs/
Expand Down Expand Up @@ -31,3 +32,8 @@ sysinfo.txt

# Builds
*.apk

# Node.js
node_modules
dist
dist.zip
32 changes: 32 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"verifyConditionsCmd": "npm run build",
"prepareCmd": "npm run build"
}
],
"@semantic-release/git",
[
"@semantic-release/npm",
{
"pkgRoot": "dist"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist.zip",
"label": "Package Build"
}
]
}
]
]
}
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
node_js:
- "node"
install:
- npm install
script:
# - commitlint-travis
- npm run build
- npm run semantic-release
deploy:
- provider: script
skip_cleanup: true
script: bash publish-nightly.sh
on:
branch: develop
10 changes: 0 additions & 10 deletions Assets/AdncAnimatorHelpers/Scripts.meta

This file was deleted.

10 changes: 0 additions & 10 deletions Assets/AdncAnimatorHelpers/Testing.meta

This file was deleted.

10 changes: 0 additions & 10 deletions Assets/AdncAnimatorHelpers/Testing/AnimatorPlayback.meta

This file was deleted.

10 changes: 0 additions & 10 deletions Assets/Dist.meta

This file was deleted.

Binary file removed Assets/Dist/AdncAnimatorHelpers.unitypackage
Binary file not shown.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class AnimatorPlaybackExample : MonoBehaviour {
private Animator anim;

[SerializeField]
private AnimatorPlayback _completeEvent;
private AnimatorPlayback _completeEvent = null;

[SerializeField]
private string _completeMessage = "Detected animation playback as complete";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions Assets/Plugins.meta

This file was deleted.

9 changes: 0 additions & 9 deletions Assets/Plugins/AdncUtility.meta

This file was deleted.

9 changes: 0 additions & 9 deletions Assets/Plugins/AdncUtility/Editor.meta

This file was deleted.

9 changes: 0 additions & 9 deletions Assets/Plugins/AdncUtility/Editor/Drawers.meta

This file was deleted.

10 changes: 0 additions & 10 deletions Assets/Plugins/AdncUtility/Editor/Drawers/EnumFlags.meta

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions Assets/Plugins/AdncUtility/Editor/Drawers/Files.meta

This file was deleted.

11 changes: 0 additions & 11 deletions Assets/Plugins/AdncUtility/Editor/Drawers/Files/FilePathDrawer.cs

This file was deleted.

This file was deleted.

Loading