-
-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Continue PyQt6 compatibility, seems usable now
Signed-off-by: [email protected] <falkTX>
- Loading branch information
1 parent
b0878b7
commit da911f1
Showing
16 changed files
with
300 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Carla plugin host | ||
# Copyright (C) 2011-2022 Filipe Coelho <[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 the Free Software Foundation; either version 2 of | ||
# the License, or any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# For a full copy of the GNU General Public License see the doc/GPL.txt file. | ||
# SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Imports (Custom Stuff) | ||
|
@@ -38,6 +24,8 @@ from carla_shared import ( | |
# Main | ||
|
||
if __name__ == '__main__': | ||
import resources_rc | ||
|
||
# ------------------------------------------------------------------------------------------------------------------ | ||
# Read CLI args | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Carla plugin host | ||
# Copyright (C) 2011-2021 Filipe Coelho <[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 the Free Software Foundation; either version 2 of | ||
# the License, or any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# For a full copy of the GNU General Public License see the doc/GPL.txt file. | ||
# SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Imports (Custom Stuff) | ||
|
@@ -36,6 +22,8 @@ import sys | |
# Main | ||
|
||
if __name__ == '__main__': | ||
import resources_rc | ||
|
||
# ------------------------------------------------------------------------------------------------------------------ | ||
# Read CLI args | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Carla plugin host | ||
# Copyright (C) 2011-2017 Filipe Coelho <[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 the Free Software Foundation; either version 2 of | ||
# the License, or any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# For a full copy of the GNU General Public License see the doc/GPL.txt file. | ||
# SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Imports (Custom Stuff) | ||
|
@@ -25,6 +11,8 @@ from carla_host import * | |
# Main | ||
|
||
if __name__ == '__main__': | ||
import resources_rc | ||
|
||
# ------------------------------------------------------------------------------------------------------------------ | ||
# Read CLI args | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Carla plugin host | ||
# Copyright (C) 2011-2017 Filipe Coelho <[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 the Free Software Foundation; either version 2 of | ||
# the License, or any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# For a full copy of the GNU General Public License see the doc/GPL.txt file. | ||
# SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Imports (Custom Stuff) | ||
|
@@ -25,6 +11,8 @@ from carla_host import * | |
# Main | ||
|
||
if __name__ == '__main__': | ||
import resources_rc | ||
|
||
# ------------------------------------------------------------------------------------------------------------------ | ||
# Read CLI args | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Carla plugin host | ||
# Copyright (C) 2011-2017 Filipe Coelho <[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 the Free Software Foundation; either version 2 of | ||
# the License, or any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# For a full copy of the GNU General Public License see the doc/GPL.txt file. | ||
# SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Imports (Custom Stuff) | ||
|
@@ -25,6 +11,8 @@ from carla_host import * | |
# Main | ||
|
||
if __name__ == '__main__': | ||
import resources_rc | ||
|
||
# ------------------------------------------------------------------------------------------------------------------ | ||
# Read CLI args | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
|
||
# Carla plugin host | ||
# Copyright (C) 2011-2015 Filipe Coelho <[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 the Free Software Foundation; either version 2 of | ||
# the License, or any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# For a full copy of the GNU General Public License see the doc/GPL.txt file. | ||
# SPDX-FileCopyrightText: 2011-2024 Filipe Coelho <[email protected]> | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
# ---------------------------------------------------------------------------------------------------------------------- | ||
# Imports (Custom Stuff) | ||
|
@@ -25,6 +11,8 @@ from carla_host import * | |
# Main | ||
|
||
if __name__ == '__main__': | ||
import resources_rc | ||
|
||
# ------------------------------------------------------------------------------------------------------------------ | ||
# Read CLI args | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.