Przeglądaj źródła

Merge branch 'develop'

version-14
Pratik Vyas 10 lat temu
rodzic
commit
506e8850f8
4 zmienionych plików z 4 dodań i 4 usunięć
  1. +1
    -1
      frappe/__version__.py
  2. +1
    -1
      frappe/hooks.py
  3. +1
    -1
      frappe/widgets/query_report.py
  4. +1
    -1
      setup.py

+ 1
- 1
frappe/__version__.py Wyświetl plik

@@ -1 +1 @@
__version__ = "4.10.1"
__version__ = "4.10.2"

+ 1
- 1
frappe/hooks.py Wyświetl plik

@@ -3,7 +3,7 @@ app_title = "Frappe Framework"
app_publisher = "Web Notes Technologies Pvt. Ltd." app_publisher = "Web Notes Technologies Pvt. Ltd."
app_description = "Full Stack Web Application Framework in Python" app_description = "Full Stack Web Application Framework in Python"
app_icon = "assets/frappe/images/frappe.svg" app_icon = "assets/frappe/images/frappe.svg"
app_version = "4.10.1"
app_version = "4.10.2"
app_color = "#3498db" app_color = "#3498db"
app_email = "support@frappe.io" app_email = "support@frappe.io"




+ 1
- 1
frappe/widgets/query_report.py Wyświetl plik

@@ -69,7 +69,7 @@ def run(report_name, filters=()):
frappe.msgprint(_("Must have report permission to access this report."), frappe.msgprint(_("Must have report permission to access this report."),
raise_exception=True) raise_exception=True)


columns, results = [], []
columns, result = [], []
if report.report_type=="Query Report": if report.report_type=="Query Report":
if not report.query: if not report.query:
frappe.msgprint(_("Must specify a Query to run"), raise_exception=True) frappe.msgprint(_("Must specify a Query to run"), raise_exception=True)


+ 1
- 1
setup.py Wyświetl plik

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os


version = "4.10.1"
version = "4.10.2"


with open("requirements.txt", "r") as f: with open("requirements.txt", "r") as f:
install_requires = f.readlines() install_requires = f.readlines()


Ładowanie…
Anuluj
Zapisz