Skip to content

Commit

Permalink
Updated copyright information.
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitalquark committed Dec 25, 2023
1 parent b0feb29 commit 2620487
Show file tree
Hide file tree
Showing 66 changed files with 68 additions and 68 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright 2022-2023 Mitchell. See LICENSE.
# Copyright 2022-2024 Mitchell. See LICENSE.

cmake_minimum_required(VERSION 3.16)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2007-2023 Mitchell
Copyright (c) 2007-2024 Mitchell

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion core/.buffer.luadoc
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- This is a DUMMY FILE used for making LuaDoc for Buffers and Views.

--- A Textadept buffer or view object.
Expand Down
2 changes: 1 addition & 1 deletion core/.iconv.luadoc
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- This is a DUMMY FILE used for making LuaDoc for built-in functions in the string table.

--- Extends Lua's `string` library to provide character set conversions.
Expand Down
2 changes: 1 addition & 1 deletion core/.os.luadoc
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- This is a DUMMY FILE used for making LuaDoc for built-in functions in the os table.

--- Extends Lua's `os` library to provide process spawning capabilities.
Expand Down
2 changes: 1 addition & 1 deletion core/.ui.dialogs.luadoc
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- This is a DUMMY FILE used for making LuaDoc for built-in functions in the ui.dialogs table.

--- Provides a set of interactive dialog prompts for user input.
Expand Down
2 changes: 1 addition & 1 deletion core/.view.luadoc
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- This is a DUMMY FILE used for making LuaDoc for Views.

--- See `buffer`.
Expand Down
2 changes: 1 addition & 1 deletion core/args.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Processes command line arguments for Textadept.
-- @module args
Expand Down
2 changes: 1 addition & 1 deletion core/assert.lua
@@ -1,4 +1,4 @@
-- Copyright 2020-2023 Mitchell. See LICENSE.
-- Copyright 2020-2024 Mitchell. See LICENSE.

--- Extends Lua's _G table to provide extra functions and fields for Textadept.
-- @module _G
Expand Down
2 changes: 1 addition & 1 deletion core/events.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Textadept's core event structure and handlers.
--
Expand Down
2 changes: 1 addition & 1 deletion core/file_io.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Extends Lua's `io` library with Textadept functions for working with files.
-- @module io
Expand Down
2 changes: 1 addition & 1 deletion core/iface.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Scintilla constants, functions, and properties.
-- Do not modify anything in this module. Doing so will have unpredictable consequences.
Expand Down
4 changes: 2 additions & 2 deletions core/init.lua
@@ -1,12 +1,12 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Extends Lua's _G table to provide extra functions and fields for Textadept.
-- @module _G

--- The Textadept release version string.
_RELEASE = 'Textadept 12.3 beta'
--- Textadept's copyright information.
_COPYRIGHT = 'Copyright © 2007-2023 Mitchell. See LICENSE.\n' ..
_COPYRIGHT = 'Copyright © 2007-2024 Mitchell. See LICENSE.\n' ..
'https://orbitalquark.github.io/textadept'

package.path = string.format('%s/core/?.lua;%s', _HOME, package.path)
Expand Down
2 changes: 1 addition & 1 deletion core/keys.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Manages key bindings in Textadept.
--
Expand Down
2 changes: 1 addition & 1 deletion core/lexer.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- @module lexer
local M = dofile(_HOME .. '/lexers/lexer.lua')
Expand Down
2 changes: 1 addition & 1 deletion core/lfs_ext.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Extends the `lfs` library to find files in directories and determine absolute file paths.
-- @module lfs
Expand Down
2 changes: 1 addition & 1 deletion core/locale.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# American English localization file for Textadept.
#
# When translating this file into your native language, all translated text must be encoded in
Expand Down
2 changes: 1 addition & 1 deletion core/locale.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Map of all messages used by Textadept to their localized form.
-- If the localized version of a given message does not exist, the non-localized message is
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.ar.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Arabic localization file for Textadept by Ahed Eid <AhedEid AT gmail.com>.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.de.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# German localization file for Textadept by Robert Gieseke.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.es.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Spanish localization file for Textadept by Manuel Montenegro Montes <manuelmont AT gmail.com>.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.fr.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# French localization file for Textadept by Gilles Grégoire <gilles.gregoire+ta AT gmail .com>
# and revised by Giovanni Salmeri <g.salmeri AT mondodomani.org>.
#
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.it.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Italian localization file for Textadept by Giovanni Salmeri <g.salmeri AT mondodomani.org>.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.pl.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Polish localization file for Textadept by Piotr "Orzech" Orzechowski [drzewo.org], 2014
# and revised by Piotr Orzechowski [orzechowski.tech], 2017.
#
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.pt_BR.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Brazilian Portuguese localization file for Textadept by Georger Araújo.
#
# When translating this file into your native language, all translated text must be encoded in
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.ru.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# American English localization file for Textadept.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.sv.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Swedish localization file for Textadept by Niklas Wallén <nikw AT gmx .com>.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/locales/locale.zh.conf
@@ -1,4 +1,4 @@
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.
# Chinese localization file for Textadept.
#
# When translating this file into your native language, all translated text must
Expand Down
2 changes: 1 addition & 1 deletion core/ui.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Utilities for interacting with Textadept's user interface.
-- @module ui
Expand Down
2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Expand Up @@ -26,7 +26,7 @@ <h1><img src="images/icon.png" alt="" /> Textadept</h1>
{{ content }}
</div>
<div id="footer">
<p style="text-align:center;"> &copy; 2007-2023 <a href="https://github.com/orbitalquark">Mitchell</a></p>
<p style="text-align:center;"> &copy; 2007-2024 <a href="https://github.com/orbitalquark">Mitchell</a></p>
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Expand Up @@ -312,7 +312,7 @@ <h3>Try It Yourself</h3>

<div id="footer">
<p style="text-align:center;">
&copy; 2007-2023 <a href="https://github.com/orbitalquark">Mitchell</a>
&copy; 2007-2024 <a href="https://github.com/orbitalquark">Mitchell</a>
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/style.css
@@ -1,4 +1,4 @@
/* Copyright 2012-2023 Mitchell. See LICENSE. */
/* Copyright 2012-2024 Mitchell. See LICENSE. */

* {
border: 0 solid #999999;
Expand Down
2 changes: 1 addition & 1 deletion init.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

package.path = table.concat({
_USERHOME .. '/modules/?.lua', _USERHOME .. '/modules/?/init.lua', _HOME .. '/modules/?.lua',
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/bookmarks.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Bookmarks for Textadept.
-- @module textadept.bookmarks
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/command_entry.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- Abbreviated environment and commands from Jay Gould.

--- Textadept's Command Entry.
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/editing.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Editing features for Textadept.
-- @module textadept.editing
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/find.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Textadept's Find & Replace pane.
-- @module ui.find
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/history.lua
@@ -1,4 +1,4 @@
-- Copyright 2019-2023 Mitchell. See LICENSE.
-- Copyright 2019-2024 Mitchell. See LICENSE.

--- Records buffer positions within Textadept views over time and allows for navigating through
-- that history.
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/init.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- The textadept module.
-- It provides utilities for editing text in Textadept.
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/keys.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Defines key bindings for Textadept.
-- This set of key bindings is pretty standard among other text editors, at least for basic
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/macros.lua
@@ -1,4 +1,4 @@
-- Copyright 2018-2023 Mitchell. See LICENSE.
-- Copyright 2018-2024 Mitchell. See LICENSE.

--- A module for recording, playing, saving, and loading keyboard macros.
-- Menu commands are also recorded.
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/menu.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
-- Contributions from Robert Gieseke.

--- Defines the menus used by Textadept.
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/run.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Compile and run source code files with Textadept.
-- Language [modules][] may tweak the `textadept.run.compile_commands`, and
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/session.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Session support for Textadept.
-- @module textadept.session
Expand Down
2 changes: 1 addition & 1 deletion modules/textadept/snippets.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Snippets for Textadept.
--
Expand Down
2 changes: 1 addition & 1 deletion scripts/count.sh
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2022-2023 Mitchell. See LICENSE.
# Copyright 2022-2024 Mitchell. See LICENSE.

# Counts lines of code for the each platform.
# Requires cloc.
Expand Down
2 changes: 1 addition & 1 deletion scripts/fill_layout.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
-- Copyright 2020-2023 Mitchell. See LICENSE.
-- Copyright 2020-2024 Mitchell. See LICENSE.

-- Filters the given file through markdown, inserts it into the template specified by stdin by
-- replacing simple {{ variable }} tags, and outputs the result to stdout.
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_docs.sh
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2022-2023 Mitchell. See LICENSE.
# Copyright 2022-2024 Mitchell. See LICENSE.

# Generates Textadept's documentation.
# Requires LDoc and Discount.
Expand Down
4 changes: 2 additions & 2 deletions scripts/gen_iface.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

-- Generates Lua to C interface for Scintilla by parsing Scintilla.iface and turning it into
-- a set of data tables. Whenever Textadept is to communicate with Scintilla using a given
Expand Down Expand Up @@ -186,7 +186,7 @@ table.sort(events)

local f = io.open('../core/iface.lua', 'wb')
f:write([=[
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.
--- Scintilla constants, functions, and properties.
-- Do not modify anything in this module. Doing so will have unpredictable consequences.
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_plist.lua
@@ -1,5 +1,5 @@
#!/usr/bin/lua
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

-- Generates the "Info.plist" file for the macOS App bundle.

Expand Down
2 changes: 1 addition & 1 deletion scripts/markdowndoc.lua
@@ -1,4 +1,4 @@
-- Copyright 2007-2023 Mitchell. See LICENSE.
-- Copyright 2007-2024 Mitchell. See LICENSE.

--- Markdown filter for LDoc and doclet for Luadoc.
-- @usage ldoc --filter markdowndoc.ldoc [ldoc opts] > api.md
Expand Down
2 changes: 1 addition & 1 deletion scripts/osx/ta
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.

if [[ "$1" == "-h" || "$1" == "--help" ]]; then
echo "ta - shell script to launch Textadept.app"
Expand Down
2 changes: 1 addition & 1 deletion scripts/osx/textadept_osx
@@ -1,5 +1,5 @@
#!/bin/sh
# Copyright 2007-2023 Mitchell. See LICENSE.
# Copyright 2007-2024 Mitchell. See LICENSE.

# Set environment variables of resources within Textadept.app.
bundle=$(cd "$(dirname "$0")/../../" && pwd)
Expand Down
2 changes: 1 addition & 1 deletion src/termkey.patch
Expand Up @@ -6,7 +6,7 @@ diff -r e0a74e8d32b3 driver-win-pdcurses.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/driver-win-pdcurses.c Thu Mar 24 11:45:45 2022 -0400
@@ -0,0 +1,108 @@
+// Copyright 2014-2023 Mitchell. See LICENSE.
+// Copyright 2014-2024 Mitchell. See LICENSE.
+
+#include "termkey.h"
+#include "termkey-internal.h"
Expand Down
2 changes: 1 addition & 1 deletion src/textadept.c
@@ -1,4 +1,4 @@
// Copyright 2007-2023 Mitchell. See LICENSE.
// Copyright 2007-2024 Mitchell. See LICENSE.

#include "textadept.h"

Expand Down
2 changes: 1 addition & 1 deletion src/textadept.h
@@ -1,4 +1,4 @@
// Copyright 2007-2023 Mitchell. See LICENSE.
// Copyright 2007-2024 Mitchell. See LICENSE.
// Interface between platforms and Textadept.
// Platforms use this interface to communicate with Textadept.

Expand Down
2 changes: 1 addition & 1 deletion src/textadept.rc
Expand Up @@ -19,7 +19,7 @@ BEGIN
VALUE "FileDescription", "textadept\0"
VALUE "FileVersion", "12.3 beta\0"
VALUE "InternalName", "textadept\0"
VALUE "LegalCopyright", "Copyright 2006-2023 by Mitchell\0"
VALUE "LegalCopyright", "Copyright 2006-2024 by Mitchell\0"
VALUE "OriginalFilename", "textadept.exe\0"
VALUE "ProductName", "textadept\0"
VALUE "ProductVersion", "12.3 beta\0"
Expand Down
2 changes: 1 addition & 1 deletion src/textadept_curses.c
@@ -1,4 +1,4 @@
// Copyright 2007-2023 Mitchell. See LICENSE.
// Copyright 2007-2024 Mitchell. See LICENSE.
// Curses platform for Textadept.

#include "textadept.h"
Expand Down
2 changes: 1 addition & 1 deletion src/textadept_gtk.c
@@ -1,4 +1,4 @@
// Copyright 2007-2023 Mitchell. See LICENSE.
// Copyright 2007-2024 Mitchell. See LICENSE.
// GTK platform for Textadept.

#include "textadept.h"
Expand Down
2 changes: 1 addition & 1 deletion src/textadept_platform.h
@@ -1,4 +1,4 @@
// Copyright 2007-2023 Mitchell. See LICENSE.
// Copyright 2007-2024 Mitchell. See LICENSE.
// Interface between Textadept and platforms.
// Textadept calls these functions to communicate with the platform.
//
Expand Down

0 comments on commit 2620487

Please sign in to comment.