0.2.20 release
authorYoumin Ha <youmin.ha@samsung.com>
Fri, 29 Mar 2013 10:10:18 +0000 (19:10 +0900)
committerYoumin Ha <youmin.ha@samsung.com>
Sat, 30 Mar 2013 13:19:28 +0000 (22:19 +0900)
Change-Id: Ifca1e0f14feb689155e53ed7addef4af42f3286a

Makefile
packaging/web-ui-fw.spec
tools/moduledep.js [changed mode: 0644->0755]

index a0d124a..ec2a1fa 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,7 @@ PKG_VERSION = $(shell cat packaging/web-ui-fw.spec | grep Version: | sed -e "s@V
 THEME_NAME = default
 
 PATH := $(CURDIR)/build-tools/bin:$(PATH)
+NODE = /usr/bin/node
 
 JSLINT_LEVEL = 1
 JSLINT = jslint --sloppy --eqeq --bitwise --forin --nomen --predef jQuery --color --plusplus --browser --jqmspace --regexp --continue
@@ -104,7 +105,7 @@ js: init third_party
        # Building JS files...
        mkdir -p ${JS_LIB_OUTPUT_DIR}; \
        cp -a ${JS_DIR}/* ${JS_LIB_OUTPUT_DIR}/; \
-       /usr/bin/node $(CURDIR)/tools/moduledep.js -c ${JS_LIB_OUTPUT_DIR} > ${JS_LIB_OUTPUT_DIR}/../depData.json; \
+       ${NODE} $(CURDIR)/tools/moduledep.js -c ${JS_LIB_OUTPUT_DIR} > ${JS_LIB_OUTPUT_DIR}/../depData.json; \
        find ${JS_LIB_OUTPUT_DIR} -iname '*.js' | sort | \
        while read JSFILE; do \
                echo " # Building $$JSFILE"; \
@@ -124,9 +125,9 @@ js: init third_party
                        echo "          $$f"; \
                fi; \
        done; \
-       /usr/bin/node $(CURDIR)/tools/moduledep.js -d ${JS_LIB_OUTPUT_DIR} ${JS_LIB_OUTPUT_DIR}/../depData.json >> ${FW_JS}; \
+       ${NODE} $(CURDIR)/tools/moduledep.js -d ${JS_LIB_OUTPUT_DIR} ${JS_LIB_OUTPUT_DIR}/../depData.json >> ${FW_JS}; \
        cp -a ${JS_DIR}/* ${JQM_LIB_PATH}/js/* ${JS_LIB_OUTPUT_DIR}/; \
-       /usr/bin/node $(CURDIR)/tools/moduledep.js -c ${JS_LIB_OUTPUT_DIR} > ${JS_LIB_OUTPUT_DIR}/../depData.json; \
+       ${NODE} $(CURDIR)/tools/moduledep.js -c ${JS_LIB_OUTPUT_DIR} > ${JS_LIB_OUTPUT_DIR}/../depData.json; \
        find ${JS_LIB_OUTPUT_DIR} -iname '*.js' | xargs sed -i -e '/^\/\/>>excludeStart\(.*\);/,/^\/\/>>excludeEnd\(.*\);/d';
 
 widgets: init third_party globalize
index e78b8bd..7e1a8ff 100644 (file)
@@ -1,6 +1,6 @@
 Name:       web-ui-fw
-Version:    0.2.19
-Release:    1
+Version:    0.2.20
+Release:    0
 Summary:    Tizen Web UI Framework Library
 Group:      Development/Other
 License:    MIT
@@ -84,6 +84,36 @@ Summary:    Tizen Web UI Framework Demo Application: tizen winset demo
 ###############################
 %changelog
 
+* Fri Mar 29 2013 Youmin Ha <youmin.ha@samsung.com> 0.2.20
+       - JQM Navigation : remove page min-height
+       - Pagelayout : add refresh to pagelayout
+       - Tokentextarea: Changes 'remove' tests to asyncTest
+       - Popup: input tag alignment has been fixed
+       - Tokentextarea: add/remove events are deprecated.
+       - Contextpopup: Support horizontal list
+       - Select: icon z-index has been deleted
+       - Tizenwinset: ui widget order has been changed
+       - Tool: make web app template disable context menu by default
+       - Tizen-winset: change tips for using listview
+       - Loader: calculate font size with mobile width
+       - Naviframe : fix header's back button position
+       - TizenWinset : move locale info to another file
+
+* Fri Mar 29 2013 Youmin Ha <youmin.ha@samsung.com> 0.2.20
+       - JQM Navigation : remove page min-height
+       - Pagelayout : add refresh to pagelayout
+       - Tokentextarea: Changes 'remove' tests to asyncTest
+       - Popup: input tag alignment has been fixed
+       - Tokentextarea: add/remove events are deprecated.
+       - Contextpopup: Support horizontal list
+       - Select: icon z-index has been deleted
+       - Tizenwinset: ui widget order has been changed
+       - Tool: make web app template disable context menu by default
+       - Tizen-winset: change tips for using listview
+       - Loader: calculate font size with mobile width
+       - Naviframe : fix header's back button position
+       - TizenWinset : move locale info to another file
+
 * Fri Mar 22 2013 Youmin Ha <youmin.ha@samsung.com> 0.2.19
        - Tizen-winset: Support accessibility for tizen-winset
        - Orientation : add orientataionchange to tizen-winset
old mode 100644 (file)
new mode 100755 (executable)