Skip to content

Commit

Permalink
chore: update copyright statement
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-soft committed May 7, 2024
1 parent 313d48d commit 5a30598
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 28 deletions.
10 changes: 10 additions & 0 deletions lib/pandagl/include/pandagl/file_reader.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* lib/pandagl/include/pandagl/file_reader.h
*
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved.
*
* SPDX-License-Identifier: MIT
*
* This file is part of LCUI, distributed under the MIT License found in the
* LICENSE.TXT file in the root directory of this source tree.
*/

#ifndef LIB_PANDAGL_INCLUDE_PANDAGL_FILE_READER_H
#define LIB_PANDAGL_INCLUDE_PANDAGL_FILE_READER_H
Expand Down
11 changes: 11 additions & 0 deletions lib/pandagl/src/file_reader.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* lib/pandagl/src/file_reader.c
*
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved.
*
* SPDX-License-Identifier: MIT
*
* This file is part of LCUI, distributed under the MIT License found in the
* LICENSE.TXT file in the root directory of this source tree.
*/

#include <stdio.h>
#include <stdlib.h>
#include <pandagl/file_reader.h>
Expand Down
2 changes: 1 addition & 1 deletion lib/pandagl/src/image/bmp_private.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* lib/pandagl/src/image/bmp.h
* lib/pandagl/src/image/bmp_private.h
*
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/pandagl/src/image/jpeg_private.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* lib/pandagl/src/image/jpeg.h
* lib/pandagl/src/image/jpeg_private.h
*
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved.
*
Expand Down
13 changes: 12 additions & 1 deletion lib/pandagl/src/image/png_private.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
void pd_png_reader_create(pd_image_reader_t *reader);
/*
* lib/pandagl/src/image/png_private.h
*
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved.
*
* SPDX-License-Identifier: MIT
*
* This file is part of LCUI, distributed under the MIT License found in the
* LICENSE.TXT file in the root directory of this source tree.
*/

void pd_png_reader_create(pd_image_reader_t *reader);
void pd_png_reader_destroy(pd_image_reader_t *reader);
jmp_buf *pd_png_reader_jmpbuf(pd_image_reader_t *reader);
pd_error_t pd_png_reader_read_header(pd_image_reader_t *reader);
Expand Down
29 changes: 5 additions & 24 deletions lib/thread/src/thread.h.in
Original file line number Diff line number Diff line change
@@ -1,31 +1,12 @@
/*
* thread.h -- basic thread management
* lib/thread/include/thread.h: -- basic thread management
*
* Copyright (c) 2018-2022, Liu chao <[email protected]> All rights reserved.
* Copyright (c) 2018-2024, Liu chao <[email protected]> All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* SPDX-License-Identifier: MIT
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of LCUI nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* This file is part of LCUI, distributed under the MIT License found in the
* LICENSE.TXT file in the root directory of this source tree.
*/

#ifndef LIB_THREAD_INCLUDE_THREAD_H
Expand Down
10 changes: 10 additions & 0 deletions lib/timer/src/timer.h.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* lib/timer/include/timer.h
*
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved.
*
* SPDX-License-Identifier: MIT
*
* This file is part of LCUI, distributed under the MIT License found in the
* LICENSE.TXT file in the root directory of this source tree.
*/

#ifndef LCUI_TIMER_H
#define LCUI_TIMER_H
Expand Down
11 changes: 11 additions & 0 deletions lib/ui-router/src/version.h.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* lib/ui-router/include/ui_router/version.h
*
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved.
*
* SPDX-License-Identifier: MIT
*
* This file is part of LCUI, distributed under the MIT License found in the
* LICENSE.TXT file in the root directory of this source tree.
*/

#define LIBUI_ROUTER_VERSION "${VERSION}"
#define LIBUI_ROUTER_VERSION_MAJOR ${VERSION_MAJOR}
#define LIBUI_ROUTER_VERSION_MINOR ${VERSION_MINOR}
Expand Down
2 changes: 1 addition & 1 deletion scripts/add-copyright.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const includes = ["lib", "include", "src"].map((file) =>
path.resolve(cwd, file)
);
const excludes = ["lib/yutil"].map((file) => path.resolve(cwd, file));
const extensions = [".c", ".h"];
const extensions = [".c", ".h", ".h.in"];
const copyrightHolder = "Liu Chao <[email protected]>";
const copyright = `/*
* {{filePath}}{{summary}}
Expand Down

0 comments on commit 5a30598

Please sign in to comment.