Skip to content

Commit 4604de5

Browse files
committed
- update copyright date to 2025
- fix typo
1 parent 65b7ed8 commit 4604de5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

PythonScript/res/PythonScript.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ FONT 8, "MS Shell Dlg", 400, 0, 0x1
5757
BEGIN
5858
DEFPUSHBUTTON "OK",IDOK,143,168,50,14
5959
CTEXT "Python Script",IDC_STATIC,144,7,49,8
60-
CTEXT "(C) 2010-2023 Dave Brotherstone",IDC_STATIC,92,30,154,8
60+
CTEXT "(C) 2010-2025 Dave Brotherstone",IDC_STATIC,92,30,154,8
6161
CONTROL IDB_PYTHONPOWERED,IDC_STATIC,"Static",SS_BITMAP | SS_CENTERIMAGE | SS_REALSIZEIMAGE,122,42,93,34
6262
EDITTEXT IDC_COPYRIGHT,7,84,324,74,ES_MULTILINE | ES_AUTOHSCROLL | ES_READONLY | WS_VSCROLL
6363
CTEXT "1.0",IDC_VERSION,144,19,49,8
0 Bytes
Binary file not shown.

PythonScript/src/Replacer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class BoostRegexMatch : public Match
6464
m_text = rhs.m_text;
6565
m_match = rhs.m_match;
6666

67-
/* We explicitely don't copy the list, as the allocatedGroupDetails will simply be destructed when this object gets destroyed.
67+
/* We explicitly don't copy the list, as the allocatedGroupDetails will simply be destructed when this object gets destroyed.
6868
* In theory, this would be bad, as we would delete the allocated GroupDetail objects when this object is deleted,
6969
* even though the various groups may still be in use.
7070
* In practice however, these GroupDetails don't actually live as long as this object, as we've created a ReplaceEntry

docs/source/conf.py

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

4141
# General information about the project.
4242
project = u'PythonScript'
43-
copyright = u'2010,2014,2018 Dave Brotherstone'
43+
copyright = u'2010-2025 Dave Brotherstone'
4444

4545
# The version info for the project you're documenting, acts as replacement for
4646
# |version| and |release|, also used in various other places throughout the
@@ -232,7 +232,7 @@
232232
epub_title = u'PythonScript'
233233
epub_author = u'Dave Brotherstone'
234234
epub_publisher = u'Dave Brotherstone'
235-
epub_copyright = u'2010,2014,2018 Dave Brotherstone'
235+
epub_copyright = u'2010-2025 Dave Brotherstone'
236236

237237
# The language of the text. It defaults to the language option
238238
# or en if the language is not set.

0 commit comments

Comments
 (0)