Skip to content

Commit

Permalink
Fix copyright and version
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki committed Feb 9, 2024
1 parent ce96b59 commit 864382a
Show file tree
Hide file tree
Showing 61 changed files with 72 additions and 63 deletions.
4 changes: 2 additions & 2 deletions LICENSE.GPLv3
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

popsicle - Copyright (C) 2022 kunitoki <[email protected]>
popsicle - Copyright (c) 2024 kunitoki <[email protected]>

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
Expand All @@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

popsicle - Copyright (C) 2022 kunitoki <[email protected]>
popsicle - Copyright (c) 2024 kunitoki <[email protected]>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
Expand Down
2 changes: 1 addition & 1 deletion demo/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion demo/PopsicleDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion demo/PopsicleDemo.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
11 changes: 10 additions & 1 deletion docs/EmbeddingTutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Popsicle: Embedding Guide
=========================

TODO

--------------------------------------
Adding popsicle to the project (cmake)
Expand All @@ -21,7 +22,7 @@ When `cmake` is the preferred build system for a JUCE app, it's necessary to fet
add_subdirectory (${CMAKE_CURRENT_LIST_DIR}/../popsicle/modules popsicle)
- Using FetchContent to add popsicle to your project:
- Using `FetchContent` to add popsicle to your project:

.. code-block:: cmake
Expand All @@ -43,6 +44,14 @@ Once this is done, it's also ncessary to find python libraries to embed:
set (Python_USE_STATIC_LIBS TRUE)
find_package (Python REQUIRED Development.Embed)
If you installed python globally using the official upstream installers, it's possible to force their location as well to simplify the selection of the desired python version, for example in macOS:

.. code-block:: cmake
set (Python_ROOT_DIR "/Library/Frameworks/Python.framework/Versions/Current")
set (Python_USE_STATIC_LIBS TRUE)
find_package (Python REQUIRED Development.Embed)
And finally adding the necessary targets:

.. code-block:: cmake
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceCoreBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceCoreBindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceEventsBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceEventsBindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceGraphicsBindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceGuiBasicsBindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/bindings/ScriptJuceGuiExtraBindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
4 changes: 2 additions & 2 deletions modules/juce_python/juce_python.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand All @@ -21,7 +21,7 @@
ID: juce_python
vendor: kunitoki
version: 1.0.4
version: 0.9.0
name: Python bindings for the JUCE framework
description: The python bindings to create and work on JUCE apps.
website: http://www.straw.com
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_audio_basics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_audio_devices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_audio_formats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_audio_processors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_audio_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/juce_python/juce_python_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* This file is part of the popsicle project.
*
* Copyright (c) 2022 - kunitoki <[email protected]>
* Copyright (c) 2024 - kunitoki <[email protected]>
*
* popsicle is an open source library subject to commercial or open-source licensing.
*
Expand Down
Loading

0 comments on commit 864382a

Please sign in to comment.