Skip to content

Commit d4277cc

Browse files
committed
Adds source info at top of js files
1 parent 17b3030 commit d4277cc

8 files changed

Lines changed: 64 additions & 0 deletions

File tree

src/azurelib_utils/animationUi.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
import uniq from 'lodash/uniq';
210
import { addMonkeypatch, hasArgs, Original } from './utils';
311
import { EASING_OPTIONS, EASING_DEFAULT, getEasingArgDefault, parseEasingArg } from './easing';

src/azurelib_utils/codec.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
import omit from 'lodash/omit';
210
import azurelibSettings, {AZURELIB_SETTINGS_DEFAULT, onSettingsChanged} from './settings';
311
import {addMonkeypatch, Original} from './utils';

src/azurelib_utils/easing.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
// The MIT license notice below applies to the function findIntervalBorderIndex
210
/* The MIT License (MIT)
311

src/azurelib_utils/index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
import semverCoerce from 'semver/functions/coerce';
210
import semverSatisfies from 'semver/functions/satisfies';
311
import { version, blockbenchConfig } from './package.json';

src/azurelib_utils/keyframe.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the Blockbench animation utilities and modified for custom easing functions.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
import { Original, addMonkeypatch, hasArgs } from './utils';
210
import { easingFunctions, EASING_DEFAULT, getEasingArgDefault } from './easing';
311

src/azurelib_utils/settings.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
import armorTemplate from './armorTemplate.json';
210

311
const makeOptions = arr => Object.fromEntries(arr.map(x => [x, x]));

src/azurelib_utils/utils.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
import { EASING_OPTIONS } from './easing';
210

311
export const hasArgs = (easing = "") =>

src/azurelib_utils/webpack.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This module is a fork of the GeckoLib Animation Utils plugin and modified for use in the Azurelib fork.
3+
* Original source:
4+
* https://github.com/JannisX11/blockbench-plugins/tree/034ed058efa5b2847fb852e3b215aad372080dcf/src/animation_utils
5+
* Copyright © 2024 Bernie-G. Licensed under the MIT License.
6+
* https://github.com/JannisX11/blockbench-plugins/blob/main/LICENSE
7+
*/
8+
19
const PathModule = require('path')
210

311
module.exports = {

0 commit comments

Comments
 (0)