- Timestamp:
- Aug 13, 2012 10:03:00 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r42737 r42789 209 209 # publisher so that RTStrVersionCompare have a chance of comparing 210 210 # prerelease from different publishers correctly. 211 VBOX_VERSION_STRING = $(VBOX_VERSION_STRING_RAW)_ BETA1$(VBOX_BUILD_PUBLISHER)211 VBOX_VERSION_STRING = $(VBOX_VERSION_STRING_RAW)_RC1$(VBOX_BUILD_PUBLISHER) 212 212 213 213 # Force the additions.sh script to get an exact additions build when we're doing the release. 214 214 ifeq ($(int-mod $(VBOX_VERSION_BUILD),2),0) 215 #export VBOX_ADDITIONS_SH_MODE = release216 #export VBOX_DOCUMENTATION_SH_MODE = release217 #export VBOX_EFI_SH_MODE = release218 #export VBOX_EXTPACKS_SH_MODE = release215 export VBOX_ADDITIONS_SH_MODE = release 216 export VBOX_DOCUMENTATION_SH_MODE = release 217 export VBOX_EFI_SH_MODE = release 218 export VBOX_EXTPACKS_SH_MODE = release 219 219 endif 220 220 -
trunk/debian/changelog
r42578 r42789 1 virtualbox-ose (4.2.0~rc1) unstable; urgency=low 2 3 * rebuild Debian package 4 5 -- Oracle Corporation <[email protected]> Mon, 13 Aug 2012 12:00:00 +0200 6 1 7 virtualbox-ose (4.2.0~beta1) unstable; urgency=low 2 8 -
trunk/doc/manual/user_ChangeLogImpl.xml
r42701 r42789 2 2 3 3 <sect1> 4 <title>Version 4.2.0 Beta 1 (2012-08-03)</title>4 <title>Version 4.2.0 Release Candidate 1 (2012-08-13)</title> 5 5 6 6 <para>This is a major update. The following major new features … … 55 55 56 56 <itemizedlist> 57 58 <listitem> 59 <para>Mac OS X hosts: sign application and installer to avoid warnings 60 on Mountain Lion</para> 61 </listitem> 57 62 58 63 <listitem> -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r42788 r42789 5944 5944 5945 5945 { 5946 /* find all attached devices to the appropriate storage controller and detach them all*/ 5947 MediaData::AttachmentList::const_iterator it = mMediaData->mAttachments.begin(); 5948 5949 uint16_t howManyAttach = mMediaData->mAttachments.size(); 5950 5951 for (uint16_t i=0;i<howManyAttach; ++i) 5952 { 5953 MediumAttachment *pAttachTemp = *it++; 5946 /* find all attached devices to the appropriate storage controller and detach them all */ 5947 size_t howManyAttach = mMediaData->mAttachments.size(); 5948 5949 for (size_t i = 0; i < howManyAttach; ++i) 5950 { 5951 MediumAttachment *pAttachTemp = mMediaData->mAttachments.front(); 5954 5952 5955 5953 AutoCaller localAutoCaller(pAttachTemp);
Note:
See TracChangeset
for help on using the changeset viewer.