mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
Changes various urls to point to the new website and fixes some broken forum urls.
This was SVN commit r12980.
This commit is contained in:
+1
-1
@@ -11,7 +11,7 @@ project of this scope.
|
|||||||
|
|
||||||
There are several ways to contact us and find more information:
|
There are several ways to contact us and find more information:
|
||||||
|
|
||||||
Web site: http://wildfiregames.com/0ad/
|
Web site: http://play0ad.com/
|
||||||
|
|
||||||
Forums: http://www.wildfiregames.com/forum/
|
Forums: http://www.wildfiregames.com/forum/
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This is an AI for 0 A.D. (http://wildfiregames.com/0ad/) based on the testBot.
|
This is an AI for 0 A.D. (http://play0ad.com/) based on the testBot.
|
||||||
|
|
||||||
Install by placing the files into the data/mods/public/simulation/ai/qbot folder.
|
Install by placing the files into the data/mods/public/simulation/ai/qbot folder.
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This is an AI for 0 A.D. (http://wildfiregames.com/0ad/) based on the testBot.
|
This is an AI for 0 A.D. (http://play0ad.com/) based on the testBot.
|
||||||
|
|
||||||
Install by placing the files into the data/mods/public/simulation/ai/qbot folder.
|
Install by placing the files into the data/mods/public/simulation/ai/qbot folder.
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -18,7 +18,7 @@
|
|||||||
\setlength{\parskip}{\medskipamount}
|
\setlength{\parskip}{\medskipamount}
|
||||||
|
|
||||||
\title{0 A.D.\@ Pathfinder Design}
|
\title{0 A.D.\@ Pathfinder Design}
|
||||||
\author{Wildfire Games -- \url{http://wildfiregames.com/0ad/}}
|
\author{Wildfire Games -- \url{http://wildfiregames.com/}}
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
\setlength{\parskip}{\medskipamount}
|
\setlength{\parskip}{\medskipamount}
|
||||||
|
|
||||||
\title{Details of Ray/OBB Intersection}
|
\title{Details of Ray/OBB Intersection}
|
||||||
\author{Wildfire Games -- \url{http://wildfiregames.com/0ad/}}
|
\author{Wildfire Games -- \url{http://wildfiregames.com/}}
|
||||||
|
|
||||||
\hypersetup {
|
\hypersetup {
|
||||||
pdfauthor = {Wildfire Games},
|
pdfauthor = {Wildfire Games},
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
/*
|
/*
|
||||||
CConfigDB - Load, access and store configuration variables
|
CConfigDB - Load, access and store configuration variables
|
||||||
|
|
||||||
TDD : http://forums.wildfiregames.com/0ad/index.php?showtopic=1125
|
TDD : http://www.wildfiregames.com/forum/index.php?showtopic=1125
|
||||||
OVERVIEW:
|
OVERVIEW:
|
||||||
|
|
||||||
JavaScript:
|
JavaScript:
|
||||||
|
|||||||
+1
-1
@@ -33,7 +33,7 @@ will exist, and it's up to the system to figure out which one acquired.
|
|||||||
|
|
||||||
--More Info--
|
--More Info--
|
||||||
|
|
||||||
http://forums.wildfiregames.com/0ad/index.php?showtopic=134
|
http://www.wildfiregames.com/forum/index.php?showtopic=134
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ public:
|
|||||||
// Set the UA string
|
// Set the UA string
|
||||||
std::string ua = "User-Agent: 0ad ";
|
std::string ua = "User-Agent: 0ad ";
|
||||||
ua += curl_version();
|
ua += curl_version();
|
||||||
ua += " (http://wildfiregames.com/0ad/)";
|
ua += " (http://play0ad.com/)";
|
||||||
m_Headers = curl_slist_append(m_Headers, ua.c_str());
|
m_Headers = curl_slist_append(m_Headers, ua.c_str());
|
||||||
// Override the default application/x-www-form-urlencoded type since we're not using that type
|
// Override the default application/x-www-form-urlencoded type since we're not using that type
|
||||||
m_Headers = curl_slist_append(m_Headers, "Content-Type: application/octet-stream");
|
m_Headers = curl_slist_append(m_Headers, "Content-Type: application/octet-stream");
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ sub generate_feed
|
|||||||
|
|
||||||
my $feed = new XML::Atom::SimpleFeed(
|
my $feed = new XML::Atom::SimpleFeed(
|
||||||
title => "0 A.D. Revision Log",
|
title => "0 A.D. Revision Log",
|
||||||
link => "http://www.wildfiregames.com/0ad/",
|
link => "http://play0ad.com/",
|
||||||
link => { rel => 'self', href => $feed_url },
|
link => { rel => 'self', href => $feed_url },
|
||||||
id => "urn:uuid:" . $uid_gen->create_from_name_str('WFG SVN feed', 'feed'),
|
id => "urn:uuid:" . $uid_gen->create_from_name_str('WFG SVN feed', 'feed'),
|
||||||
);
|
);
|
||||||
@@ -202,7 +202,7 @@ sub generate_feed
|
|||||||
content => $msg->msg,
|
content => $msg->msg,
|
||||||
published => $date,
|
published => $date,
|
||||||
updated => $date,
|
updated => $date,
|
||||||
link => "http://www.wildfiregames.com/0ad/",
|
link => "http://play0ad.com/",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Vendored
+2
-2
@@ -97,7 +97,7 @@ Section "!Game and data files" GameSection
|
|||||||
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "InstallLocation" "$\"$INSTDIR$\""
|
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "InstallLocation" "$\"$INSTDIR$\""
|
||||||
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "UninstallString" "$\"$INSTDIR\Uninstall.exe$\""
|
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "UninstallString" "$\"$INSTDIR\Uninstall.exe$\""
|
||||||
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "QuietUninstallString" "$\"$INSTDIR\Uninstall.exe$\" /S"
|
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "QuietUninstallString" "$\"$INSTDIR\Uninstall.exe$\" /S"
|
||||||
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "URLInfoAbout" "http://wildfiregames.com/0ad"
|
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "URLInfoAbout" "http://play0ad.com"
|
||||||
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "NoModify" 1
|
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "NoModify" 1
|
||||||
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "NoRepair" 1
|
WriteRegDWORD SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\0 A.D." "NoRepair" 1
|
||||||
|
|
||||||
@@ -109,7 +109,7 @@ Section "!Game and data files" GameSection
|
|||||||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Map editor.lnk" "$INSTDIR\binaries\system\pyrogenesis.exe" "-editor" "$INSTDIR\binaries\data\tools\atlas\icons\ScenarioEditor.ico"
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Map editor.lnk" "$INSTDIR\binaries\system\pyrogenesis.exe" "-editor" "$INSTDIR\binaries\data\tools\atlas\icons\ScenarioEditor.ico"
|
||||||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Open logs folder.lnk" "$INSTDIR\OpenLogsFolder.bat"
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Open logs folder.lnk" "$INSTDIR\OpenLogsFolder.bat"
|
||||||
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
||||||
WriteINIStr "$SMPROGRAMS\$StartMenuFolder\Web site.url" "InternetShortcut" "URL" "http://wildfiregames.com/0ad/"
|
WriteINIStr "$SMPROGRAMS\$StartMenuFolder\Web site.url" "InternetShortcut" "URL" "http://play0ad.com/"
|
||||||
|
|
||||||
!insertmacro MUI_STARTMENU_WRITE_END
|
!insertmacro MUI_STARTMENU_WRITE_END
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<h1>Entity component documentation</h1>
|
<h1>Entity component documentation</h1>
|
||||||
<p>
|
<p>
|
||||||
In <a href="http://www.wildfiregames.com/0ad/">0 A.D.</a>,
|
In <a href="http://play0ad.com/">0 A.D.</a>,
|
||||||
entities (units and buildings and other world objects)
|
entities (units and buildings and other world objects)
|
||||||
consist of a collection of components, each of which determines
|
consist of a collection of components, each of which determines
|
||||||
part of the entity's behaviour.
|
part of the entity's behaviour.
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ body {
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<p>This site collects opt-in automatic feedback from players of <a href="http://wildfiregames.com/0ad/">0 A.D.</a>
|
<p>This site collects opt-in automatic feedback from players of <a href="http://play0ad.com/">0 A.D.</a>
|
||||||
|
|
||||||
<p>Published data:
|
<p>Published data:
|
||||||
<a href="{% url userreport.views.report_opengl_index %}">OpenGL capabilities</a>.
|
<a href="{% url userreport.views.report_opengl_index %}">OpenGL capabilities</a>.
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ CPU capabilities
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p>Based on data submitted by players of <a href="http://wildfiregames.com/0ad/">0 A.D.</a></p>
|
<p>Based on data submitted by players of <a href="http://play0ad.com/">0 A.D.</a></p>
|
||||||
|
|
||||||
<p>See the <a href="{% url userreport.views.index %}">index page</a> for more stuff.</p>
|
<p>See the <a href="{% url userreport.views.index %}">index page</a> for more stuff.</p>
|
||||||
|
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ function sort_by_name(ul)
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<p>Based on data submitted by players of <a href="http://wildfiregames.com/0ad/">0 A.D.</a>
|
<p>Based on data submitted by players of <a href="http://play0ad.com/">0 A.D.</a>
|
||||||
See the <a href="{% url userreport.views.index %}">index page</a> for more stuff.
|
See the <a href="{% url userreport.views.index %}">index page</a> for more stuff.
|
||||||
Contact <a href="mailto:excors@gmail.com">Philip Taylor</a> for questions.</p>
|
Contact <a href="mailto:excors@gmail.com">Philip Taylor</a> for questions.</p>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user