Commit d59b845a authored by SergeyLuzyanin's avatar SergeyLuzyanin

Merge remote-tracking branch 'remotes/origin/hotfix/v4.3.1' into feature/fix_select

parents f28bd0db 9367d596
......@@ -4,6 +4,12 @@ GRUNT_FLAGS = --no-color -v
OUTPUT_DIR = deploy
OUTPUT = $(OUTPUT_DIR)
PRODUCT_VERSION ?= 0.0.0
BUILD_NUMBER ?= 0
GRUNT_ENV += PRODUCT_VERSION=$(PRODUCT_VERSION)
GRUNT_ENV += BUILD_NUMBER=$(BUILD_NUMBER)
WEBAPPS_DIR = web-apps
WEBAPPS = $(OUTPUT)/$(WEBAPPS_DIR)
NODE_MODULES = build/node_modules ../web-apps/build/node_modules
......@@ -15,6 +21,8 @@ SDKJS_FILES += word/sdk-all.js
SDKJS_FILES += cell/sdk-all.js
SDKJS_FILES += slide/sdk-all.js
.PHONY: all
all: $(WEBAPPS)
$(WEBAPPS): $(WEBAPPS_FILES)
......@@ -23,7 +31,7 @@ $(WEBAPPS): $(WEBAPPS_FILES)
$(WEBAPPS_FILES): $(NODE_MODULES) $(SDKJS_FILES)
cd ../$(WEBAPPS_DIR)/build && \
$(GRUNT) deploy-$(filter %editor documents,$(subst /, ,$(@D)))-component $(GRUNT_FLAGS)
$(GRUNT_ENV) $(GRUNT) deploy-$(filter %editor documents,$(subst /, ,$(@D)))-component $(GRUNT_FLAGS)
$(NODE_MODULES):
cd $(@D) && \
......@@ -31,7 +39,7 @@ $(NODE_MODULES):
$(SDKJS_FILES): $(NODE_MODULES)
cd build && \
$(GRUNT) build_$(@D) $(GRUNT_FLAGS)
$(GRUNT_ENV) $(GRUNT) build_$(@D) $(GRUNT_FLAGS)
clean:
rm -f $(WEBAPPS_FILES) $(SDKJS_FILES)
......@@ -185,7 +185,7 @@ g_spellCheckLanguages.push(new AscCommon.asc_CLanguage("sv-SE", 0x041d));
//{ "th-TH", 0x041e },
g_spellCheckLanguages.push(new AscCommon.asc_CLanguage("tr-TR", 0x041f));
//{ "ur-PK", 0x0420 },
//{ "id-ID", 0x0421 },
g_spellCheckLanguages.push(new AscCommon.asc_CLanguage("id-ID", 0x0421));
g_spellCheckLanguages.push(new AscCommon.asc_CLanguage("uk-UA", 0x0422));
//{ "be-BY", 0x0423 },
g_spellCheckLanguages.push(new AscCommon.asc_CLanguage("sl-SI", 0x0424));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment