diff --git a/build/jam/OptionalBuildFeatures b/build/jam/OptionalBuildFeatures index 17bf69868d..af9d300f63 100644 --- a/build/jam/OptionalBuildFeatures +++ b/build/jam/OptionalBuildFeatures @@ -421,7 +421,7 @@ if $(HAIKU_BUILD_FEATURE_TAGLIB) { # WebKit -HAIKU_WEBKIT_FILE = webkit-0.1.1-x86-gcc4-2012-07-03.zip ; +HAIKU_WEBKIT_FILE = haikuwebkit-1.1.2-x86-gcc4-2012-07-11.zip ; if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) < 4 { Echo "WebKit support not available on gcc $(HAIKU_GCC_VERSION[1])" ; diff --git a/src/apps/webpositive/BrowserApp.cpp b/src/apps/webpositive/BrowserApp.cpp index 71e2177e42..ce0082a990 100644 --- a/src/apps/webpositive/BrowserApp.cpp +++ b/src/apps/webpositive/BrowserApp.cpp @@ -35,6 +35,7 @@ #include "SettingsWindow.h" #include "svn_revision.h" #include "NetworkCookieJar.h" +#include "WebKitInfo.h" #include "WebPage.h" #include "WebSettings.h" #include "WebView.h" @@ -86,8 +87,13 @@ void BrowserApp::AboutRequested() { BString aboutText("WebPositive\n\nby Ryan Leavengood, Andrea Anzani, " - "Maxime Simon, Michael Lotz, Rene Gollent and Stephan Aßmus"); - aboutText << "\n\nSVN revision: " << kSVNRevision; + "Maxime Simon, Michael Lotz, Rene Gollent, Stephan Aßmus and " + "Alexandre Deckner"); + aboutText << "\n\nWebPositive 1.1"; + aboutText << "\n\nHaikuWebKit " << WebKitInfo::HaikuWebKitVersion(); + aboutText << " (" << WebKitInfo::HaikuWebKitRevision() << ")"; + aboutText << "\nWebKit " << WebKitInfo::WebKitVersion(); + aboutText << " (" << WebKitInfo::WebKitRevision() << ")"; BAlert* alert = new BAlert("About WebPositive", aboutText.String(), "Sweet!");