Skip to content

Commit

Permalink
Bumped component version, added makefile for ios/android, fixed up De…
Browse files Browse the repository at this point in the history
…tails.md
  • Loading branch information
Redth committed Mar 21, 2014
1 parent 4a687e5 commit 494c6dc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 24 deletions.
22 changes: 0 additions & 22 deletions Details.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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/
4 changes: 2 additions & 2 deletions src/ZXing.Net.Mobile/Properties/AssemblyVersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 494c6dc

Please sign in to comment.