Merge branch 'develop'
This commit is contained in:
commit
4e38260945
5 changed files with 6 additions and 5 deletions
|
|
@ -1,2 +1,2 @@
|
|||
from __future__ import unicode_literals
|
||||
__version__ = "6.5.1"
|
||||
__version__ = "6.5.2"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ to ERPNext.
|
|||
"""
|
||||
|
||||
app_icon = "octicon octicon-circuit-board"
|
||||
app_version = "6.5.1"
|
||||
app_version = "6.5.2"
|
||||
app_color = "orange"
|
||||
github_link = "https://github.com/frappe/frappe"
|
||||
|
||||
|
|
|
|||
|
|
@ -218,7 +218,7 @@ $.extend(frappe.model, {
|
|||
}
|
||||
|
||||
return frappe.call({
|
||||
type: "GET",
|
||||
type: "POST",
|
||||
method: opts.method,
|
||||
args: {
|
||||
"source_name": opts.source_name
|
||||
|
|
|
|||
|
|
@ -125,7 +125,8 @@ frappe.request.call = function(opts) {
|
|||
type: opts.type,
|
||||
dataType: opts.dataType || 'json',
|
||||
async: opts.async,
|
||||
headers: { "X-Frappe-CSRF-Token": frappe.csrf_token }
|
||||
headers: { "X-Frappe-CSRF-Token": frappe.csrf_token },
|
||||
cache: false
|
||||
};
|
||||
|
||||
frappe.last_request = ajax_args.data;
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -1,6 +1,6 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
version = "6.5.1"
|
||||
version = "6.5.2"
|
||||
|
||||
with open("requirements.txt", "r") as f:
|
||||
install_requires = f.readlines()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue