Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 32d96fb

Browse files
authored
Merge pull request #739 from github-for-unity/releases/0.33
Release 0.33
2 parents 3fb0755 + 8c73509 commit 32d96fb

File tree

66 files changed

+828
-916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+828
-916
lines changed

common/SolutionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
namespace System
3232
{
3333
internal static class AssemblyVersionInformation {
34-
internal const string Version = "0.32.0";
34+
internal const string Version = "0.33.0";
3535
}
3636
}

generate-package.sh

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,33 @@
11
#!/bin/sh -eu
22
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
33
if [ $# -lt 3 ]; then
4-
echo "Usage: generate-package.sh [git|lfs|ghu] [version] [path to file] [host url (optional)] [release notes file (optional)] [message file (optional)]"
4+
echo "Usage: generate-package.sh [git|lfs|ghu] [windows|mac|linux] [version] [path to file] [host url (optional)] [release notes file (optional)] [message file (optional)]"
55
exit 1
66
fi
77

8-
LFS_MD5="d0d59164a4b7b35685502d7c5f747f2f"
9-
GIT_MD5="50570ed932559f294d1a1361801740b9"
10-
MD5=""
11-
128
URL="http://ghfvs-installer.github.com"
13-
if [ $# -ge 4 ]; then
14-
URL=$4
9+
if [ $# -ge 5 ]; then
10+
URL=$5
1511
fi
1612

1713
if [ "$1" == "git" ]; then
18-
MD5=$GIT_MD5
19-
URL="$URL/unity/git"
14+
URL="$URL/unity/git/$2"
2015
fi
2116
if [ "$1" == "lfs" ]; then
22-
MD5=$LFS_MD5
23-
URL="$URL/unity/git"
17+
URL="$URL/unity/git/$2"
2418
fi
2519
if [ "$1" == "ghu" ]; then
26-
MD5=
2720
URL="$URL/unity/releases"
2821
fi
2922

3023
RN=""
3124
MSG=""
32-
if [ $# -ge 5 ]; then
33-
RN="$5"
25+
if [ $# -ge 6 ]; then
26+
RN="$6"
3427
fi
3528

36-
if [ $# -ge 6 ]; then
37-
MSG="$6"
29+
if [ $# -ge 7 ]; then
30+
MSG="$7"
3831
fi
3932

4033
EXEC="mono"
@@ -46,4 +39,4 @@ if [ ! -e "$DIR/build/CommandLine/CommandLine.exe" ]; then
4639
>&2 xbuild /target:CommandLine "$DIR/GitHub.Unity.sln" /verbosity:minimal
4740
fi
4841

49-
"$EXEC""$DIR/build/CommandLine/CommandLine.exe" --gen-package --version "$2" --path "$3" --url "$URL" --md5 "$MD5" --rn "$RN" --msg "$MSG"
42+
"$EXEC""$DIR/build/CommandLine/CommandLine.exe" --gen-package --version "$3" --path "$4" --url "$URL" --rn "$RN" --msg "$MSG"

0 commit comments

Comments
 (0)