From 354a149e525a6a3a9eff58d5fdb92b15546fcc92 Mon Sep 17 00:00:00 2001 From: Nir Aides Date: Fri, 16 Dec 2022 23:07:47 +0200 Subject: [PATCH] change email and copyright year in all files. --- examples/lego_3d.py | 2 +- examples/piano.py | 2 +- examples/pong.py | 2 +- examples/spaceship.py | 2 +- examples/spaceship_3d.py | 2 +- examples/spectrum_analyzer.py | 2 +- jupylet/__init__.py | 2 +- jupylet/app.py | 2 +- jupylet/audio/__init__.py | 2 +- jupylet/audio/bundle.py | 2 +- jupylet/audio/device.py | 2 +- jupylet/audio/effects.py | 2 +- jupylet/audio/filters.py | 2 +- jupylet/audio/midi.py | 2 +- jupylet/audio/note.py | 2 +- jupylet/audio/sample.py | 2 +- jupylet/audio/sound.py | 2 +- jupylet/audio/synth.py | 2 +- jupylet/clock.py | 2 +- jupylet/collision.py | 2 +- jupylet/color.py | 2 +- jupylet/env.py | 2 +- jupylet/event.py | 2 +- jupylet/label.py | 2 +- jupylet/loader.py | 2 +- jupylet/lru.py | 2 +- jupylet/model.py | 2 +- jupylet/node.py | 2 +- jupylet/resource.py | 2 +- jupylet/rl.py | 2 +- jupylet/shadertoy.py | 2 +- jupylet/sprite.py | 2 +- jupylet/state.py | 2 +- jupylet/utils.py | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/examples/lego_3d.py b/examples/lego_3d.py index efaef3c..9c4cac1 100644 --- a/examples/lego_3d.py +++ b/examples/lego_3d.py @@ -1,7 +1,7 @@ """ examples/lego-3d.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/examples/piano.py b/examples/piano.py index a525cac..64c0826 100644 --- a/examples/piano.py +++ b/examples/piano.py @@ -1,7 +1,7 @@ """ examples/sounds_demo.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/examples/pong.py b/examples/pong.py index e5e65c9..55fa9b8 100644 --- a/examples/pong.py +++ b/examples/pong.py @@ -1,7 +1,7 @@ """ examples/pong.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/examples/spaceship.py b/examples/spaceship.py index 9a7fedc..bf97838 100644 --- a/examples/spaceship.py +++ b/examples/spaceship.py @@ -1,7 +1,7 @@ """ examples/spaceship.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/examples/spaceship_3d.py b/examples/spaceship_3d.py index 3babc7d..1089ad2 100644 --- a/examples/spaceship_3d.py +++ b/examples/spaceship_3d.py @@ -1,7 +1,7 @@ """ examples/spaceship_3d.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/examples/spectrum_analyzer.py b/examples/spectrum_analyzer.py index f333e04..59a1dad 100644 --- a/examples/spectrum_analyzer.py +++ b/examples/spectrum_analyzer.py @@ -1,7 +1,7 @@ """ examples/spectrum_analyzer.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/__init__.py b/jupylet/__init__.py index d935875..080f38b 100644 --- a/jupylet/__init__.py +++ b/jupylet/__init__.py @@ -1,7 +1,7 @@ """ jupylet/__init__.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/app.py b/jupylet/app.py index 956d0c1..bd3d53d 100644 --- a/jupylet/app.py +++ b/jupylet/app.py @@ -1,7 +1,7 @@ """ jupylet/app.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/__init__.py b/jupylet/audio/__init__.py index 2e7394e..00e97c8 100644 --- a/jupylet/audio/__init__.py +++ b/jupylet/audio/__init__.py @@ -1,7 +1,7 @@ """ jupylet/audio/__init__.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/bundle.py b/jupylet/audio/bundle.py index cfc84d2..0d7800a 100644 --- a/jupylet/audio/bundle.py +++ b/jupylet/audio/bundle.py @@ -1,7 +1,7 @@ """ jupylet/audio/all.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/device.py b/jupylet/audio/device.py index 929147a..7228f20 100644 --- a/jupylet/audio/device.py +++ b/jupylet/audio/device.py @@ -1,7 +1,7 @@ """ jupylet/audio/device.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/effects.py b/jupylet/audio/effects.py index 710db8f..727b6d5 100644 --- a/jupylet/audio/effects.py +++ b/jupylet/audio/effects.py @@ -1,7 +1,7 @@ """ jupylet/audio/effects.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/filters.py b/jupylet/audio/filters.py index 3dc920e..cde7a76 100644 --- a/jupylet/audio/filters.py +++ b/jupylet/audio/filters.py @@ -1,7 +1,7 @@ """ jupylet/audio/filters.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/midi.py b/jupylet/audio/midi.py index a7a8899..28994c4 100644 --- a/jupylet/audio/midi.py +++ b/jupylet/audio/midi.py @@ -1,7 +1,7 @@ """ jupylet/audio/midi.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/note.py b/jupylet/audio/note.py index 99afe79..1198883 100644 --- a/jupylet/audio/note.py +++ b/jupylet/audio/note.py @@ -1,7 +1,7 @@ """ jupylet/audio/note.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/sample.py b/jupylet/audio/sample.py index a4a6f42..5e57bc9 100644 --- a/jupylet/audio/sample.py +++ b/jupylet/audio/sample.py @@ -1,7 +1,7 @@ """ jupylet/audio/sample.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/sound.py b/jupylet/audio/sound.py index 18fdba9..721f6ec 100644 --- a/jupylet/audio/sound.py +++ b/jupylet/audio/sound.py @@ -1,7 +1,7 @@ """ jupylet/audio/sound.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/audio/synth.py b/jupylet/audio/synth.py index 13bcfd7..8474c76 100644 --- a/jupylet/audio/synth.py +++ b/jupylet/audio/synth.py @@ -1,7 +1,7 @@ """ jupylet/audio/synth.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/clock.py b/jupylet/clock.py index 79595d9..bfb1c86 100644 --- a/jupylet/clock.py +++ b/jupylet/clock.py @@ -1,7 +1,7 @@ """ jupylet/clock.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/collision.py b/jupylet/collision.py index f202f41..e4d00de 100644 --- a/jupylet/collision.py +++ b/jupylet/collision.py @@ -1,7 +1,7 @@ """ jupylet/collision.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/color.py b/jupylet/color.py index 69eb157..a438d28 100644 --- a/jupylet/color.py +++ b/jupylet/color.py @@ -1,7 +1,7 @@ """ jupylet/color.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/env.py b/jupylet/env.py index 95cd2dc..2ab7185 100644 --- a/jupylet/env.py +++ b/jupylet/env.py @@ -1,7 +1,7 @@ """ jupylet/env.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/event.py b/jupylet/event.py index 285ac1e..0a42c46 100644 --- a/jupylet/event.py +++ b/jupylet/event.py @@ -1,7 +1,7 @@ """ jupylet/event.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/label.py b/jupylet/label.py index c08d620..6ac56cb 100644 --- a/jupylet/label.py +++ b/jupylet/label.py @@ -1,7 +1,7 @@ """ jupylet/label.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/loader.py b/jupylet/loader.py index 38d6701..9165510 100644 --- a/jupylet/loader.py +++ b/jupylet/loader.py @@ -1,7 +1,7 @@ """ jupylet/loader.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/lru.py b/jupylet/lru.py index 1a7414c..3661dbd 100644 --- a/jupylet/lru.py +++ b/jupylet/lru.py @@ -1,7 +1,7 @@ """ jupylet/lru.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/model.py b/jupylet/model.py index c509a62..e2c91d1 100644 --- a/jupylet/model.py +++ b/jupylet/model.py @@ -1,7 +1,7 @@ """ jupylet/model.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/node.py b/jupylet/node.py index b17c805..5324171 100644 --- a/jupylet/node.py +++ b/jupylet/node.py @@ -1,7 +1,7 @@ """ jupylet/node.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/resource.py b/jupylet/resource.py index a68702f..0c144f0 100644 --- a/jupylet/resource.py +++ b/jupylet/resource.py @@ -1,7 +1,7 @@ """ jupylet/resource.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/rl.py b/jupylet/rl.py index 1388916..f2d43f8 100644 --- a/jupylet/rl.py +++ b/jupylet/rl.py @@ -1,7 +1,7 @@ """ jupylet/rl.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/shadertoy.py b/jupylet/shadertoy.py index 2b7bb0a..c95e79e 100644 --- a/jupylet/shadertoy.py +++ b/jupylet/shadertoy.py @@ -1,7 +1,7 @@ """ jupylet/shadertoy.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/sprite.py b/jupylet/sprite.py index 33c2f35..58e357a 100644 --- a/jupylet/sprite.py +++ b/jupylet/sprite.py @@ -1,7 +1,7 @@ """ jupylet/sprite.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/state.py b/jupylet/state.py index e9022d5..1621afe 100644 --- a/jupylet/state.py +++ b/jupylet/state.py @@ -1,7 +1,7 @@ """ jupylet/state.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/jupylet/utils.py b/jupylet/utils.py index 786c53f..fbe93bc 100644 --- a/jupylet/utils.py +++ b/jupylet/utils.py @@ -1,7 +1,7 @@ """ jupylet/utils.py - Copyright (c) 2020, Nir Aides - nir@winpdb.org + Copyright (c) 2022, Nir Aides - nir.8bit@gmail.com Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: