This was a short living version... Bugfix release in the works... ^^

svn path=/trunk/RosBE/; revision=2226
This commit is contained in:
Daniel Reimer 2015-08-25 19:28:25 +00:00
parent 1f742cc51d
commit 4c0ab518ab
8 changed files with 18 additions and 12 deletions

View File

@ -53,7 +53,7 @@ $global:BUILD_ENVIRONMENT = "MinGW"
$global:0 = $myInvocation.MyCommand.Definition
$global:_ROSBE_BASEDIR = [System.IO.Path]::GetDirectoryName($0)
$global:_ROSBE_PREFIX = $null
$global:_ROSBE_VERSION = "2.1.2"
$global:_ROSBE_VERSION = "2.1.3"
$global:_ROSBE_ROSSOURCEDIR = "$pwd"
$global:_ROSBE_SHOWTIME = 1
$global:_ROSBE_WRITELOG = 1

View File

@ -1,3 +1,9 @@
*** Aug 25th, 2015 - RosBE 2.1.3 Released
- Fix BISON regression... (Daniel Reimer)
- Fix 7z missing dll... (Daniel Reimer)
- If no MSVC is used, don't try to read the registry key to get the install dir of it. (Daniel Reimer)
- First try to auto detect MSVC if you use params like "vs x86" in a shortcut (Daniel Reimer)
*** Aug 17th, 2015 - RosBE 2.1.2 Released
- Updated WGet to 1.16.3 (Daniel Reimer)
- Updated 7Zip to 15.06 (Daniel Reimer)

View File

@ -1,4 +1,4 @@
ReactOS Build Environment v2.1.2
ReactOS Build Environment v2.1.3
Various parts of the ReactOS Build Environment are under different license's, the license's are as follows.
(The complete text for each license is included in this document excluding Subversion)

Binary file not shown.

Binary file not shown.

View File

@ -75,7 +75,7 @@ if defined _ROSBE_CMAKE_DIFF (
set BUILD_ENVIRONMENT=MinGW
set _ROSBE_BASEDIR=%~dp0
set _ROSBE_BASEDIR=%_ROSBE_BASEDIR:~0,-1%
set _ROSBE_VERSION=2.1.2
set _ROSBE_VERSION=2.1.3
set _ROSBE_ROSSOURCEDIR=%CD%
set _ROSBE_SHOWTIME=1
set _ROSBE_WRITELOG=1

View File

@ -1,5 +1,5 @@
!define PRODUCT_NAME "ReactOS Build Environment Amine Edition"
!define PRODUCT_VERSION "2.1.2"
!define PRODUCT_VERSION "2.1.3"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\RosBE.cmd"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKCU"
@ -17,7 +17,7 @@ ShowUnInstDetails show
;;
;; Add version/product information metadata to the installation file.
;;
VIAddVersionKey /LANG=1033 "FileVersion" "2.1.2.0"
VIAddVersionKey /LANG=1033 "FileVersion" "2.1.3.0"
VIAddVersionKey /LANG=1033 "ProductVersion" "${PRODUCT_VERSION}"
VIAddVersionKey /LANG=1033 "ProductName" "${PRODUCT_NAME}"
VIAddVersionKey /LANG=1033 "Comments" "This installer was written by Peter Ward and Daniel Reimer using Nullsoft Scriptable Install System"
@ -25,7 +25,7 @@ VIAddVersionKey /LANG=1033 "CompanyName" "ReactOS Foundation"
VIAddVersionKey /LANG=1033 "LegalTrademarks" "Copyright © 2015 ReactOS Foundation"
VIAddVersionKey /LANG=1033 "LegalCopyright" "Copyright © 2015 ReactOS Foundation"
VIAddVersionKey /LANG=1033 "FileDescription" "${PRODUCT_NAME} Setup"
VIProductVersion "2.1.2.0"
VIProductVersion "2.1.3.0"
CRCCheck force
SetDatablockOptimize on

View File

@ -62,9 +62,9 @@ getConfigFileCMD()
}
else
{
if ((wcslen(filename) + wcslen(L"\\RosBE\\rosbe-options-2.1.2.cmd")) < MAX_PATH)
if ((wcslen(filename) + wcslen(L"\\RosBE\\rosbe-options-2.1.3.cmd")) < MAX_PATH)
{
wcscat(filename, L"\\RosBE\\rosbe-options-2.1.2.cmd");
wcscat(filename, L"\\RosBE\\rosbe-options-2.1.3.cmd");
}
}
}
@ -80,7 +80,7 @@ getConfigFileCMD()
}
else
{
wcscpy(filename, L"rosbe-options-2.1.2.cmd");
wcscpy(filename, L"rosbe-options-2.1.3.cmd");
}
}
return filename;
@ -110,9 +110,9 @@ getConfigFilePS1()
}
else
{
if ((wcslen(filename) + wcslen(L"\\RosBE\\rosbe-options-2.1.2.ps1")) < MAX_PATH)
if ((wcslen(filename) + wcslen(L"\\RosBE\\rosbe-options-2.1.3.ps1")) < MAX_PATH)
{
wcscat(filename, L"\\RosBE\\rosbe-options-2.1.2.ps1");
wcscat(filename, L"\\RosBE\\rosbe-options-2.1.3.ps1");
}
}
}
@ -128,7 +128,7 @@ getConfigFilePS1()
}
else
{
wcscpy(filename, L"rosbe-options-2.1.2.ps1");
wcscpy(filename, L"rosbe-options-2.1.3.ps1");
}
}
return filename;