diff --git a/Details.md b/Details.md index d451294fb..d5e04c007 100644 --- a/Details.md +++ b/Details.md @@ -2,28 +2,6 @@ ZXing.Net.Mobile is a C#/.NET library based on the open source Barcode Library: GitHub Project: https://github.com/Redth/ZXing.Net.Mobile -### Changes - - v1.4.2 - - WP8: Fixed crash when pressing back while camera initializes - - Android: Added merged workaround from @chrisntr support for Google Glass - - Android: Now using the ***Android Support Library v4*** from the component store - - - v1.4.1 - - iOS: Fixed multiple scanner launches causing Scanning to no longer work - - Android: Fixed rotation on some tablets showing incorrectly - - - v1.4.0 - - iOS: Added iOS7's built in AVCaptureSession MetadataObject barcode scanning as an option - - iOS: Fixed Offset of overlay and preview layers when a non-zero based offset was specified - - iOS: Added code to remove session inputs/outputs to improve performance between scans - - iOS: Front Camera now possible on iOS - - Android: Fixed rotation - - Windows Phone: Added Windows Phone 8 samples and builds - - Windows Phone: Dropped explicit support for WP7x (code is still there, but no binaries shipped) - - Updated ZXing.NET version used - - General performance enhancements and bug fixes - - ### Usage ```csharp buttonScan.Click += (sender, e) => { diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..07b2b7d0f --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +MONOXBUILD=/Library/Frameworks/Mono.framework/Commands/xbuild +MDTOOL=/Applications/Xamarin\ Studio.app/Contents/MacOS/mdtool + +all: compileAll + +android: compileAndroid + +ios: compileiOS + +compileAndroid: + $(MONOXBUILD) /p:Configuration=Release src/ZXing.Net.Mobile.MonoForAndroid.sln + +compileiOS: + $(MDTOOL) -v build -t:Build "-c:Release|iPhone" src/ZXing.Net.Mobile.MonoTouch.sln + +compileAll: compileAndroid compileiOS + +clean: + -rm -rf Build/Release/ diff --git a/src/ZXing.Net.Mobile/Properties/AssemblyVersionInfo.cs b/src/ZXing.Net.Mobile/Properties/AssemblyVersionInfo.cs index 593c5f9d4..a5ed9af98 100644 --- a/src/ZXing.Net.Mobile/Properties/AssemblyVersionInfo.cs +++ b/src/ZXing.Net.Mobile/Properties/AssemblyVersionInfo.cs @@ -12,5 +12,5 @@ // 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("1.4.2.0")] -[assembly: AssemblyFileVersion("1.4.2.0")] +[assembly: AssemblyVersion("1.4.3.0")] +[assembly: AssemblyFileVersion("1.4.3.0")]