Skip to content

Commit 97ffbd6

Browse files
Update name and emails
1 parent f6622d5 commit 97ffbd6

File tree

294 files changed

+306
-306
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

294 files changed

+306
-306
lines changed

.github/ISSUE_TEMPLATE/plugin-support-request.md

+1-1

.github/dependabot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ updates:
1010
schedule:
1111
interval: "daily"
1212
reviewers:
13-
- "MiguelGuthridge"
13+
- "MaddyGuthridge"
1414
- package-ecosystem: "pip" # See documentation for possible values
1515
directory: "/" # Location of package manifests
1616
schedule:
1717
interval: "weekly"
1818
reviewers:
19-
- "MiguelGuthridge"
19+
- "MaddyGuthridge"

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "fl_typing"]
22
path = src/fl_typing
3-
url = [email protected]:MiguelGuthridge/fl_typing.git
3+
url = [email protected]:MaddyGuthridge/fl_typing.git
44
[submodule "src/fl_param_checker"]
55
path = src/fl_param_checker
6-
url = [email protected]:MiguelGuthridge/fl_param_checker.git
6+
url = [email protected]:MaddyGuthridge/fl_param_checker.git

CODE_OF_CONDUCT.md

+1-1

README.md

+1-1

SECURITY.md

+4-4

docs/contributing/setup.md

+1-1

docs/devices/akai/mpk.mini.mk3.md

+2-2

docs/devices/korg/nano_kontrol.mk1.md

+1-1

docs/devices/maudio/hammer88pro.md

+1-1

docs/devices/novation/launchkey.mk2.md

+1-1

docs/devices/novation/launchkey.mk3.md

+1-1

docs/devices/novation/launchkey.mk3_mini.md

+1-1

docs/plugins/flex.md

+1-1

docs/plugins/fpc.md

+1-1

docs/plugins/mixer.md

+1-1

docs/plugins/peq2.md

+1-1

docs/plugins/playlist.md

+1-1

docs/plugins/spitfire.md

+1-1

docs/plugins/vital.md

+1-1

docs/roadmap.md

+1-1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "universal-controller-script"
33
version = "1.2.1"
44
description = "A free and open source program that integrates with FL Studio to provide deep integration between hardware controllers and software."
5-
authors = ["Miguel Guthridge <hdsq@outlook.com.au>"]
5+
authors = ["Maddy Guthridge <hello@maddyguthridge.com>"]
66
license = "GPL v3"
77
readme = "README.md"
88

src/common/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
script.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/activity_state.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
or window should be active.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/context_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
script, allowing for soft resets of the script when required.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/default_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
override any existing settings here.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains definitions for custom exceptions used by the script.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/extension_manager/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
plugins.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/extension_manager/devices.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains the definition for the DeviceCollection class
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/extension_manager/extension_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
device and plugin definitions.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/extension_manager/special_plugs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains the definition for the SpecialPluginCollection class
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/extension_manager/standard_plugs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains the definition for the StandardPluginCollection class
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/extension_manager/window_plugs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains the definition for the WindowPluginCollection class
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/logger/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
should be logged and when.
77
88
Authors:
9-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
9+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
1010
1111
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1212
more details.

src/common/logger/log_hierarchy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
logging into particular categories
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/logger/log_item.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Contains LogItem, a class used to represent an entry in the script's log
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/logger/logger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
and allows for log information to be searched and recalled
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/logger/verbosity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
When logging something, these constants should be used.
66
77
Authors:
8-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
8+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
99
1010
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1111
more details.

src/common/param.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Code for interacting with plugin parameters.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/plug_indexes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Type definitions for plugin and window indexes.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/plug_indexes/effect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Type definitions for effect plugin indexes.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* MaddyGuthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/plug_indexes/fl_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Definition for FlIndex abstract base class
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* Maddy Guthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/plug_indexes/generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Type definitions for generator plugin indexes.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* MaddyGuthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/plug_indexes/plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Type definitions for plugin indexes.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* MaddyGuthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

src/common/plug_indexes/window.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Type definitions for window indexes.
55
66
Authors:
7-
* Miguel Guthridge [hdsq@outlook.com.au, HDSQ#2154]
7+
* MaddyGuthridge [hello@maddyguthridge.com, HDSQ#2154]
88
99
This code is licensed under the GPL v3 license. Refer to the LICENSE file for
1010
more details.

0 commit comments

Comments
 (0)