Skip to content

Commit

Permalink
Release v0.1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stuerp committed Jul 14, 2024
1 parent d93712a commit 848d4a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ It takes an HTML file that receives playback notifications from foobar2000. The
* [Microsoft Edge WebView2](https://learn.microsoft.com/en-us/deployoffice/webview2-install)
* Tested on Microsoft Windows 10 and later.
* Tested with [Columns UI](https://yuo.be/columns-ui) 2.1.0.
* Tested with WebView2 126.0.2592.87.

## Getting started

Expand Down Expand Up @@ -95,7 +96,7 @@ To create the component first build the x86 configuration and next the x64 confi

## Change Log

v0.1.6.3, 2024-07-12
v0.1.7.0, 2024-07-14

* New: In Private mode can be enabled in the Preferences dialog and is no longer enabled by default (alpha3).
* New:
Expand Down
12 changes: 6 additions & 6 deletions Resources.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

/** $VER: Resources.h (2024.07.10) P. Stuer **/
/** $VER: Resources.h (2024.07.14) P. Stuer **/

#pragma once

Expand All @@ -8,18 +8,18 @@

#define NUM_FILE_MAJOR 0
#define NUM_FILE_MINOR 1
#define NUM_FILE_PATCH 6
#define NUM_FILE_PRERELEASE 3
#define NUM_FILE_PATCH 7
#define NUM_FILE_PRERELEASE 0

#define NUM_PRODUCT_MAJOR 0
#define NUM_PRODUCT_MINOR 1
#define NUM_PRODUCT_PATCH 6
#define NUM_PRODUCT_PRERELEASE 3
#define NUM_PRODUCT_PATCH 7
#define NUM_PRODUCT_PRERELEASE 0

/** Component specific **/

#define STR_COMPONENT_NAME "WebView"
#define STR_COMPONENT_VERSION TOSTRING(NUM_FILE_MAJOR) "." TOSTRING(NUM_FILE_MINOR) "." TOSTRING(NUM_FILE_PATCH) "." TOSTRING(NUM_FILE_PRERELEASE) "-alpha3"
#define STR_COMPONENT_VERSION TOSTRING(NUM_FILE_MAJOR) "." TOSTRING(NUM_FILE_MINOR) "." TOSTRING(NUM_FILE_PATCH) "." TOSTRING(NUM_FILE_PRERELEASE)
#define STR_COMPONENT_BASENAME "foo_uie_webview"
#define STR_COMPONENT_FILENAME STR_COMPONENT_BASENAME ".dll"
#define STR_COMPONENT_COMPANY_NAME ""
Expand Down

0 comments on commit 848d4a2

Please sign in to comment.