Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Jordan Irwin
e3b9c22ff7 Shorten achievement title to "Sowing Seeds"
Some checks failed
Java CI / build (push) Has been cancelled
2023-10-05 10:24:53 -07:00
Hendrik Brummermann
654452d1a6 use two digit year for fametype (#388) 2023-10-03 22:13:55 +02:00
Hendrik Brummermann
abd1095523 fixed webclient build 2023-10-02 20:15:14 +02:00
Hendrik Brummermann
ae89130c9d updated version number 2023-10-01 09:14:12 +02:00
9 changed files with 10 additions and 25 deletions

View file

@ -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

View file

@ -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=&quot;/tileset&quot;"
replace="data-tileset-path=&quot;/data/tileset&quot;"
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 -->

View file

@ -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/

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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() {

View file

@ -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);
}