aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2025-01-22 15:23:41 +0800
committerLi Jin <dragon-fly@qq.com>2025-01-22 15:23:41 +0800
commit2aada4b8418c38509e82a7caaa1964d739880fb1 (patch)
tree0de6b606580410c9156cae6ae95439046246262a
parent42311be3c22631210abec0b6ff653e59501e666c (diff)
downloadyuescript-2aada4b8418c38509e82a7caaa1964d739880fb1.tar.gz
yuescript-2aada4b8418c38509e82a7caaa1964d739880fb1.tar.bz2
yuescript-2aada4b8418c38509e82a7caaa1964d739880fb1.zip
Updated docs. [skip CI]
-rw-r--r--LICENSE2
-rwxr-xr-xdoc/docs/README.md2
-rwxr-xr-xdoc/docs/doc/README.md2
-rwxr-xr-xdoc/docs/zh/README.md2
-rwxr-xr-xdoc/docs/zh/doc/README.md2
-rwxr-xr-xdoc/package.json2
-rw-r--r--src/yue.cpp2
-rw-r--r--src/yue_wasm.cpp2
-rw-r--r--src/yuescript/yue_ast.cpp2
-rw-r--r--src/yuescript/yue_ast.h2
-rw-r--r--src/yuescript/yue_compiler.cpp2
-rw-r--r--src/yuescript/yue_compiler.h2
-rw-r--r--src/yuescript/yue_parser.cpp2
-rw-r--r--src/yuescript/yue_parser.h2
-rw-r--r--src/yuescript/yuescript.cpp2
15 files changed, 15 insertions, 15 deletions
diff --git a/LICENSE b/LICENSE
index d0b3d5c..f1cdba4 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
1MIT License 1MIT License
2 2
3Copyright (c) 2025 Li Jin 3Copyright (c) 2017-2025 Li Jin
4 4
5Permission is hereby granted, free of charge, to any person obtaining a copy 5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal 6of this software and associated documentation files (the "Software"), to deal
diff --git a/doc/docs/README.md b/doc/docs/README.md
index 7186206..21e47c4 100755
--- a/doc/docs/README.md
+++ b/doc/docs/README.md
@@ -3,6 +3,6 @@ home: true
3heroImage: ./image/yuescript.svg 3heroImage: ./image/yuescript.svg
4actionText: Quick Start → 4actionText: Quick Start →
5actionLink: /doc/ 5actionLink: /doc/
6footer: MIT Licensed | Copyright © 2025 Li Jin 6footer: MIT Licensed | Copyright © 2017-2025 Li Jin
7--- 7---
8 8
diff --git a/doc/docs/doc/README.md b/doc/docs/doc/README.md
index 7122af5..49be707 100755
--- a/doc/docs/doc/README.md
+++ b/doc/docs/doc/README.md
@@ -4381,7 +4381,7 @@ simplified: boolean
4381 4381
4382## Licence: MIT 4382## Licence: MIT
4383 4383
4384Copyright (c) 2025 Li Jin 4384Copyright (c) 2017-2025 Li Jin \<dragon-fly@qq.com\>
4385 4385
4386Permission is hereby granted, free of charge, to any person obtaining a copy 4386Permission is hereby granted, free of charge, to any person obtaining a copy
4387of this software and associated documentation files (the "Software"), to deal 4387of this software and associated documentation files (the "Software"), to deal
diff --git a/doc/docs/zh/README.md b/doc/docs/zh/README.md
index 602f4d3..f5c9811 100755
--- a/doc/docs/zh/README.md
+++ b/doc/docs/zh/README.md
@@ -3,6 +3,6 @@ home: true
3heroImage: /image/yuescript.svg 3heroImage: /image/yuescript.svg
4actionText: 快速上手 → 4actionText: 快速上手 →
5actionLink: /zh/doc/ 5actionLink: /zh/doc/
6footer: MIT Licensed | Copyright © 2025 Li Jin 6footer: MIT Licensed | Copyright © 2017-2025 Li Jin
7--- 7---
8 8
diff --git a/doc/docs/zh/doc/README.md b/doc/docs/zh/doc/README.md
index 05ca6a0..be31ec1 100755
--- a/doc/docs/zh/doc/README.md
+++ b/doc/docs/zh/doc/README.md
@@ -4329,7 +4329,7 @@ simplified: boolean
4329 4329
4330## MIT 许可证 4330## MIT 许可证
4331 4331
4332版权 (c) 2025 李瑾 4332版权 (c) 2017-2025 李瑾 \<dragon-fly@qq.com\>
4333 4333
4334特此免费授予任何获得本软件副本和相关文档文件(下称“软件”)的人不受限制地处置该软件的权利,包括不受限制地使用、复制、修改、合并、发布、分发、转授许可和/或出售该软件副本,以及再授权被配发了本软件的人如上的权利,须在下列条件下: 4334特此免费授予任何获得本软件副本和相关文档文件(下称“软件”)的人不受限制地处置该软件的权利,包括不受限制地使用、复制、修改、合并、发布、分发、转授许可和/或出售该软件副本,以及再授权被配发了本软件的人如上的权利,须在下列条件下:
4335上述版权声明和本许可声明应包含在该软件的所有副本或实质成分中。 4335上述版权声明和本许可声明应包含在该软件的所有副本或实质成分中。
diff --git a/doc/package.json b/doc/package.json
index f9e5ebf..d179035 100755
--- a/doc/package.json
+++ b/doc/package.json
@@ -1,5 +1,5 @@
1{ 1{
2 "name": "Yuescript", 2 "name": "yuescript",
3 "version": "0.0.1", 3 "version": "0.0.1",
4 "description": "Documentation", 4 "description": "Documentation",
5 "main": "index.js", 5 "main": "index.js",
diff --git a/src/yue.cpp b/src/yue.cpp
index aaa82dd..fc57767 100644
--- a/src/yue.cpp
+++ b/src/yue.cpp
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Jin Li, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yue_wasm.cpp b/src/yue_wasm.cpp
index 7156334..20f3794 100644
--- a/src/yue_wasm.cpp
+++ b/src/yue_wasm.cpp
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Jin Li, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yue_ast.cpp b/src/yuescript/yue_ast.cpp
index 8456def..3dac699 100644
--- a/src/yuescript/yue_ast.cpp
+++ b/src/yuescript/yue_ast.cpp
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yue_ast.h b/src/yuescript/yue_ast.h
index 792ed4c..139f4b3 100644
--- a/src/yuescript/yue_ast.h
+++ b/src/yuescript/yue_ast.h
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yue_compiler.cpp b/src/yuescript/yue_compiler.cpp
index 4f4674f..b9db83c 100644
--- a/src/yuescript/yue_compiler.cpp
+++ b/src/yuescript/yue_compiler.cpp
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yue_compiler.h b/src/yuescript/yue_compiler.h
index 2a2ba91..d352636 100644
--- a/src/yuescript/yue_compiler.h
+++ b/src/yuescript/yue_compiler.h
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yue_parser.cpp b/src/yuescript/yue_parser.cpp
index de49df9..ef242ea 100644
--- a/src/yuescript/yue_parser.cpp
+++ b/src/yuescript/yue_parser.cpp
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yue_parser.h b/src/yuescript/yue_parser.h
index da7129c..f18cc1b 100644
--- a/src/yuescript/yue_parser.h
+++ b/src/yuescript/yue_parser.h
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4
diff --git a/src/yuescript/yuescript.cpp b/src/yuescript/yuescript.cpp
index 76fdfdd..7e8e8b7 100644
--- a/src/yuescript/yuescript.cpp
+++ b/src/yuescript/yuescript.cpp
@@ -1,4 +1,4 @@
1/* Copyright (c) 2025 Li Jin, dragon-fly@qq.com 1/* Copyright (c) 2017-2025 Li Jin <dragon-fly@qq.com>
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4 4