Skip to content

Commit

Permalink
Merge pull request #42 from Esri/patch-1.0.4
Browse files Browse the repository at this point in the history
Patch 1.0.4: Improvements to app documentation
  • Loading branch information
esreli authored Jul 31, 2020
2 parents 6175ca2 + d792e2d commit 557ba0c
Show file tree
Hide file tree
Showing 7 changed files with 210 additions and 113 deletions.
3 changes: 3 additions & 0 deletions OfflineMapBook/OfflineMapBook.sln
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ Global
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {64E25C57-F46E-4F2C-8DF3-E377EB3E5A4A}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
version = 1.0.4
EndGlobalSection
EndGlobal
19 changes: 4 additions & 15 deletions OfflineMapBook/OfflineMapBook/OfflineMapBook (.NET Core).csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<ApplicationIcon>Resources\ArcGIS_Open_Source_Apps.ico</ApplicationIcon>
<NoWarn>67</NoWarn>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<ReleaseVersion>1.0.4</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -48,43 +49,31 @@
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Esri.ArcGISRuntime.Toolkit">
<Version>100.8.0</Version>
<PackageReference Include="Esri.ArcGISRuntime.Toolkit" Version="100.8.0">
</PackageReference>
<PackageReference Include="Esri.ArcGISRuntime.Toolkit.Preview">
<Version>100.8.0</Version>
<PackageReference Include="Esri.ArcGISRuntime.Toolkit.Preview" Version="100.8.0">
</PackageReference>
<PackageReference Include="Esri.ArcGISRuntime.WPF">
<Version>100.8.0</Version>
<PackageReference Include="Esri.ArcGISRuntime.WPF" Version="100.8.0">
</PackageReference>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\BackTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\BookmarkTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\ClearTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\CloseTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\LeftTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\MapPin.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\RightTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\SearchTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\TocTransparent.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>

Expand Down
2 changes: 2 additions & 0 deletions OfflineMapBook/OfflineMapBook/OfflineMapBook.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
<NoWarn>67</NoWarn>
<BaseIntermediateOutputPath>out\OfflineMapBook\obj</BaseIntermediateOutputPath>
<ReleaseVersion>1.0.4</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down
4 changes: 2 additions & 2 deletions OfflineMapBook/OfflineMapBook/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.3.0")]
[assembly: AssemblyFileVersion("1.0.3.0")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]
37 changes: 32 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

This repo provides an open source app called Offline Mapbook built in WPF with the [ArcGIS Runtime SDK for .NET](https://developers.arcgis.com/net/). With very little customization, you can change the app to use your own data. Screenshots of the app and more detailed documentation can be found on the [Developers Site](https://developers.arcgis.com/example-apps/mapbook-wpf/).

<!-- MDTOC maxdepth:6 firsth1:0 numbering:0 flatten:0 bullets:1 updateOnSave:1 -->

- [Features](#features)
- [Detailed Documentation](#detailed-documentation)
- [Development Instructions](#development-instructions)
- [Fork the repo](#fork-the-repo)
- [Clone the repo](#clone-the-repo)
- [Command line Git](#command-line-git)
- [Configuring a Remote for a Fork](#configuring-a-remote-for-a-fork)
- [Requirements](#requirements)
- [Resources](#resources)
- [Issues](#issues)
- [Contributing](#contributing)
- [MDTOC](#mdtoc)
- [Licensing](#licensing)

<!-- /MDTOC -->
---

## Features

- Mobile map packages
Expand All @@ -13,6 +32,10 @@ This repo provides an open source app called Offline Mapbook built in WPF with t
- Bookmarks
- Portal Authentication using IWA and OAuth2

## Detailed Documentation

Read the [docs](./docs/README.md) for a detailed explanation of the application, including its architecture and how it leverages the ArcGIS platform, as well as how you can begin using the app right away.

## Development Instructions

This Offline Mapbook repo is a Visual Studio 2017 Project that can be directly cloned and imported into Visual Studio 2017 or higher.
Expand Down Expand Up @@ -45,27 +68,27 @@ If there are changes made in the Original repository, you can sync the fork to k
3. ```git checkout master``` to checkout your fork's local master branch.
4. ```git merge upstream/master``` to sync your local master' branch withupstream/master. Note: Your local changes will be retained and your fork's master branch will be in sync with the upstream repository.

### Requirements
## Requirements

- [Visual Studio 2017 or higher](https://www.visualstudio.com/downloads/)
- Visual Studio 2019 is required if you want to use the .NET Core version.
- [.NET Framework 4.6.1 or higher](https://www.microsoft.com/net/download)
- [ArcGIS Runtime SDK for .NET 100.8 or higher](https://developers.arcgis.com/net/)
- [ArcGIS Runtime Toolkit for WPF v100.4 or higher](https://www.esri.com/arcgis-blog/products/developers/uncategorized/toolkit-for-arcgis-runtime-sdk-for-net-now-available/)

### Resources
## Resources

- [Offline Mapbook documentation on Developers Site](https://developers.arcgis.com/example-apps/mapbook-wpf/)
- [ArcGIS Runtime SDK for .NET Developers Site](https://developers.arcgis.com/net/)
- [ArcGIS Developer Blog](http://blogs.esri.com/esri/arcgis/category/developer/)
- [twitter@ArcGISRuntime](https://twitter.com/ArcGISRuntime)
- [twitter@esri](http://twitter.com/esri)

### Issues
## Issues

Find a bug or want to request a new feature enhancement? Let us know by submitting an issue.

### Contributing
## Contributing

Anyone and everyone is welcome to [contribute](https://github.com/Esri/mapbook-wpf/blob/master/CONTRIBUTING.md). We do accept pull requests.

Expand All @@ -74,7 +97,11 @@ Anyone and everyone is welcome to [contribute](https://github.com/Esri/mapbook-w
3. Contribute code
4. Improve documentation

### Licensing
## MDTOC

Generation of this and other documents' table of contents in this repository was performed using the [MDTOC package for Atom](https://atom.io/packages/atom-mdtoc).

## Licensing

Copyright 2017-2019 Esri

Expand Down
7 changes: 6 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release notes

## Release 1.0.4

- Adds doc table of contents to root README.md and docs/index.md
- Renames docs/index.md to [docs/README.md](/docs/README.md)

## Release 1.0.3

- Updated for ArcGIS Runtime 100.8
Expand All @@ -10,4 +15,4 @@

## Release 1.0.1

- Comprehensive [app documentation](/docs/index.md) from the ArcGIS for Developers site
- Comprehensive [app documentation](/docs/README.md) from the ArcGIS for Developers site
Loading

0 comments on commit 557ba0c

Please sign in to comment.