Skip to content
Merged

doc #14

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Other toolchains should be possible with minimal effort.</p>

![Console Interface](art/Console_Example.png)

![Console Interface](art/Console_Example2.png)

## EdDSA (ed25519) signatures

As the updater is downloading an installer from a remote location, security must be considered.
Expand Down Expand Up @@ -149,6 +151,28 @@ ul.b { list-style-type: square; padding: 0px; margin: 0px; }
</manifest>
```

## Integration

### Building

To build from source directly, you'll need to compile from a git checkout.

```
git clone https://github.com/adamyg/libappupdater
$ cd libappupdater
```

Note: Generally _libappupdater_ would be a submodule within the application repo.

To compile the library, just open within Visual Studio one of bundled AutoUpdater.xxx.sln solutions (atching your corresponding compiler version) and build it. Alternatively run __msbuild__ against the same solution.

```
msbuild AutoUpdater.vs160.sln /property:Configuration=Release
msbuild AutoUpdater.vs160.sln /property:Configuration=Debug
msbuild AutoUpdater.vs160.sln /property:Configuration=Release /p:Platform=x64
msbuild AutoUpdater.vs160.sln /property:Configuration=Debug /p:Platform=x64
```

### Updater application integration

Application integration can be achieved using several methods.
Expand Down
Binary file modified art/Console_Example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added art/Console_Example2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.