You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2019/09/12 16:42:52 UTC

[royale-asjs] branch release/0.9.6 updated: flexjs -> royale

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.6
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/release/0.9.6 by this push:
     new 67cf088  flexjs -> royale
67cf088 is described below

commit 67cf088c79102019671d0f1f404f3a553086b437
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Sep 12 09:42:41 2019 -0700

    flexjs -> royale
---
 npm/js-swf/dependencies/FlatUI.js | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/npm/js-swf/dependencies/FlatUI.js b/npm/js-swf/dependencies/FlatUI.js
index 9126f52..2d49668 100644
--- a/npm/js-swf/dependencies/FlatUI.js
+++ b/npm/js-swf/dependencies/FlatUI.js
@@ -34,7 +34,7 @@ var FlatUI = module.exports = Object.create(events.EventEmitter.prototype);
 var flatUIURL = pjson.org_apache_royale.flatui_url;
 var fileNameFlatUI = pjson.org_apache_royale.flatui_file_name;
 var promptText =
-"Apache FlexJS includes an optional component set\n\
+"Apache Royale includes an optional component set\n\
 that uses fonts from designmodo.com.  The font\n\
 files are subject to and governed by the\n\
 Creative Commons Attribution-NonCommercial-NoDerivs 3.0\n\
@@ -88,7 +88,7 @@ function extract()
     var fontsDir = 'frameworks/fonts/';
     try
     {
-        mkdirp(constants.FLEXJS_FOLDER + fontsDir);
+        mkdirp(constants.ROYALE_FOLDER + fontsDir);
     }
     catch(e)
     {
@@ -100,19 +100,19 @@ function extract()
         .on('entry', function (entry) {
             var fileName = entry.path;
             if (fileName === 'Flat-UI-2.2.2/fonts/glyphicons/flat-ui-icons-regular.eot') {
-                entry.pipe(fs.createWriteStream(constants.FLEXJS_FOLDER + fontsDir + 'flat-ui-icons-regular.eot'));
+                entry.pipe(fs.createWriteStream(constants.ROYALE_FOLDER + fontsDir + 'flat-ui-icons-regular.eot'));
             }
             else if (fileName === 'Flat-UI-2.2.2/fonts/glyphicons/flat-ui-icons-regular.ttf') {
-                entry.pipe(fs.createWriteStream(constants.FLEXJS_FOLDER + fontsDir + 'flat-ui-icons-regular.ttf'));
+                entry.pipe(fs.createWriteStream(constants.ROYALE_FOLDER + fontsDir + 'flat-ui-icons-regular.ttf'));
             }
             else if (fileName === 'Flat-UI-2.2.2/fonts/glyphicons/flat-ui-icons-regular.svg') {
-                entry.pipe(fs.createWriteStream(constants.FLEXJS_FOLDER + fontsDir + 'flat-ui-icons-regular.svg'));
+                entry.pipe(fs.createWriteStream(constants.ROYALE_FOLDER + fontsDir + 'flat-ui-icons-regular.svg'));
             }
             else if (fileName === 'Flat-UI-2.2.2/fonts/glyphicons/flat-ui-icons-regular.woff') {
-                entry.pipe(fs.createWriteStream(constants.FLEXJS_FOLDER + fontsDir + 'flat-ui-icons-regular.woff'));
+                entry.pipe(fs.createWriteStream(constants.ROYALE_FOLDER + fontsDir + 'flat-ui-icons-regular.woff'));
             }
             else if (fileName === 'Flat-UI-2.2.2/README.md') {
-                entry.pipe(fs.createWriteStream(constants.FLEXJS_FOLDER + fontsDir + 'README.md'));
+                entry.pipe(fs.createWriteStream(constants.ROYALE_FOLDER + fontsDir + 'README.md'));
             }
             else {
                 entry.autodrain();