Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: igrali/portable-exif-lib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ravensorb/portable-exif-lib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 10 commits
  • 52 files changed
  • 3 contributors

Commits on Jun 16, 2014

  1. Copy the full SHA
    e04baff View commit details

Commits on May 12, 2015

  1. Reoganized folder structure

    Added nuget build scripts
    Updated version
    ravensorb committed May 12, 2015
    Copy the full SHA
    cb139fc View commit details
  2. Updated gitignore file

    ravensorb committed May 12, 2015
    Copy the full SHA
    ab5e386 View commit details

Commits on Sep 26, 2016

  1. Updated profile and build process

    Updated to support netstandard10 profile
    Updated build process to use cake-build
    ravensorb committed Sep 26, 2016
    Copy the full SHA
    d5814d5 View commit details

Commits on May 30, 2017

  1. Copy the full SHA
    5f985a8 View commit details
  2. Reset default case formatting to what it was before.

    Joonas Westlin committed May 30, 2017
    Copy the full SHA
    f0f1ee9 View commit details

Commits on Jun 5, 2017

  1. Copy the full SHA
    5e029df View commit details
  2. Merge pull request #1 from juunas11/add-exif-fields

    Added CameraSerialNumber, LensModel and LensSerialNumber EXIF fields.
    ravensorb authored Jun 5, 2017
    Copy the full SHA
    89494d2 View commit details
  3. Copy the full SHA
    58ce069 View commit details
  4. Merge pull request #2 from fabianmodig/master

    Adde DigitalZoomRatio exif tag
    ravensorb authored Jun 5, 2017
    Copy the full SHA
    f56dbe8 View commit details
Showing with 1,557 additions and 33 deletions.
  1. +252 −22 .gitignore
  2. +14 −0 .nuget/NuGet.Config
  3. BIN .tfignore
  4. +349 −0 build.cake
  5. +84 −0 build.osx.sh
  6. +155 −0 build.ps1
  7. +28 −0 nuspec/ExifLib.nuspec
  8. +35 −0 settings.json
  9. +45 −0 source/ExifLib.sln
  10. +50 −0 source/ExifLib.sln.GhostDoc.xml
  11. 0 { → source}/ExifLib/ExifIO.cs
  12. +6 −2 { → source}/ExifLib/ExifIds.cs
  13. +41 −3 { → source}/ExifLib/ExifLib.csproj
  14. 0 { → source}/ExifLib/ExifReader.cs
  15. +5 −1 { → source}/ExifLib/ExifTag.cs
  16. +37 −1 { → source}/ExifLib/JpegInfo.cs
  17. +4 −4 { → source}/ExifLib/Properties/AssemblyInfo.cs
  18. +10 −0 source/ExifLib/project.json
  19. 0 { → source}/WP8TestApp/App.xaml
  20. 0 { → source}/WP8TestApp/App.xaml.cs
  21. BIN { → source}/WP8TestApp/Assets/AlignmentGrid.png
  22. BIN { → source}/WP8TestApp/Assets/ApplicationIcon.png
  23. BIN { → source}/WP8TestApp/Assets/Tiles/FlipCycleTileLarge.png
  24. BIN { → source}/WP8TestApp/Assets/Tiles/FlipCycleTileMedium.png
  25. BIN { → source}/WP8TestApp/Assets/Tiles/FlipCycleTileSmall.png
  26. BIN { → source}/WP8TestApp/Assets/Tiles/IconicTileMediumLarge.png
  27. BIN { → source}/WP8TestApp/Assets/Tiles/IconicTileSmall.png
  28. 0 { → source}/WP8TestApp/LocalizedStrings.cs
  29. 0 { → source}/WP8TestApp/MainPage.xaml
  30. 0 { → source}/WP8TestApp/MainPage.xaml.cs
  31. 0 { → source}/WP8TestApp/Properties/AppManifest.xml
  32. 0 { → source}/WP8TestApp/Properties/AssemblyInfo.cs
  33. 0 { → source}/WP8TestApp/Properties/WMAppManifest.xml
  34. 0 { → source}/WP8TestApp/Resources/AppResources.Designer.cs
  35. 0 { → source}/WP8TestApp/Resources/AppResources.resx
  36. 0 { → source}/WP8TestApp/WP8TestApp.csproj
  37. 0 { → source}/Win8TestApp/App.xaml
  38. 0 { → source}/Win8TestApp/App.xaml.cs
  39. BIN { → source}/Win8TestApp/Assets/Logo.png
  40. BIN { → source}/Win8TestApp/Assets/SmallLogo.png
  41. BIN { → source}/Win8TestApp/Assets/SplashScreen.png
  42. BIN { → source}/Win8TestApp/Assets/StoreLogo.png
  43. 0 { → source}/Win8TestApp/Common/StandardStyles.xaml
  44. 0 { → source}/Win8TestApp/MainPage.xaml
  45. 0 { → source}/Win8TestApp/MainPage.xaml.cs
  46. 0 { → source}/Win8TestApp/Package.appxmanifest
  47. 0 { → source}/Win8TestApp/Properties/AssemblyInfo.cs
  48. 0 { → source}/Win8TestApp/Win8TestApp.csproj
  49. BIN { → source}/Win8TestApp/Win8TestApp_TemporaryKey.pfx
  50. +205 −0 tools/settingsUtils.cake
  51. +236 −0 tools/versionUtils.cake
  52. +1 −0 version.json
274 changes: 252 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,259 @@
Thumbs.db
*.obj
*.exe
*.pdb
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.aps
*.pch
*.vspscc
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
#[Aa]rtifacts/

# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUNIT
*.VisualState.xml
TestResult.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# DNX
project.lock.json
artifacts/

*_i.c
*_p.c
*.ncb
*.suo
*.sln.docstates
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.bak
*.cache
*.ilk
*.tmp
*.tmp_proj
*.log
[Bb]in
[Dd]ebug*/
*.lib
*.sbr
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult*
*.vspscc
*.vssscc
$tf*/
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# JustCode is a .NET coding add-in
.JustCode

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
*.mdf
*.ldf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# JetBrains Rider
.idea/
*.sln.iml

# CAKE
tools/Addins/
tools/Cake/
tools/GitVersion.CommandLine
tools/nuget.exe
14 changes: 14 additions & 0 deletions .nuget/NuGet.Config
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<packageSources>
<add key="nuget.org (v2)" value="https://www.nuget.org/api/v2/" />
<!-- add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" -->
</packageSources>
<disabledPackageSources />
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>
Binary file modified .tfignore
Binary file not shown.
Loading