Skip to content

Commit

Permalink
change version to 7.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpanderson committed Mar 26, 2017
1 parent f640f89 commit 7436252
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion html/user/gpu_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,12 @@ function show_vendor($vendor, $x) {
}

$d = get_cached_data(86400);
$data = FALSE;
if ($d) {
$data = unserialize($d);
} else {
}

if (!$data) {
$data = get_gpu_lists();
set_cached_data(86400, serialize($data));
}
Expand Down
8 changes: 4 additions & 4 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define BOINC_MINOR_VERSION 7

/* Release part of BOINC version number */
#define BOINC_RELEASE 0
#define BOINC_RELEASE 2

/* Release part of wrapper version number */
#define WRAPPER_RELEASE 26016
Expand All @@ -19,7 +19,7 @@
#define VBOXWRAPPER_RELEASE 26197

/* String representation of BOINC version number */
#define BOINC_VERSION_STRING "7.7.0"
#define BOINC_VERSION_STRING "7.7.2"

/* Package is a pre-release (Alpha/Beta) package */
#define BOINC_PRERELEASE 1
Expand All @@ -35,13 +35,13 @@
#define PACKAGE_NAME "BOINC"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "BOINC 7.7.0"
#define PACKAGE_STRING "BOINC 7.7.2"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "boinc"

/* Define to the version of this package. */
#define PACKAGE_VERSION "7.7.0"
#define PACKAGE_VERSION "7.7.2"

#endif /* #if (defined(_WIN32) || defined(__APPLE__)) */

Expand Down

0 comments on commit 7436252

Please sign in to comment.