You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2014/04/24 18:06:06 UTC

[34/50] [abbrv] git commit: [flex-falcon] [refs/heads/maven] - fix version strings

fix version strings


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/1b0aa55c
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/1b0aa55c
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/1b0aa55c

Branch: refs/heads/maven
Commit: 1b0aa55c540e5754e938e2682a11315afb10c705
Parents: dca894b
Author: Alex Harui <ah...@apache.org>
Authored: Wed Apr 16 21:16:53 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Apr 16 21:16:53 2014 -0700

----------------------------------------------------------------------
 compiler/build.xml                                       | 2 +-
 compiler/src/org/apache/flex/compiler/clients/COMPC.java | 2 +-
 compiler/src/org/apache/flex/compiler/clients/MXMLC.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/1b0aa55c/compiler/build.xml
----------------------------------------------------------------------
diff --git a/compiler/build.xml b/compiler/build.xml
index 6ead735..2b4d16d 100644
--- a/compiler/build.xml
+++ b/compiler/build.xml
@@ -79,7 +79,7 @@
     <!-- JAR manifest entries -->
     <property name="manifest.sealed" value="false"/>
     <property name="manifest.Implementation-Title" value="Apache Flex Compiler"/>
-    <property name="manifest.Implementation-Version" value="2.0.0"/>
+    <property name="manifest.Implementation-Version" value="0.0.1"/>
     <property name="manifest.Implementation-Vendor" value="Apache Software Foundation"/>
 	
     <property name="compiler.ant.binaries" value="org/apache/flex/compiler/ant/**/*.class"/>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/1b0aa55c/compiler/src/org/apache/flex/compiler/clients/COMPC.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/clients/COMPC.java b/compiler/src/org/apache/flex/compiler/clients/COMPC.java
index 66738c9..988e8d8 100644
--- a/compiler/src/org/apache/flex/compiler/clients/COMPC.java
+++ b/compiler/src/org/apache/flex/compiler/clients/COMPC.java
@@ -110,7 +110,7 @@ public class COMPC extends MXMLC
     protected String getStartMessage()
     {
         // This message should not be localized.
-        String message = "Apache SWC Component Compiler (compc)" + NEWLINE + 
+        String message = "Apache Flex SWC Component Compiler (compc)" + NEWLINE + 
             VersionInfo.buildMessage() + NEWLINE;
         return message;
     }

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/1b0aa55c/compiler/src/org/apache/flex/compiler/clients/MXMLC.java
----------------------------------------------------------------------
diff --git a/compiler/src/org/apache/flex/compiler/clients/MXMLC.java b/compiler/src/org/apache/flex/compiler/clients/MXMLC.java
index f019771..9181c82 100644
--- a/compiler/src/org/apache/flex/compiler/clients/MXMLC.java
+++ b/compiler/src/org/apache/flex/compiler/clients/MXMLC.java
@@ -1028,7 +1028,7 @@ public class MXMLC
     protected String getStartMessage()
     {
         // This message should not be localized.
-        String message = "Apache ActionScript Compiler (mxmlc)" + NEWLINE + 
+        String message = "Apache Flex MXML and ActionScript Compiler (mxmlc)" + NEWLINE + 
             VersionInfo.buildMessage() + NEWLINE;
         return message;
     }