Skip to content

Commit 1aec077

Browse files
committed
Updated license identifiers to Apache-2.0 in multiple files
1 parent 378fb59 commit 1aec077

51 files changed

Lines changed: 58 additions & 61 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Core/Api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/ArkConfigManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Compiler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Compiler/command_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Compiler/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Compiler/mainprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Compiler/process_killer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/FilesManipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright 2026 Ague Samuel Amen
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");

Core/Gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
from PySide6.QtCore import QProcess, Qt
2525
from PySide6.QtGui import QDropEvent, QPixmap
26-
from PySide6.QtWidgets import QApplication, QFileDialog, QMessageBox, QWidget
26+
from PySide6.QtWidgets import QApplication, QFileDialog, QMessageBox, QMainWindow, QWidget
2727

2828
from Core.Globals import _workspace_dir_lock, _latest_gui_instance, _workspace_dir_cache
2929

@@ -63,7 +63,7 @@ def get_selected_workspace() -> Optional[str]:
6363
from PySide6.QtCore import QEventLoop as _QEventLoop
6464

6565

66-
class PyCompilerArkGui(QWidget):
66+
class PyCompilerArkGui(QMainWindow):
6767
def __init__(self):
6868
super().__init__()
6969
global _latest_gui_instance

0 commit comments

Comments
 (0)