okoetter / SimpleUpdater

A simple updater application for .Net applications that is a good alternative to ClickOnce

Home Page:http://jvance.com/pages/SimpleUpdater.xhtml

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is a fork of SimpleUpdater from jarrettv. Please see http://jvance.com/pages/SimpleUpdater.xhtml

Changes in this fork:

- Application.manifest to not show UAC prompt when running Updater.exe
- removed date and info from manifest
- added changelog to manifest, shown in update dialog
- added processing multiple pending updates from b2k (jarrettv#4)

The new manifest structure looks like this:

<manifests>
  <manifest>
    <version>0.0.3.0</version>
    <download>https://my.example.com/updates/project/project-Update-0.0.3.0.zip</download>
    <changelog>
      This is a great release!

      Changes:

      - new feature a
      - new feature b
      - fixed bug a
      - fixed bug b

      This is really a great release!
    </changelog>
  </manifest>
  <manifest>
    <version>0.0.3.1</version>
    <download>https://my.example.com/updates/project/project-Update-0.0.3.1.zip</download>
    <changelog>
      This is a small bugfix release!

      Changes:

      - fixed bug a
      - fixed bug b
    </changelog>
  </manifest>
</manifests>

About

A simple updater application for .Net applications that is a good alternative to ClickOnce

http://jvance.com/pages/SimpleUpdater.xhtml


Languages

Language:C# 100.0%