Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 4c4aa80

Browse files
committed
Updated LICENSE
1 parent 4f56276 commit 4c4aa80

File tree

71 files changed

+1216
-1284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1216
-1284
lines changed

.idea/copyright/AndroidIDE.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/copyright/android_tree_sitter.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

100755100644
Lines changed: 504 additions & 674 deletions
Large diffs are not rendered by default.

android-tree-sitter/build.gradle.kts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/*
2-
* This file is part of AndroidIDE.
2+
* This file is part of android-tree-sitter.
33
*
4-
* AndroidIDE is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* android-tree-sitter library is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU Lesser General Public
6+
* License as published by the Free Software Foundation; either
7+
* version 2.1 of the License, or (at your option) any later version.
88
*
9-
* AndroidIDE is distributed in the hope that it will be useful,
9+
* android-tree-sitter library is distributed in the hope that it will be useful,
1010
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
* Lesser General Public License for more details.
1313
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with AndroidIDE. If not, see <https://www.gnu.org/licenses/\>.
14+
* You should have received a copy of the GNU General Public License
15+
* along with android-tree-sitter. If not, see <https://www.gnu.org/licenses/>.
1616
*/
1717

1818
import com.itsaky.androidide.treesitter.TreeSitterPlugin
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ This file is part of android-tree-sitter.
4+
~
5+
~ android-tree-sitter library is free software; you can redistribute it and/or
6+
~ modify it under the terms of the GNU Lesser General Public
7+
~ License as published by the Free Software Foundation; either
8+
~ version 2.1 of the License, or (at your option) any later version.
9+
~
10+
~ android-tree-sitter library is distributed in the hope that it will be useful,
11+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
~ Lesser General Public License for more details.
14+
~
15+
~ You should have received a copy of the GNU General Public License
16+
~ along with android-tree-sitter. If not, see <https://www.gnu.org/licenses/>.
17+
-->
18+
219
<manifest/>

android-tree-sitter/src/main/cpp/CMakeLists.txt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# This file is part of android-tree-sitter.
3+
#
4+
# android-tree-sitter library is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU Lesser General Public
6+
# License as published by the Free Software Foundation; either
7+
# version 2.1 of the License, or (at your option) any later version.
8+
#
9+
# android-tree-sitter library is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
# Lesser General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with android-tree-sitter. If not, see <https://www.gnu.org/licenses/>.
16+
#
17+
118
cmake_minimum_required(VERSION 3.22.1)
219

320
# Project name
@@ -13,7 +30,6 @@ add_library(android-tree-sitter SHARED
1330
"${TS_DIR}/lib/src/lib.c"
1431

1532
# android-tree-sitter sources
16-
parser.cc
1733
ts.cc
1834
ts_cursor.cc
1935
ts_language.cc

android-tree-sitter/src/main/cpp/cache/StrCache.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/*
2-
* This file is part of AndroidIDE.
2+
* This file is part of android-tree-sitter.
33
*
4-
* AndroidIDE is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* android-tree-sitter library is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU Lesser General Public
6+
* License as published by the Free Software Foundation; either
7+
* version 2.1 of the License, or (at your option) any later version.
88
*
9-
* AndroidIDE is distributed in the hope that it will be useful,
9+
* android-tree-sitter library is distributed in the hope that it will be useful,
1010
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
* Lesser General Public License for more details.
1313
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with AndroidIDE. If not, see <https://www.gnu.org/licenses/\>.
14+
* You should have received a copy of the GNU General Public License
15+
* along with android-tree-sitter. If not, see <https://www.gnu.org/licenses/>.
1616
*/
1717

1818
#include "StrCache.h"

android-tree-sitter/src/main/cpp/cache/StrCache.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/*
2-
* This file is part of AndroidIDE.
2+
* This file is part of android-tree-sitter.
33
*
4-
* AndroidIDE is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* android-tree-sitter library is free software; you can redistribute it and/or
5+
* modify it under the terms of the GNU Lesser General Public
6+
* License as published by the Free Software Foundation; either
7+
* version 2.1 of the License, or (at your option) any later version.
88
*
9-
* AndroidIDE is distributed in the hope that it will be useful,
9+
* android-tree-sitter library is distributed in the hope that it will be useful,
1010
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
* Lesser General Public License for more details.
1313
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with AndroidIDE. If not, see <https://www.gnu.org/licenses/\>.
14+
* You should have received a copy of the GNU General Public License
15+
* along with android-tree-sitter. If not, see <https://www.gnu.org/licenses/>.
1616
*/
1717

1818
#ifndef ANDROIDTREESITTER_STRCACHE_H

android-tree-sitter/src/main/cpp/parser.cc

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)