diff --git a/CHANGELOG.md b/CHANGELOG.md index 426c759..12bc01f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ - Enforce TSLint rules (see #39). +- Adopts year-agnostic copyright message (see #40). + - Update dev dependencies to latest version. ### [v0.0.5](https://github.com/RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap/releases/tag/0.0.5) - 2017-09-26 diff --git a/LICENSE b/LICENSE index 100eddb..f278aac 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 RobotlegsJS +Copyright (c) 2017-present, RobotlegsJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 4b0d858..87cb38b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ RobotlegsJS Phaser SignalCommandMap Extension === +[![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap/blob/master/LICENSE) [![Gitter chat](https://badges.gitter.im/RobotlegsJS/RobotlegsJS.svg)](https://gitter.im/RobotlegsJS/RobotlegsJS) [![Build Status](https://secure.travis-ci.org/RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap.svg?branch=master)](https://travis-ci.org/RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap) [![codebeat badge](https://codebeat.co/badges/c8db23f8-561c-4839-9f74-1d704e27fadb)](https://codebeat.co/projects/github-com-robotlegsjs-robotlegsjs-phaser-signalcommandmap-master) diff --git a/src/index.ts b/src/index.ts index 056a89a..39cc21e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/src/robotlegs/bender/extensions/signalCommandMap/SignalCommandMapExtension.ts b/src/robotlegs/bender/extensions/signalCommandMap/SignalCommandMapExtension.ts index 68f5d67..6f034fd 100644 --- a/src/robotlegs/bender/extensions/signalCommandMap/SignalCommandMapExtension.ts +++ b/src/robotlegs/bender/extensions/signalCommandMap/SignalCommandMapExtension.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/src/robotlegs/bender/extensions/signalCommandMap/api/ISignalCommandMap.ts b/src/robotlegs/bender/extensions/signalCommandMap/api/ISignalCommandMap.ts index 36a3fec..e53bb43 100644 --- a/src/robotlegs/bender/extensions/signalCommandMap/api/ISignalCommandMap.ts +++ b/src/robotlegs/bender/extensions/signalCommandMap/api/ISignalCommandMap.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandMap.ts b/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandMap.ts index d1faa23..1b9b99a 100644 --- a/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandMap.ts +++ b/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandMap.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandTrigger.ts b/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandTrigger.ts index 982942e..f3ac78c 100644 --- a/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandTrigger.ts +++ b/src/robotlegs/bender/extensions/signalCommandMap/impl/SignalCommandTrigger.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/test/entry.ts b/test/entry.ts index 89b2f60..f95c9c6 100644 --- a/test/entry.ts +++ b/test/entry.ts @@ -1,3 +1,10 @@ +// ------------------------------------------------------------------------------ +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. +// +// NOTICE: You are permitted to use, modify, and distribute this file +// in accordance with the terms of the license agreement accompanying it. +// ------------------------------------------------------------------------------ + import "reflect-metadata"; import "bluebird/js/browser/bluebird"; import "es6-symbol/implement"; diff --git a/test/robotlegs/bender/extensions/signalCommandMap/signalCommandMapExtension.test.ts b/test/robotlegs/bender/extensions/signalCommandMap/signalCommandMapExtension.test.ts index 260e6a0..f4c60a3 100644 --- a/test/robotlegs/bender/extensions/signalCommandMap/signalCommandMapExtension.test.ts +++ b/test/robotlegs/bender/extensions/signalCommandMap/signalCommandMapExtension.test.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/test/robotlegs/bender/extensions/signalCommandMap/support/Data.ts b/test/robotlegs/bender/extensions/signalCommandMap/support/Data.ts index ccdd6de..96773bc 100644 --- a/test/robotlegs/bender/extensions/signalCommandMap/support/Data.ts +++ b/test/robotlegs/bender/extensions/signalCommandMap/support/Data.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/test/robotlegs/bender/extensions/signalCommandMap/support/RelayCommand.ts b/test/robotlegs/bender/extensions/signalCommandMap/support/RelayCommand.ts index d3a2ec5..f481d8d 100644 --- a/test/robotlegs/bender/extensions/signalCommandMap/support/RelayCommand.ts +++ b/test/robotlegs/bender/extensions/signalCommandMap/support/RelayCommand.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/test/robotlegs/bender/extensions/signalCommandMap/support/RelaySignal.ts b/test/robotlegs/bender/extensions/signalCommandMap/support/RelaySignal.ts index 6360a7d..fe71e68 100644 --- a/test/robotlegs/bender/extensions/signalCommandMap/support/RelaySignal.ts +++ b/test/robotlegs/bender/extensions/signalCommandMap/support/RelaySignal.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/test/robotlegs/bender/extensions/signalCommandMap/support/TargetCommand.ts b/test/robotlegs/bender/extensions/signalCommandMap/support/TargetCommand.ts index 5c1a480..b7ba01e 100644 --- a/test/robotlegs/bender/extensions/signalCommandMap/support/TargetCommand.ts +++ b/test/robotlegs/bender/extensions/signalCommandMap/support/TargetCommand.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. diff --git a/test/robotlegs/bender/extensions/signalCommandMap/support/TargetSignal.ts b/test/robotlegs/bender/extensions/signalCommandMap/support/TargetSignal.ts index d881f6b..5fb14d5 100644 --- a/test/robotlegs/bender/extensions/signalCommandMap/support/TargetSignal.ts +++ b/test/robotlegs/bender/extensions/signalCommandMap/support/TargetSignal.ts @@ -1,5 +1,5 @@ // ------------------------------------------------------------------------------ -// Copyright (c) 2017 RobotlegsJS. All Rights Reserved. +// Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it.