Skip to content

Commit aa48725

Browse files
committed
Fix papyros#3 - Update the license to LGPL v2.1
1 parent f268b42 commit aa48725

28 files changed

+904
-29
lines changed

Action.qml

+22-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
1-
import QtQuick 2.0
1+
/*
2+
* QML Material - An application framework implementing Material Design.
3+
* Copyright (C) 2014 Michael Spencer
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as
7+
* published by the Free Software Foundation, either version 2.1 of the
8+
* License, or (at your option) any later version.
9+
*
10+
* This program 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
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
18+
import QtQuick 2.0
219

320
QtObject {
21+
id: action
22+
423
property string name
24+
property string iconName
525
property string description
626
property string shortcut
7-
property string iconName
8-
property string style: "default"
27+
928
property bool hasDividerAfter
1029

1130
property bool visible: true

ActionBar.qml

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* QML Material - An application framework implementing Material Design.
3+
* Copyright (C) 2014 Michael Spencer
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as
7+
* published by the Free Software Foundation, either version 2.1 of the
8+
* License, or (at your option) any later version.
9+
*
10+
* This program 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
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
118
import QtQuick 2.0
219

320
Item {
@@ -106,4 +123,3 @@ Item {
106123
}
107124
}
108125
}
109-

Application.qml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* QML Air - A lightweight and mostly flat UI widget collection for QML
2+
* QML Material - An application framework implementing Material Design.
33
* Copyright (C) 2014 Michael Spencer
44
*
55
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8-
* (at your option) any later version.
6+
* it under the terms of the GNU Lesser General Public License as
7+
* published by the Free Software Foundation, either version 2.1 of the
8+
* License, or (at your option) any later version.
99
*
1010
* This program is distributed in the hope that it will be useful,
1111
* but WITHOUT ANY WARRANTY; without even the implied warranty of

AwesomeIcon.qml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/*
2-
* QML Air - A lightweight and mostly flat UI widget collection for QML
2+
* QML Material - An application framework implementing Material Design.
33
* Copyright (C) 2014 Michael Spencer
4-
*
4+
*
55
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8-
* (at your option) any later version.
9-
*
6+
* it under the terms of the GNU Lesser General Public License as
7+
* published by the Free Software Foundation, either version 2.1 of the
8+
* License, or (at your option) any later version.
9+
*
1010
* This program is distributed in the hope that it will be useful,
1111
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1212
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
* GNU General Public License for more details.
14-
*
14+
*
1515
* You should have received a copy of the GNU General Public License
1616
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
*/

Button.qml

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* QML Material - An application framework implementing Material Design.
3+
* Copyright (C) 2014 Michael Spencer
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU Lesser General Public License as
7+
* published by the Free Software Foundation, either version 2.1 of the
8+
* License, or (at your option) any later version.
9+
*
10+
* This program 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
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
*/
118
import QtQuick 2.0
219

320
View {

0 commit comments

Comments
 (0)