Browse Source

update template

master
Nils 3 years ago
parent
commit
6d599cb6fe
  1. 1
      template/Makefile.in
  2. 6
      template/documentation/readme.template
  3. 2
      template/engine/api.py
  4. 2
      template/engine/data.py
  5. 2
      template/engine/duration.py
  6. 2
      template/engine/history.py
  7. 2
      template/engine/input_midi.py
  8. 2
      template/engine/ly2cbox.py
  9. 2
      template/engine/metronome.py
  10. 2
      template/engine/midi.py
  11. 2
      template/engine/pitch.py
  12. 2
      template/engine/sampler_sf2.py
  13. 2
      template/engine/sequencer.py
  14. 2
      template/engine/session.py
  15. 2
      template/helper.py
  16. 2
      template/qtgui/about.py
  17. 2
      template/qtgui/chooseSessionDirectory.py
  18. 2
      template/qtgui/constantsAndConfigs.py
  19. 2
      template/qtgui/debugScript.py
  20. 2
      template/qtgui/eventloop.py
  21. 2
      template/qtgui/helper.py
  22. 2
      template/qtgui/mainwindow.py
  23. 2
      template/qtgui/menu.py
  24. 2
      template/qtgui/nsmclient.py
  25. 2
      template/qtgui/nsmsingleserver.py
  26. 2
      template/qtgui/submenus.py
  27. 2
      template/qtgui/usermanual.py
  28. 2
      template/start.py

1
template/Makefile.in

@ -45,7 +45,6 @@ clean:
rm -rf build/ rm -rf build/
rm -rf sitepackages rm -rf sitepackages
rm -f "$(PROGRAM).bin" rm -f "$(PROGRAM).bin"
rm -rf "$(PROGRAM).build"
rm Makefile rm Makefile
find . -type d -name "__pycache__" -exec rm -r {} + find . -type d -name "__pycache__" -exec rm -r {} +

6
template/documentation/readme.template

@ -89,9 +89,9 @@ You can run <name> after extracting the release archive or cloning from git, wit
### Calfbox ### Calfbox
"Calfbox" is the name of our internal realtime midi/audio python module. "Calfbox" is the name of our internal realtime midi/audio python module.
* You can either choose to install the module systemwide, which will make running all Laborejo Software Suite programs more convenient (when run from the source dir). Please consult https://github.com/kfoltman/calfbox * It is bundled with the application for a normal install.
* Or you just run `./configure` and `make calfbox` without subsequent install, which creates a `site-packages` directory in the source dir. * Or you could run `./configure` and `make calfbox` without subsequent install, which creates a `sitepackages` directory in the source dir. You can then run `./<shortname>` directly from the source.
* A third option is `<shortname> --mute` which runs without sound at all and does not need calfbox. * A third option is `./<shortname> --mute` which runs without sound at all and does not need calfbox.
### From source directory with NSM ### From source directory with NSM
The developer uses this way to develop and use the software, so it will always be as stable as the The developer uses this way to develop and use the software, so it will always be as stable as the

2
template/engine/api.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ) This file is part of the Laborejo Software Suite ( https://www.laborejo.org )

2
template/engine/data.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/duration.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/history.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/input_midi.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/ly2cbox.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/metronome.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/midi.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/pitch.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/sampler_sf2.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ). This file is part of the Laborejo Software Suite ( https://www.laborejo.org ).

2
template/engine/sequencer.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/engine/session.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/helper.py

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
Most of this file is trivial code and does not reach the "Schaffenshöhe" for Urheberrecht. Most of this file is trivial code and does not reach the "Schaffenshöhe" for Urheberrecht.
If it is: If it is:

2
template/qtgui/about.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/chooseSessionDirectory.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/constantsAndConfigs.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/debugScript.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/eventloop.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/helper.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of Laborejo ( https://www.laborejo.org ) This file is part of Laborejo ( https://www.laborejo.org )

2
template/qtgui/mainwindow.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/menu.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/nsmclient.py

@ -9,7 +9,7 @@ With help from code fragments from https://github.com/attwad/python-osc ( DO WHA
MIT License MIT License
Copyright 2014-2020 Nils Hilbricht https://www.laborejo.org Copyright (c) since 2014: Laborejo Software Suite <info@laborejo.org>, All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction, associated documentation files (the "Software"), to deal in the Software without restriction,

2
template/qtgui/nsmsingleserver.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/submenus.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/qtgui/usermanual.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

2
template/start.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2020, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net )
This file is part of the Laborejo Software Suite ( https://www.laborejo.org ), This file is part of the Laborejo Software Suite ( https://www.laborejo.org ),

Loading…
Cancel
Save