scriptup 2024.0.4 → 2024.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/attribute_dictionaries.c +1 -1
- data/ext/color.c +3 -3
- data/ext/component_definition.c +2 -2
- data/ext/definition_list.c +1 -1
- data/ext/entity.c +4 -3
- data/ext/material.c +4 -7
- data/ext/utils.h +4 -4
- data/sketchup-sdk-win/binaries/layout/x64/LayOutAPI.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutAPI.lib +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutControllers.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutModel.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutRTF.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/LayOutUtils.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/SketchUpCommonPreferences.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.dll +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.lib +0 -0
- data/sketchup-sdk-win/binaries/layout/x64/pdflib.dll +0 -0
- data/sketchup-sdk-win/headers/LayOutAPI/application/application.h +117 -0
- data/sketchup-sdk-win/headers/LayOutAPI/common.h +22 -0
- data/sketchup-sdk-win/headers/LayOutAPI/geometry/geometry.h +78 -0
- data/sketchup-sdk-win/headers/LayOutAPI/initialize.h +36 -0
- data/sketchup-sdk-win/headers/LayOutAPI/layout.h +49 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/angulardimension.h +468 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/autotextdefinition.h +569 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/autotextdefinitionlist.h +79 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/connectionpoint.h +107 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/defs.h +42 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/dictionary.h +120 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/document.h +864 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/documentexportoptions.h +59 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/ellipse.h +78 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/entity.h +330 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/entityiterator.h +49 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/entitylist.h +114 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/formattedtext.h +397 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/grid.h +251 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/group.h +243 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/image.h +146 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/imagerep.h +109 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/label.h +332 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/layer.h +207 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/layerinstance.h +117 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/layerlist.h +69 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/lineardimension.h +456 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/page.h +261 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/pageinfo.h +372 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/pagelist.h +81 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/path.h +464 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/rectangle.h +240 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/referenceentity.h +120 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/sketchupmodel.h +624 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/skpfilereference.h +94 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/style.h +1080 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/table.h +470 -0
- data/sketchup-sdk-win/headers/LayOutAPI/model/typed_value.h +156 -0
- metadata +50 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scriptup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2024.0.
|
4
|
+
version: 2024.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Noel Warren
|
@@ -189,10 +189,58 @@ files:
|
|
189
189
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/Resources/Info.plist
|
190
190
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/SketchUpAPI
|
191
191
|
- sketchup-sdk-mac/SketchUpAPI.framework/Versions/A/_CodeSignature/CodeResources
|
192
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutAPI.dll
|
193
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutAPI.lib
|
194
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutControllers.dll
|
195
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutModel.dll
|
196
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutRTF.dll
|
197
|
+
- sketchup-sdk-win/binaries/layout/x64/LayOutUtils.dll
|
198
|
+
- sketchup-sdk-win/binaries/layout/x64/SketchUpCommonPreferences.dll
|
199
|
+
- sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.dll
|
200
|
+
- sketchup-sdk-win/binaries/layout/x64/SketchUpViewerAPI.lib
|
201
|
+
- sketchup-sdk-win/binaries/layout/x64/pdflib.dll
|
192
202
|
- sketchup-sdk-win/binaries/sketchup/x64/SketchUpAPI.dll
|
193
203
|
- sketchup-sdk-win/binaries/sketchup/x64/SketchUpAPI.lib
|
194
204
|
- sketchup-sdk-win/binaries/sketchup/x64/SketchUpCommonPreferences.dll
|
195
205
|
- sketchup-sdk-win/binaries/sketchup/x64/sketchup.lib
|
206
|
+
- sketchup-sdk-win/headers/LayOutAPI/application/application.h
|
207
|
+
- sketchup-sdk-win/headers/LayOutAPI/common.h
|
208
|
+
- sketchup-sdk-win/headers/LayOutAPI/geometry/geometry.h
|
209
|
+
- sketchup-sdk-win/headers/LayOutAPI/initialize.h
|
210
|
+
- sketchup-sdk-win/headers/LayOutAPI/layout.h
|
211
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/angulardimension.h
|
212
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/autotextdefinition.h
|
213
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/autotextdefinitionlist.h
|
214
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/connectionpoint.h
|
215
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/defs.h
|
216
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/dictionary.h
|
217
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/document.h
|
218
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/documentexportoptions.h
|
219
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/ellipse.h
|
220
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/entity.h
|
221
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/entityiterator.h
|
222
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/entitylist.h
|
223
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/formattedtext.h
|
224
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/grid.h
|
225
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/group.h
|
226
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/image.h
|
227
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/imagerep.h
|
228
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/label.h
|
229
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/layer.h
|
230
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/layerinstance.h
|
231
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/layerlist.h
|
232
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/lineardimension.h
|
233
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/page.h
|
234
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/pageinfo.h
|
235
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/pagelist.h
|
236
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/path.h
|
237
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/rectangle.h
|
238
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/referenceentity.h
|
239
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/sketchupmodel.h
|
240
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/skpfilereference.h
|
241
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/style.h
|
242
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/table.h
|
243
|
+
- sketchup-sdk-win/headers/LayOutAPI/model/typed_value.h
|
196
244
|
- sketchup-sdk-win/headers/SketchUpAPI/application/application.h
|
197
245
|
- sketchup-sdk-win/headers/SketchUpAPI/application/model.h
|
198
246
|
- sketchup-sdk-win/headers/SketchUpAPI/application/overlay.h
|
@@ -289,7 +337,7 @@ files:
|
|
289
337
|
- sketchup-sdk-win/headers/SketchUpAPI/utils/math_helpers.h
|
290
338
|
homepage: https://git.chaosgroup.com/sketchup/sketchup-ruby-bindings
|
291
339
|
licenses:
|
292
|
-
-
|
340
|
+
- BSD-3-Clause
|
293
341
|
metadata: {}
|
294
342
|
post_install_message:
|
295
343
|
rdoc_options: []
|