From 0179242f0470a18581199be3fd972049fd4b9437 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 9 Mar 2016 16:31:53 +0530 Subject: [PATCH 1/2] [fix] [hot] setup wizard domain --- erpnext/public/js/setup_wizard.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/erpnext/public/js/setup_wizard.js b/erpnext/public/js/setup_wizard.js index e6b636cc46a..5e16dd89d25 100644 --- a/erpnext/public/js/setup_wizard.js +++ b/erpnext/public/js/setup_wizard.js @@ -24,12 +24,12 @@ function load_erpnext_slides() { placeholder: __('e.g. "XYZ National Bank"'), reqd:1 }, {fieldname:'domain', label: __('Domain'), fieldtype:'Select', options: [ - __("Distribution"), - __("Manufacturing"), - __("Retail"), - __("Services"), - __("Education"), - __("Other") + {"label": __("Distribution"), "value": "Distribution"}, + {"label": __("Manufacturing"), "value": "Manufacturing"}, + {"label": __("Retail"), "value": "Retail"}, + {"label": __("Services"), "value": "Services"}, + {"label": __("Education"), "value": "Education"}, + {"label": __("Other"), "value": "Other"}, ], reqd:1}, {fieldname:'chart_of_accounts', label: __('Chart of Accounts'), options: "", fieldtype: 'Select'}, From a2d03c849fbf315fa48842498b795129b353f008 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 9 Mar 2016 17:04:03 +0600 Subject: [PATCH 2/2] bumped to version 6.25.1 --- erpnext/__version__.py | 2 +- erpnext/hooks.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/__version__.py b/erpnext/__version__.py index 364b48f0f71..476ae58feba 100644 --- a/erpnext/__version__.py +++ b/erpnext/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = '6.25.0' +__version__ = '6.25.1' diff --git a/erpnext/hooks.py b/erpnext/hooks.py index a2e29d5dce7..0f43945238e 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -7,7 +7,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd." app_description = """ERP made simple""" app_icon = "icon-th" app_color = "#e74c3c" -app_version = "6.25.0" +app_version = "6.25.1" app_email = "info@erpnext.com" app_license = "GNU General Public License (v3)" source_link = "https://github.com/frappe/erpnext" diff --git a/setup.py b/setup.py index 2d45cf71cb5..e3f35682aa1 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages from pip.req import parse_requirements -version = "6.25.0" +version = "6.25.1" requirements = parse_requirements("requirements.txt", session="") setup(