Skip to content

Commit

Permalink
Add VersionCopy.h for release version checking
Browse files Browse the repository at this point in the history
  • Loading branch information
randomascii committed Oct 27, 2019
1 parent 11197e0 commit ad63428
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions UIforETW/VersionCopy.h
@@ -0,0 +1,11 @@
#pragma once

// const float in a header file can lead to duplication of the storage
// but I don't really care in this case. Just don't do it with a header
// that is included hundreds of times.
const float kCurrentVersion = 1.52f;

// Put a "#define VERSION_SUFFIX 'b'" line here to add a minor version
// increment that won't trigger the new-version checks, handy for minor
// releases that I don't want to bother users about.
//#define VERSION_SUFFIX 'b'

0 comments on commit ad63428

Please sign in to comment.