Skip to content

Commit

Permalink
Update License and Repository Information (#6)
Browse files Browse the repository at this point in the history
Added GPL headers, maintainer info, and bumped version to v0.5.0.
  • Loading branch information
LordNyriox authored Feb 6, 2019
1 parent cd3b53f commit 3b9be30
Show file tree
Hide file tree
Showing 12 changed files with 188 additions and 6 deletions.
18 changes: 18 additions & 0 deletions TlDatLexer/lexer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"

#include "lexer.h"
Expand Down
18 changes: 18 additions & 0 deletions TlDatLexer/lexer.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef TLDATLEXER_LEXER_H
#define TLDATLEXER_LEXER_H

Expand Down
18 changes: 18 additions & 0 deletions TlDatLexer/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"
#include <windows.h>

Expand Down
18 changes: 18 additions & 0 deletions TlDatLexer/parse_int.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"
#include "parse_int.h"

Expand Down
18 changes: 18 additions & 0 deletions TlDatLexer/parse_int.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef TLDATLEXER_PARSE_INT_H
#define TLDATLEXER_PARSE_INT_H

Expand Down
25 changes: 22 additions & 3 deletions TlDatLexer/plugin.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
* Copyright (C) 2019 Ryan Medeiros <[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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"
#include "plugin.h"

Expand Down Expand Up @@ -43,9 +62,9 @@ namespace {
void __cdecl about() {
MessageBox(
nppHandle,
L"Author: Jason Newcomb.\n"
L"Source: http://bitbucket.org/Jarcho/tldatlexer\n\n"
L"This is free software; it comes with ABSOLUTELY NO WARRANTY.\n",
L"Author: Jason Newcomb and Ryan Medeiros.\n"
L"Source: https://github.com/LordNyriox/TLDatLexer\n\n"
L"License: GPL Version 3\n",
L"TLDatLexer (v" TEXT(TLDATLEXER_VERSION_STRING) L")",
MB_OK
);
Expand Down
18 changes: 18 additions & 0 deletions TlDatLexer/plugin.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Windows.h>

#include <Scintilla.h>
Expand Down
18 changes: 18 additions & 0 deletions TlDatLexer/stdafx.cpp
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "stdafx.h"
18 changes: 18 additions & 0 deletions TlDatLexer/stdafx.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
*
* 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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once

#ifndef UNICODE
Expand Down
Binary file modified TlDatLexer/tl_dat_lexer.rc
Binary file not shown.
25 changes: 22 additions & 3 deletions TlDatLexer/version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
#define TLDATLEXER_VERSION_STRING "0.4.3"
/*
* TlDatLexer Plugin for Notepad++.
* Copyright (C) 2013 Jason Newcomb
* Copyright (C) 2019 Ryan Medeiros <[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 3 of the License, or
* (at your option) 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#define TLDATLEXER_VERSION_STRING "0.5.0"
#define TLDATLEXER_VERSION_MAJOR 0
#define TLDATLEXER_VERSION_MINOR 4
#define TLDATLEXER_VERSION_PATCH 3
#define TLDATLEXER_VERSION_MINOR 5
#define TLDATLEXER_VERSION_PATCH 0
File renamed without changes.

0 comments on commit 3b9be30

Please sign in to comment.