You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/06/23 09:01:19 UTC

[1/2] git commit: [flex-sdk] [refs/heads/release4.13.0] - add time to timestamping. log if using cached version

Repository: flex-sdk
Updated Branches:
  refs/heads/release4.13.0 29f951ff4 -> 2c5a0f34d


add time to timestamping. log if using cached version


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/41f8b22f
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/41f8b22f
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/41f8b22f

Branch: refs/heads/release4.13.0
Commit: 41f8b22f2bd876679950460f1e4701667f46468e
Parents: 29f951f
Author: Alex Harui <ah...@apache.org>
Authored: Sun Jun 22 23:42:36 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Jun 22 23:42:36 2014 -0700

----------------------------------------------------------------------
 installer.properties/en_US.properties | 1 +
 installer.xml                         | 8 +++++---
 2 files changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/41f8b22f/installer.properties/en_US.properties
----------------------------------------------------------------------
diff --git a/installer.properties/en_US.properties b/installer.properties/en_US.properties
index 3075c72..d9d2256 100644
--- a/installer.properties/en_US.properties
+++ b/installer.properties/en_US.properties
@@ -123,3 +123,4 @@ INFO_INSTALLING_CONFIG_FILES=Installing frameworks configuration files configure
 INFO_DOWNLOADING_FILE_FROM=Downloading {0} from: {1}
 INFO_DOWNLOADED=Download complete 
 INFO_VALIDATING_FILE=Validating download:
+INFO_USING_CACHED_FILE=Using file from cache:

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/41f8b22f/installer.xml
----------------------------------------------------------------------
diff --git a/installer.xml b/installer.xml
index e09fd19..dde7595 100644
--- a/installer.xml
+++ b/installer.xml
@@ -153,7 +153,8 @@
 
     <target name="get-data">
 		<tstamp />
-		<property name="xml.properties" value="http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=${DSTAMP}" />
+		<property name="ts" value="${DSTAMP}${TSTAMP}" />
+		<property name="xml.properties" value="http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=${ts}" />
         <get src="${xml.properties}" dest="${basedir}/sdk-installer-config-4.0.xml" />
         <xmlproperty file="${basedir}/sdk-installer-config-4.0.xml" semanticAttributes="true" collapseAttributes="true"/>
         <xmlproperty file="${basedir}/flex-sdk-description.xml" semanticAttributes="true" collapseAttributes="true"/>
@@ -895,13 +896,14 @@
         <get src="${srcDomain}/${srcFolder}/${srcFile}" dest="${dest}"/>
 	</target>
 	<target name="get-with-no-params" depends="check-params" if="not-local-no-params" >
-        <get src="${srcDomain}/${srcFolder}/${srcFile}?ts=${DSTAMP}" dest="${dest}"/>
+        <get src="${srcDomain}/${srcFolder}/${srcFile}?ts=${ts}" dest="${dest}"/>
 	</target>
 	<target name="get-with-params" depends="check-params" if="has-params" >
-        <get src="${srcDomain}/${srcFolder}/${srcFile}&amp;ts=${DSTAMP}" dest="${dest}"/>
+        <get src="${srcDomain}/${srcFolder}/${srcFile}&amp;ts=${ts}" dest="${dest}"/>
 	</target>
 	
     <target name="copy-if-cached" if="found-in-cache">
+		<echo>${INFO_USING_CACHED_FILE} ${downloadCacheFolder}/${srcFolder}/${srcFile}</echo>
         <copy file="${downloadCacheFolder}/${srcFolder}/${srcFile}" tofile="${dest}" overwrite="true" />
     </target>
     


[2/2] git commit: [flex-sdk] [refs/heads/release4.13.0] - add more issues suggested by piotr and fred

Posted by ah...@apache.org.
add more issues suggested by piotr and fred


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/2c5a0f34
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/2c5a0f34
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/2c5a0f34

Branch: refs/heads/release4.13.0
Commit: 2c5a0f34df62ed381d7ec22d98f2231c1b843834
Parents: 41f8b22
Author: Alex Harui <ah...@apache.org>
Authored: Sun Jun 22 23:58:10 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Sun Jun 22 23:58:10 2014 -0700

----------------------------------------------------------------------
 RELEASE_NOTES | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2c5a0f34/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index c2cf683..0c6f8c6 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -51,9 +51,16 @@ Bug Fixes
 JIRA Issue Number and Summary                                                                                        
 -------------------------------------------------------------------------------------------------------------------
 FLEX-34386  percentWidth for GridColumn
+FLEX-34377  Add Chinese translations for all the installers of Flex
 FLEX-34376  TreeItemRenderer can in some situations throw an RTE
 FLEX-34375  FormItem label doesn't show when formItem visible and includeInLayout are set FLEX-34353  Focus not going into Flex application when user press the Shfit + Tab button
+FLEX-34347  propagate breakpoint shouldn't throw an NPE when the location is not found
 FLEX-34346  BP in mxml inline item renderer shouldn't be consider as Ambiguous
+FLEX-34343  Remove the fdbworkers directory before to merge to the develop branch
+FLEX-34342  Break and Clear command should accept paths
+FLEX-34334  FDB should allow to set / removed breakpoint by default in all existed and new created instances of a worker
+FLEX-34333  print #<number> should be evaluated in the context of the current worker
+FLEX-34332  frame should return info in the context of the current worker
 FLEX-34324  Operation class improperly builds rest call parameters
 FLEX-34315  Building framework 4.12.1 manually does not work due to OSMF uppercase renaming
 FLEX-34304  Wrong version of AIR / FP installed
@@ -62,6 +69,12 @@ FLEX-34302  Installer not cleaning up after itself
 FLEX-34301  Installer missing javascript directory
 dynamically
 FLEX-34300  Installer not installing airsdk.xml
+FLEX-34297  FDB set a breakpoint in the wrong file when asked to be set for a file existing in another Worker
+FLEX-34296  Disable and Remove Breakpoint should now respect the Worker logic
+FLEX-34295  info breakpoints should now display the worker ID
+FLEX-34294  Create a base Class for workers making them debuggable via FDB
+FLEX-34292  Can't select another worker while a pending prompt is required
+FLEX-34291  Merge the donated FDB with the current one
 FLEX-34219  Tooltip displays in a wrong tag
 FLEX-34193  Bugs from Spark ColorPicker
 FLEX-34131  ResourceManagerImpl bug fix fails