Skip to content

Commit 755abb6

Browse files
committed
return value
1 parent b671f2f commit 755abb6

File tree

20 files changed

+21
-26
lines changed

20 files changed

+21
-26
lines changed

.DS_Store

6 KB
Binary file not shown.

4DPlugin-python.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ static PyObject *fourd_type_to_python_type(PA_Variable status) {
155155
if(fourd_object_to_json(o, &jsonValue)) {
156156
if(jsonValue.isObject())
157157
{
158+
result = PyDict_New();
158159
json_to_python_object(jsonValue, result);
159160
}
160161
}
@@ -179,6 +180,7 @@ static PyObject *fourd_type_to_python_type(PA_Variable status) {
179180
if(fourd_collection_to_json(c, &jsonValue)) {
180181
if(jsonValue.isArray())
181182
{
183+
result = PyList_New(0);
182184
json_to_python_object(jsonValue, result);
183185
}
184186
}

English.lproj/InfoPlist.strings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/* Localized versions of Info.plist keys */CFBundleName = "python";CFBundleShortVersionString = "1.5.0";CFBundleGetInfoString = "python version 1.5.0, Copyright 2021 miyako.";
1+
/* Localized versions of Info.plist keys */CFBundleName = "python";CFBundleShortVersionString = "1.6.0";CFBundleGetInfoString = "python version 1.6.0, Copyright 2021 miyako.";

python.dmg

-137 Bytes
Binary file not shown.

python.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@
329329
);
330330
LIBRARY_STYLE = Bundle;
331331
MACOSX_DEPLOYMENT_TARGET = 10.13;
332-
MARKETING_VERSION = 1.5.0;
332+
MARKETING_VERSION = 1.6.0;
333333
OTHER_CFLAGS = "";
334334
OTHER_LDFLAGS = "";
335335
OTHER_REZFLAGS = "";
@@ -381,7 +381,7 @@
381381
);
382382
LIBRARY_STYLE = Bundle;
383383
MACOSX_DEPLOYMENT_TARGET = 10.13;
384-
MARKETING_VERSION = 1.5.0;
384+
MARKETING_VERSION = 1.6.0;
385385
OTHER_CFLAGS = "";
386386
OTHER_LDFLAGS = "";
387387
OTHER_REZFLAGS = "";
@@ -431,7 +431,7 @@
431431
);
432432
LIBRARY_STYLE = Bundle;
433433
MACOSX_DEPLOYMENT_TARGET = 10.13;
434-
MARKETING_VERSION = 1.5.0;
434+
MARKETING_VERSION = 1.6.0;
435435
OTHER_CFLAGS = "";
436436
OTHER_LDFLAGS = "";
437437
OTHER_REZFLAGS = "";
Binary file not shown.

python.zip

39 Bytes
Binary file not shown.

test/Data/data.4DD

0 Bytes
Binary file not shown.

test/Data/data.journal

220 Bytes
Binary file not shown.

test/Plugins/python.bundle/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.5.0</string>
18+
<string>1.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>4D06</string>
2121
<key>CFBundleSupportedPlatforms</key>

0 commit comments

Comments
 (0)