Browse Source

Change year to 2022

master
Nils 2 years ago
parent
commit
5271d27fdf
  1. 1
      CHANGELOG
  2. 2
      engine/__init__.py
  3. 2
      engine/api.py
  4. 2
      engine/block.py
  5. 2
      engine/ccsubtrack.py
  6. 4
      engine/config.py
  7. 2
      engine/cursor.py
  8. 2
      engine/items.py
  9. 2
      engine/lilypond.py
  10. 2
      engine/main.py
  11. 2
      engine/midiinput/stepmidiinput.py
  12. 2
      engine/tempotrack.py
  13. 2
      engine/track.py
  14. 2
      qtgui/conductor.py
  15. 2
      qtgui/constantsAndConfigs.py
  16. 2
      qtgui/cursor.py
  17. 2
      qtgui/graphs.py
  18. 2
      qtgui/grid.py
  19. 2
      qtgui/items.py
  20. 2
      qtgui/mainwindow.py
  21. 2
      qtgui/menu.py
  22. 2
      qtgui/musicstructures.py
  23. 13034
      qtgui/resources.py
  24. 2
      qtgui/scorescene.py
  25. 2
      qtgui/scoreview.py
  26. 2
      qtgui/submenus.py
  27. 2
      qtgui/trackEditor.py
  28. 2
      template/engine/api.py
  29. 2
      template/engine/data.py
  30. 2
      template/engine/duration.py
  31. 2
      template/engine/history.py
  32. 2
      template/engine/input_midi.py
  33. 2
      template/engine/ly2cbox.py
  34. 2
      template/engine/metronome.py
  35. 2
      template/engine/midi.py
  36. 2
      template/engine/pitch.py
  37. 2
      template/engine/sampler_sf2.py
  38. 2
      template/engine/sequencer.py
  39. 2
      template/engine/session.py
  40. 2
      template/helper.py
  41. 2
      template/qtgui/about.py
  42. 2
      template/qtgui/changelog.py
  43. 2
      template/qtgui/chooseSessionDirectory.py
  44. 2
      template/qtgui/constantsAndConfigs.py
  45. 2
      template/qtgui/debugScript.py
  46. 2
      template/qtgui/eventloop.py
  47. 2
      template/qtgui/helper.py
  48. 2
      template/qtgui/mainwindow.py
  49. 2
      template/qtgui/menu.py
  50. 2
      template/qtgui/midiinquickwidget.py
  51. 2
      template/qtgui/nsmsingleserver.py
  52. 2
      template/qtgui/submenus.py
  53. 2
      template/qtgui/usermanual.py
  54. 2
      template/start.py

1
CHANGELOG

@ -9,6 +9,7 @@ External contributors notice at the end of the line: (LastName, FirstName / nick
This CHANGELOG is now available through the programs help menu directly. This CHANGELOG is now available through the programs help menu directly.
Icons are now send to JACK Metadata. Icons are now send to JACK Metadata.
## 2021-01-15 2.0.1 ## 2021-01-15 2.0.1
Remove Nuitka as dependency. Build commands stay the same. Remove Nuitka as dependency. Build commands stay the same.

2
engine/__init__.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/api.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/block.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/ccsubtrack.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 ),

4
engine/config.py

@ -21,8 +21,8 @@ METADATA={
#release announcements, entries in software directories etc. #release announcements, entries in software directories etc.
"tagline" : 'MIDI sequencer based on classical music notation', "tagline" : 'MIDI sequencer based on classical music notation',
"version" : "2.0.1", "version" : "2.0.2",
"year" : "2021", "year" : "2022",
"author" : "Laborejo Software Suite", "author" : "Laborejo Software Suite",
"url" : "https://www.laborejo.org/laborejo", "url" : "https://www.laborejo.org/laborejo",

2
engine/cursor.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/items.py

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/lilypond.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/main.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/midiinput/stepmidiinput.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 ),
more specifically its template base application. more specifically its template base application.

2
engine/tempotrack.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
engine/track.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/conductor.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/constantsAndConfigs.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/cursor.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/graphs.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/grid.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/items.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/mainwindow.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/menu.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/musicstructures.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 ),

13034
qtgui/resources.py

File diff suppressed because it is too large

2
qtgui/scorescene.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/scoreview.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/submenus.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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
qtgui/trackEditor.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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/api.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 @@
#/bin/env python3 #/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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/changelog.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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/midiinquickwidget.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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/nsmsingleserver.py

@ -1,7 +1,7 @@
#! /usr/bin/env python3 #! /usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
Copyright 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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 2021, Nils Hilbricht, Germany ( https://www.hilbricht.net ) Copyright 2022, 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