Update source file headers

This commit is contained in:
Veronica Berglyd Olsen
2023-08-08 21:41:35 +02:00
parent 348e62cd3e
commit d658a993c0
27 changed files with 22 additions and 27 deletions
-1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Project Wrapper novelWriter Project Wrapper
============================= =============================
The parent class for a novelWriter project
File History: File History:
Created: 2018-09-29 [0.0.1] Created: 2018-09-29 [0.0.1]
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Project Item Status Class novelWriter Project Item Status Class
======================================= =======================================
Data class for the status/importance settings of a project item
File History: File History:
Created: 2019-05-19 [0.1.3] Created: 2019-05-19 [0.1.3]
@@ -23,6 +22,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import random import random
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Doc Merge Dialog novelWriter GUI Doc Merge Dialog
================================== ==================================
Custom dialog class for merging documents.
File History: File History:
Created: 2020-01-23 [0.4.3] Created: 2020-01-23 [0.4.3]
@@ -23,6 +22,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Doc Split Dialog novelWriter GUI Doc Split Dialog
================================== ==================================
Custom dialog class for splitting documents.
File History: File History:
Created: 2020-02-01 [0.4.3] Created: 2020-02-01 [0.4.3]
@@ -23,6 +22,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Edit Label Dialog novelWriter Edit Label Dialog
=============================== ===============================
A simple dialog for editing a label
File History: File History:
Created: 2022-06-11 [2.0rc1] Created: 2022-06-11 [2.0rc1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Preferences novelWriter GUI Preferences
============================= =============================
GUI classes for the user preferences dialog
File History: File History:
Created: 2019-06-10 [0.1.5] Created: 2019-06-10 [0.1.5]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Project Details novelWriter GUI Project Details
================================= =================================
Class holding the project details dialog
File History: File History:
Created: 2021-01-03 [1.1rc1] Created: 2021-01-03 [1.1rc1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import math import math
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Open Project novelWriter GUI Open Project
============================== ==============================
GUI class for the load/browse/new project dialog
File History: File History:
Created: 2020-02-26 [0.4.5] Created: 2020-02-26 [0.4.5]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Quotes Dialog novelWriter GUI Quotes Dialog
=============================== ===============================
GUI class for quotes dialog
File History: File History:
Created: 2020-06-18 [0.9] Created: 2020-06-18 [0.9]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Updates novelWriter GUI Updates
========================= =========================
A dialog box for checking for latest updates
File History: File History:
Created: 2021-08-21 [1.5b1] Created: 2021-08-21 [1.5b1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import json import json
import logging import logging
-1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Enums novelWriter Enums
=================== ===================
Global enum values
File History: File History:
Created: 2018-11-02 [0.0.1] Created: 2018-11-02 [0.0.1]
-1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Custom Widget: Config Layout novelWriter Custom Widget: Config Layout
========================================== ==========================================
A custom grid layout for config pages
File History: File History:
Created: 2020-05-03 [0.4.5] Created: 2020-05-03 [0.4.5]
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Custom Widget: Paged Dialog novelWriter Custom Widget: Paged Dialog
========================================= =========================================
A custom dialog with tabs and a vertical tab bar
File History: File History:
Created: 2020-05-17 [0.5.1] Created: 2020-05-17 [0.5.1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
from PyQt5.QtCore import QRect, QPoint from PyQt5.QtCore import QRect, QPoint
from PyQt5.QtWidgets import ( from PyQt5.QtWidgets import (
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Custom Widget: Switch novelWriter Custom Widget: Switch
=================================== ===================================
A custom switch widget
File History: File History:
Created: 2020-05-03 [0.4.5] Created: 2020-05-03 [0.4.5]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
from PyQt5.QtGui import QPainter from PyQt5.QtGui import QPainter
from PyQt5.QtCore import Qt, QRectF, QPropertyAnimation, pyqtProperty from PyQt5.QtCore import Qt, QRectF, QPropertyAnimation, pyqtProperty
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Components Module novelWriter GUI Components Module
=================================== ===================================
A module of various small GUI components
File History: File History:
Created: 2020-05-17 [0.5.1] StatusLED Created: 2020-05-17 [0.5.1] StatusLED
@@ -23,6 +22,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Syntax Highlighter novelWriter GUI Syntax Highlighter
==================================== ====================================
Class for the main document editor syntax highlighter
File History: File History:
Created: 2019-04-06 [0.0.1] Created: 2019-04-06 [0.0.1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Document Viewer novelWriter GUI Document Viewer
================================= =================================
GUI classes for the main document viewer
File History: File History:
Created: 2019-05-10 [0.0.1] GuiDocViewer Created: 2019-05-10 [0.0.1] GuiDocViewer
@@ -26,6 +25,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Item Details Panel novelWriter GUI Item Details Panel
==================================== ====================================
GUI class for the project tree item details panel
File History: File History:
Created: 2019-04-24 [0.0.1] Created: 2019-04-24 [0.0.1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Main Menu novelWriter GUI Main Menu
=========================== ===========================
GUI class for the main window menu
File History: File History:
Created: 2019-04-27 [0.0.1] Created: 2019-04-27 [0.0.1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Novel Tree novelWriter GUI Novel Tree
============================ ============================
GUI class for the main window novel tree
File History: File History:
Created: 2020-12-20 [1.1rc1] GuiNovelTree Created: 2020-12-20 [1.1rc1] GuiNovelTree
@@ -24,6 +23,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Project Outline novelWriter GUI Project Outline
================================= =================================
GUI class for the project outline view
File History: File History:
Created: 2022-05-15 [2.0rc1] GuiOutlineView Created: 2022-05-15 [2.0rc1] GuiOutlineView
@@ -26,6 +25,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
-1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Project Tree novelWriter GUI Project Tree
============================== ==============================
GUI classes for the main window project tree
File History: File History:
Created: 2018-09-29 [0.0.1] GuiProjectTree Created: 2018-09-29 [0.0.1] GuiProjectTree
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Main Window SideBar novelWriter GUI Main Window SideBar
===================================== =====================================
GUI class for the main window side bar
File History: File History:
Created: 2022-05-10 [2.0rc1] Created: 2022-05-10 [2.0rc1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI Main Window Status Bar novelWriter GUI Main Window Status Bar
======================================== ========================================
GUI class for the main window status bar
File History: File History:
Created: 2019-04-20 [0.0.1] GuiMainStatus Created: 2019-04-20 [0.0.1] GuiMainStatus
@@ -23,6 +22,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import logging import logging
-1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Theme and Icons Classes novelWriter Theme and Icons Classes
===================================== =====================================
Classes managing and caching themes and icons
File History: File History:
Created: 2019-05-18 [0.1.3] GuiTheme Created: 2019-05-18 [0.1.3] GuiTheme
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter Lorem Ipsum Tool novelWriter Lorem Ipsum Tool
============================== ==============================
Simple tool for inserting placeholder text in a document
File History: File History:
Created: 2022-04-02 [2.0rc1] Created: 2022-04-02 [2.0rc1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import random import random
import logging import logging
+1 -1
View File
@@ -1,7 +1,6 @@
""" """
novelWriter GUI New Project Wizard novelWriter GUI New Project Wizard
==================================== ====================================
GUI classes for the new project wizard dialog
File History: File History:
Created: 2020-07-11 [0.10.1] Created: 2020-07-11 [0.10.1]
@@ -22,6 +21,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. along with this program. If not, see <https://www.gnu.org/licenses/>.
""" """
from __future__ import annotations
import os import os
import logging import logging