diff options
-rw-r--r-- | ChangeLog.txt | 8 | ||||
-rw-r--r-- | linden/indra/llcommon/llsecondlifeurls.cpp | 2 | ||||
-rw-r--r-- | linden/indra/newview/llfloaterabout.cpp | 13 |
3 files changed, 13 insertions, 10 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 148f6fb..45cf029 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt | |||
@@ -34,6 +34,14 @@ | |||
34 | Patch by Aleric Inglewood. | 34 | Patch by Aleric Inglewood. |
35 | 35 | ||
36 | 36 | ||
37 | 2008-12-05 McCabe Maxsted <hakushakukun@gmail.com> | ||
38 | |||
39 | * linden/indra/llcommon/llsecondlifeurls.cpp: | ||
40 | Changed Release Notes link to point to Imprudence. | ||
41 | * linden/indra/newview/llfloaterabout.cpp: | ||
42 | Ditto. | ||
43 | |||
44 | |||
37 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 45 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
38 | =- 1.0.0 RC2 -= | 46 | =- 1.0.0 RC2 -= |
39 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- | 47 | =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
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 | } |