Compare commits
4 commits
master
...
VERSION_01
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e3b9c22ff7 | ||
|
|
654452d1a6 | ||
|
|
abd1095523 | ||
|
|
ae89130c9d |
9 changed files with 10 additions and 25 deletions
|
|
@ -85,7 +85,7 @@ version_server = http://arianne.sourceforge.net/stendhal.version
|
|||
|
||||
# current version of stendhal
|
||||
version.old = 1.43
|
||||
version = 1.43.5
|
||||
version = 1.44
|
||||
|
||||
# javac options
|
||||
javac.deprecation = true
|
||||
|
|
|
|||
|
|
@ -806,31 +806,16 @@
|
|||
<fileset dir="${srcjs}">
|
||||
<include name="stendhal.html"/>
|
||||
<include name="stendhal.css"/>
|
||||
<include name="stendhal-compiled.js*"/>
|
||||
<include name="stendhal-compiled.js"/>
|
||||
<include name="favicon.ico"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${build_webclient}/marauroa">
|
||||
<fileset dir="${buildroot}/js"/>
|
||||
</copy>
|
||||
<copy todir="${build_webclient}/stendhal">
|
||||
<fileset dir="${buildroot}/ts"/>
|
||||
</copy>
|
||||
|
||||
<replaceregexp file="${build_webclient}/stendhal.html"
|
||||
match="data-tileset-path="/tileset""
|
||||
replace="data-tileset-path="/data/tileset""
|
||||
byline="false"/>
|
||||
<replaceregexp file="${build_webclient}/stendhal-compiled.js.map"
|
||||
match="build/js/"
|
||||
replace="js/marauroa/"
|
||||
byline="true"
|
||||
flags="g"/>
|
||||
<replaceregexp file="${build_webclient}/stendhal-compiled.js.map"
|
||||
match="build/ts/"
|
||||
replace="js/stendhal/"
|
||||
byline="true"
|
||||
flags="g"/>
|
||||
|
||||
</target> <!-- webclient_build -->
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
site_name: Stendhal 1.43.5 Reference Documentation
|
||||
site_name: Stendhal 1.44 Reference Documentation
|
||||
site_description: A fun, friendly, & free multiplayer online adventure game.
|
||||
copyright: Copyright © 2003-2023 Stendhal
|
||||
site_url: https://stendhalgame.org/
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ Changelog
|
|||
*world*
|
||||
- new achievements:
|
||||
- Fruit Salad: Harvest 3 of all fruit that grow in Faiumoni
|
||||
- Sowing Seeds of Joy: Sow 1000 of each type of sowable flower seed
|
||||
- Sowing Seeds: Sow 1000 of each type of sowable flower seed
|
||||
- Kirla sells copies for her memory pictures
|
||||
- quests now shown in travel log:
|
||||
- Adventure Island
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
set STENDHAL_VERSION=1.43.5
|
||||
set STENDHAL_VERSION=1.44
|
||||
set LOCALCLASSPATH=.;data\script;data\conf;stendhal-server-%STENDHAL_VERSION%.jar;marauroa.jar;mysql-connector.jar;log4j.jar;commons-lang.jar;h2.jar
|
||||
java -Xmx400m -cp "%LOCALCLASSPATH%" games.stendhal.server.StendhalServer -c server.ini -l
|
||||
@pause
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
STENDHAL_VERSION="1.43.5"
|
||||
STENDHAL_VERSION="1.44"
|
||||
|
||||
LOCALCLASSPATH=.:data/script/:data/conf/:stendhal-server-$STENDHAL_VERSION.jar:marauroa.jar:mysql-connector.jar:log4j.jar:commons-lang.jar:h2.jar
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ public class Debug {
|
|||
|
||||
/** version. */
|
||||
// Note: This line is updated by build.xml using a regexp so be sure to adjust it in case you modify this line.
|
||||
public static final String VERSION = "1.43.5";
|
||||
public static final String VERSION = "1.44";
|
||||
|
||||
/** pre release suffix */
|
||||
// Note: This line is updated by build.xml using a regexp so be sure to adjust it in case you modify this line.
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ public class ProductionAchievementFactory extends AbstractAchievementFactory {
|
|||
new PlayerProducedNumberOfItemsCondition(1000, "flour")));
|
||||
|
||||
achievements.add(createAchievement(
|
||||
"production.sow.flowers.all", "Sowing Seeds of Joy",
|
||||
"production.sow.flowers.all", "Sowing Seeds",
|
||||
"Sow 1000 of each type of sowable flower seed",
|
||||
Achievement.MEDIUM_BASE_SCORE, true,
|
||||
new ChatCondition() {
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ public class PaperChase extends AbstractQuest implements TeleportListener {
|
|||
|
||||
private String getFameType() {
|
||||
String questSlot = QuestUtils.evaluateQuestSlotName(QUEST_SLOT);
|
||||
return questSlot.substring(questSlot.length() - 1);
|
||||
return questSlot.substring(questSlot.length() - 2);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue