diff options
Diffstat (limited to 'linden/indra')
-rw-r--r-- | linden/indra/llcommon/llsecondlifeurls.cpp | 2 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 13 |
2 files changed, 5 insertions, 10 deletions
diff --git a/linden/indra/llcommon/llsecondlifeurls.cpp b/linden/indra/llcommon/llsecondlifeurls.cpp index ee478fe..b006a6a 100644 --- a/linden/indra/llcommon/llsecondlifeurls.cpp +++ b/linden/indra/llcommon/llsecondlifeurls.cpp | |||
@@ -84,4 +84,4 @@ const std::string SL_KB_URL ( | |||
84 | "http://secondlife.com/knowledgebase/"); | 84 | "http://secondlife.com/knowledgebase/"); |
85 | 85 | ||
86 | const std::string RELEASE_NOTES_BASE_URL ( | 86 | const std::string RELEASE_NOTES_BASE_URL ( |
87 | "http://secondlife.com/app/releasenotes/"); | 87 | "http://imprudenceviewer.org/wiki/Release_Notes/"); |
diff --git a/linden/indra/newview/llfloaterabout.cpp b/linden/indra/newview/llfloaterabout.cpp index 4704c5b..cb4d405 100644 --- a/linden/indra/newview/llfloaterabout.cpp +++ b/linden/indra/newview/llfloaterabout.cpp | |||
@@ -262,17 +262,12 @@ void LLFloaterAbout::show(void*) | |||
262 | static std::string get_viewer_release_notes_url() | 262 | static std::string get_viewer_release_notes_url() |
263 | { | 263 | { |
264 | std::ostringstream version; | 264 | std::ostringstream version; |
265 | version << LL_VERSION_MAJOR << "." | 265 | version << IMP_VERSION_MAJOR << "." |
266 | << LL_VERSION_MINOR << "." | 266 | << IMP_VERSION_MINOR << "." |
267 | << LL_VERSION_PATCH << "." | 267 | << IMP_VERSION_PATCH; |
268 | << LL_VERSION_BUILD; | ||
269 | |||
270 | LLSD query; | ||
271 | query["channel"] = gSavedSettings.getString("VersionChannelName"); | ||
272 | query["version"] = version.str(); | ||
273 | 268 | ||
274 | std::ostringstream url; | 269 | std::ostringstream url; |
275 | url << RELEASE_NOTES_BASE_URL << LLURI::mapToQueryString(query); | 270 | url << RELEASE_NOTES_BASE_URL << version.str(); |
276 | 271 | ||
277 | return url.str(); | 272 | return url.str(); |
278 | } | 273 | } |