summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/bind/core_bind.cpp10
-rw-r--r--core/bind/core_bind.h1
-rw-r--r--doc/base/classes.xml10
-rwxr-xr-xtools/Godot.app/Contents/Info.plist4
4 files changed, 23 insertions, 2 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp
index aff047177c..9d380aa33a 100644
--- a/core/bind/core_bind.cpp
+++ b/core/bind/core_bind.cpp
@@ -1325,6 +1325,15 @@ String _File::get_as_text() const {
}
+
+
+String _File::get_md5(const String& p_path) const {
+
+ return FileAccess::get_md5(p_path);
+
+}
+
+
String _File::get_line() const{
ERR_FAIL_COND_V(!f,String());
@@ -1513,6 +1522,7 @@ void _File::_bind_methods() {
ObjectTypeDB::bind_method(_MD("get_buffer","len"),&_File::get_buffer);
ObjectTypeDB::bind_method(_MD("get_line"),&_File::get_line);
ObjectTypeDB::bind_method(_MD("get_as_text"),&_File::get_as_text);
+ ObjectTypeDB::bind_method(_MD("get_md5","path"),&_File::get_md5);
ObjectTypeDB::bind_method(_MD("get_endian_swap"),&_File::get_endian_swap);
ObjectTypeDB::bind_method(_MD("set_endian_swap","enable"),&_File::set_endian_swap);
ObjectTypeDB::bind_method(_MD("get_error:Error"),&_File::get_error);
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h
index 2c43390d3c..64a4e94aec 100644
--- a/core/bind/core_bind.h
+++ b/core/bind/core_bind.h
@@ -368,6 +368,7 @@ public:
DVector<uint8_t> get_buffer(int p_length) const; ///< get an array of bytes
String get_line() const;
String get_as_text() const;
+ String get_md5(const String& p_path) const;
/**< use this for files WRITTEN in _big_ endian machines (ie, amiga/mac)
* It's not about the current CPU type but file formats.
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 1b5e2d85af..d111569a60 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -11475,6 +11475,16 @@ Returns an empty String "" at the end of the list.
<description>
</description>
</method>
+ <method name="get_md5" qualifiers="const">
+ <return type="String">
+ </return>
+ <argument index="0" name="path" type="String">
+ </argument>
+ <description>
+ Returns on success, a md5 String representing the file of the given path.
+ else, empty String "".
+ </description>
+ </method>
<method name="get_endian_swap">
<return type="bool">
</return>
diff --git a/tools/Godot.app/Contents/Info.plist b/tools/Godot.app/Contents/Info.plist
index cb2db17807..e2a6489782 100755
--- a/tools/Godot.app/Contents/Info.plist
+++ b/tools/Godot.app/Contents/Info.plist
@@ -19,11 +19,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
- <string>1.0.0</string>
+ <string>2.0.1</string>
<key>CFBundleSignature</key>
<string>godot</string>
<key>CFBundleVersion</key>
- <string>1.0.0</string>
+ <string>2.0.1</string>
<key>NSHumanReadableCopyright</key>
<string>© 2007-2016 Juan Linietsky, Ariel Manzur</string>
<key>LSMinimumSystemVersion</key>