Skip to content

Commit

Permalink
Update copyright/license year to 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpetri1 committed Apr 3, 2024
1 parent 32d3249 commit 7a33b08
Show file tree
Hide file tree
Showing 49 changed files with 65 additions and 57 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 Calvin Walton
# SPDX-FileCopyrightText: 2024 Calvin Walton
#
# SPDX-License-Identifier: CC0-1.0

Expand Down
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Upstream-Contact: Calvin Walton <[email protected]>
Source: https://github.com/blindsidenetworks/bbb-presentation-video

Files: debian/*
Copyright: 2022 Calvin Walton
Copyright: 2024 Calvin Walton
License: MIT
2 changes: 1 addition & 1 deletion bbb_presentation_video/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/bindings/fontconfig.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/events/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/events/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
26 changes: 17 additions & 9 deletions bbb_presentation_video/events/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down Expand Up @@ -65,10 +65,12 @@ class Position(Sequence[float]):
y: float

@overload
def __init__(self, iterable: Iterable[float], /) -> None: ...
def __init__(self, iterable: Iterable[float], /) -> None:
...

@overload
def __init__(self, x: float, y: float) -> None: ...
def __init__(self, x: float, y: float) -> None:
...

def __init__(
self, x: Union[Iterable[float], float], y: Optional[float] = None
Expand Down Expand Up @@ -98,10 +100,12 @@ def __truediv__(self: PositionSelf, other: float) -> PositionSelf:
return self.__class__(self.x / other, self.y / other)

@overload
def __getitem__(self, index: int) -> float: ...
def __getitem__(self, index: int) -> float:
...

@overload
def __getitem__(self, index: slice) -> Sequence[float]: ...
def __getitem__(self, index: slice) -> Sequence[float]:
...

def __getitem__(self, index: Union[int, slice]) -> Union[float, Sequence[float]]:
return (self.x, self.y)[index]
Expand All @@ -119,10 +123,12 @@ class Size(Sequence[float]):
height: float

@overload
def __init__(self, iterable: Iterable[float], /) -> None: ...
def __init__(self, iterable: Iterable[float], /) -> None:
...

@overload
def __init__(self, width: float, height: float) -> None: ...
def __init__(self, width: float, height: float) -> None:
...

def __init__(
self, width: Union[Iterable[float], float], height: Optional[float] = None
Expand All @@ -149,10 +155,12 @@ def __truediv__(self: SizeSelf, other: float) -> SizeSelf:
return self.__class__(self.width / other, self.height / other)

@overload
def __getitem__(self, index: int) -> float: ...
def __getitem__(self, index: int) -> float:
...

@overload
def __getitem__(self, index: slice) -> Sequence[float]: ...
def __getitem__(self, index: slice) -> Sequence[float]:
...

def __getitem__(self, index: Union[int, slice]) -> Union[float, Sequence[float]]:
return (self.width, self.height)[index]
Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/events/tldraw.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/cursor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/presentation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/easings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2021 Stephen Ruiz Ltd
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: MIT

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/fonts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/arrow_geo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/checkbox.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/cloud.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/diamond.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/ellipse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/hexagon.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/oval.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/rectangle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/rhombus.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/star.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/trapezoid.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/triangle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/geo/xbox.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/intersect.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2021 Stephen Ruiz Ltd
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: MIT

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/arrow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/arrow_v2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/draw.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/ellipse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/frame.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/line.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/rectangle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 4 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/sticky.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/sticky_v2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/text.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/text_v2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/shape/triangle.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/tldraw/vec.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: 2021 Stephen Ruiz Ltd
# SPDX-FileCopyrightText: 2022 Calvin Walton
# SPDX-FileCopyrightText: 2024 Calvin Walton
#
# SPDX-License-Identifier: MIT

Expand Down
2 changes: 1 addition & 1 deletion bbb_presentation_video/renderer/whiteboard.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Format: http://dep.debian.net/deps/dep5
Upstream-Name: bbb-presentation-video

Files: *
Copyright: 2022 BigBlueButton Inc. and by respective authors
Copyright: 2024 BigBlueButton Inc. and by respective authors
License: GPL-3.0+
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: LGPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: LGPL-3.0-or-later

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 BigBlueButton Inc. and by respective authors
# SPDX-FileCopyrightText: 2024 BigBlueButton Inc. and by respective authors
#
# SPDX-License-Identifier: LGPL-3.0-or-later

Expand Down

0 comments on commit 7a33b08

Please sign in to comment.