Bump version to 2.0.4

Update binary files in dist/ directory
Eliminate compile warning
This commit is contained in:
Robert Adams
2022-05-03 08:48:29 -06:00
parent ce0e4a8b96
commit 1aeb58f95a
10 changed files with 9 additions and 15 deletions
+1 -1
View File
@@ -1 +1 @@
2.0.3
2.0.4
+3 -3
View File
@@ -47,9 +47,9 @@ using OMVR = OpenMetaverse.Rendering;
namespace org.herbal3d.convoar {
// Convert things from OpenSimulator to Instances and Displayables things
public class OarConverter {
private static readonly string _logHeader = "[OarConverter]";
public class OarConverter {
// private static readonly string _logHeader = "[OarConverter]";
private readonly BLogger _log;
private readonly ConvoarParams _params;
private readonly BConverterOS _converter;
+2 -2
View File
@@ -32,8 +32,8 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.0")]
[assembly: AssemblyFileVersion("2.0.3.0")]
[assembly: AssemblyVersion("2.0.4.0")]
[assembly: AssemblyFileVersion("2.0.4.0")]
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
+2 -2
View File
@@ -3,8 +3,8 @@
using System;
namespace org.herbal3d.convoar {
public class VersionInfo {
public static string appVersion = "2.0.3";
public static string longVersion = "2.0.3-20220503-1458362d";
public static string appVersion = "2.0.4";
public static string longVersion = "2.0.4-20220503-ce0e4a8b";
public static string buildDate = "20220503";
}
}
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+1 -7
View File
@@ -20,12 +20,6 @@ ARG CONVOAR_BRANCH=v2
ARG COMMON_ENTITIES_BRANCH=dev
ARG COMMON_UTIL_BRANCH=main
ADD https://api.github.com/repos/herbal3d/BuildVersion/git/refs/heads/main buildversion-git-version.json
RUN cd $PLACE \
&& git clone --depth 1 -b main --single-branch https://github.com/herbal3d/BuildVersion.git \
&& cd BuildVersion \
&& msbuild /p:Configuration=Release
ADD https://api.github.com/repos/opensim/opensim/git/refs/heads/$OPENSIM_BRANCH opensim-git-version.json
RUN cd $PLACE \
&& git clone --depth 1 -b $OPENSIM_BRANCH --single-branch https://github.com/opensim/opensim.git \
@@ -43,7 +37,7 @@ RUN cd $PLACE \
&& cd convoar \
&& mkdir bin \
&& OPENSIMBIN=$PLACE/opensim/bin LIBOMVBIN=$PLACE/opensim/bin ./gatherLibs.sh \
&& ./updateVersion.sh "mono ../BuildVersion/bin/Release/BuildVersion.exe" \
&& ./updateVersion.sh "mono ./BuildVersion/BuildVersion.exe" \
&& mkdir addon-modules \
&& cd addon-modules \
&& git clone --depth 1 -b $COMMON_ENTITIES_BRANCH --single-branch https://github.com/Herbal3d/HerbalCommonEntitiesCS.git \