Skip to content

Commit 45e8144

Browse files
author
livecodeali
committed
[[ Extensions ]] Make widget and library names more sensible
1 parent 4a259f1 commit 45e8144

13 files changed

Lines changed: 15 additions & 15 deletions

File tree

engine/src/widget.mlc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ Example:
836836
put the empty array into tProperties
837837
put mColor into tProperties["currentColor"]
838838

839-
popup widget "com.livecode.extensions.livecode.ColorPicker" at the mouse position with properties tProperties
839+
popup widget "com.livecode.widget.ColorPicker" at the mouse position with properties tProperties
840840
if the result is not nothing then
841841
put the result into mColor
842842
redraw all

extensions/libraries/canvas/canvas.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This simple library gives access to the LiveCode Builder canvas syntax from Live
3434

3535
Tags: Canvas Library
3636
*/
37-
library com.livecode.libraries.example.canvas
37+
library com.livecode.library.canvas
3838

3939
metadata version is "1.0.0"
4040
metadata author is "LiveCode"

extensions/widgets/button/button.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This widget has three properties that can be set: theme; buttonStyle and label.
2121
*/
2222

2323
-- declaring the extension as a widget, followed by the identifier
24-
widget com.livecode.extensions.livecode.button
24+
widget com.livecode.widget.button
2525
--
2626

2727
-- dependancy declarations

extensions/widgets/checkbox/checkbox.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
2020

2121

2222
-- declaring the extension as a widget, followed by the identifier
23-
widget com.livecode.extensions.livecode.checkBox
23+
widget com.livecode.widget.checkBox
2424
--
2525

2626
-- dependancy declarations

extensions/widgets/clock/clock.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ the universal time (UTC).
4646
*/
4747

4848
-- declaring extension as widget, followed by identifier
49-
widget com.livecode.extensions.livecode.clock
49+
widget com.livecode.widget.clock
5050
--
5151

5252
-- dependency declarations

extensions/widgets/graph/graph.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Controls whether the vertical lines on the graph are shown.
9898

9999
*/
100100

101-
widget com.livecode.extensions.livecode.linegraph
101+
widget com.livecode.widget.lineGraph
102102
--
103103

104104
-- dependency declarations

extensions/widgets/header/header.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This widget is a header bar.
2020
*/
2121

2222
-- declaring the extension as a widget, followed by identifier
23-
widget com.livecode.extensions.livecode.header
23+
widget com.livecode.widget.headerBar
2424

2525
-- dependency declarations
2626
use com.livecode.canvas

extensions/widgets/progressbar/progressbar.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
1616
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
1717

1818
-- declaring extension as widget, followed by identifier
19-
widget com.livecode.extensions.livecode.progressBar
19+
widget com.livecode.widget.progressBar
2020
--
2121

2222
-- adding metadata to ensure extension displays correctly in livecode

extensions/widgets/radiobutton/radiobutton.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
1616
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
1717

1818
-- declaring extension as widget, followed by identifier
19-
widget com.livecode.extensions.livecode.radioButton
19+
widget com.livecode.widget.radioButton
2020
--
2121

2222
-- dependancy declarations

extensions/widgets/segmented/segmented.lcb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Sets the selected segments of the control.
140140

141141

142142
-- declaring extension as widget, followed by identifier
143-
widget com.livecode.extensions.livecode.segmented
143+
widget com.livecode.widget.segmented
144144
--
145145

146146
-- dependency declarations

0 commit comments

Comments
 (0)