Compare commits
5 commits
master
...
VERSION_00
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e0e7dd5a74 | ||
|
|
8d77c10b45 | ||
|
|
e09e185390 | ||
|
|
d445693d7d | ||
|
|
388793dd3f |
11 changed files with 15 additions and 15 deletions
|
|
@ -39,12 +39,12 @@ Java is included in most Linux distributions. Both Sun Java and OpenJDK are supp
|
|||
|
||||
Please download Stendhal from http://arianne.sourceforge.net
|
||||
Then unzip the client zip into a new folder.
|
||||
You can double click on stendhal-0.93.5.jar and the client will run.
|
||||
You can double click on stendhal-0.94.jar and the client will run.
|
||||
|
||||
If you prefer to run from command line, then just execute this command
|
||||
in the stendhal folder:
|
||||
|
||||
java -jar stendhal-0.93.5.jar
|
||||
java -jar stendhal-0.94.jar
|
||||
|
||||
Alternatively you can run it using Java Webstart technology at:
|
||||
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ version_server = http://arianne.sourceforge.net/stendhal.version
|
|||
|
||||
# current version of stendhal
|
||||
version.old = 0.93
|
||||
version = 0.93.5
|
||||
version = 0.94
|
||||
|
||||
# javac options
|
||||
javac.deprecation = true
|
||||
|
|
|
|||
|
|
@ -11,17 +11,17 @@ Changelog
|
|||
*bugfixes*
|
||||
- fixed right clicking on sources, fishing spots, etc.
|
||||
- On Mac cmd+dragging opens the item split window
|
||||
- client error log is now works in webstart client, too
|
||||
- a number of small map bugs
|
||||
- client error log now works in the webstart client, too
|
||||
- a number of small map fixes
|
||||
|
||||
*admin*
|
||||
- added new zone int_abstract_admin_investigation for investigation account issues
|
||||
- added new zone int_abstract_admin_investigation for investigation of account issues
|
||||
- added new zone int_abstract_server_down for operating Stendhal on a read only database copy
|
||||
|
||||
*website*
|
||||
- achievements on character pages now have a mouse over box
|
||||
- nicer layout for chat logs and log selection
|
||||
- improved performance of recent event page
|
||||
- improved performance of Recent Events page
|
||||
- improved performance of pages with many images
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
set STENDHAL_VERSION=0.93.5
|
||||
set STENDHAL_VERSION=0.94
|
||||
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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/sh
|
||||
STENDHAL_VERSION="0.93.5"
|
||||
STENDHAL_VERSION="0.94"
|
||||
|
||||
LOCALCLASSPATH=.:data/script/:data/conf/:stendhal-server-$STENDHAL_VERSION.jar:marauroa.jar:mysql-connector.jar:log4j.jar:commons-lang.jar:h2.jar
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ package games.stendhal.client.update;
|
|||
public class Version {
|
||||
|
||||
/** Version Number. */
|
||||
private static final String VERSION = "0.93.5";
|
||||
private static final String VERSION = "0.94";
|
||||
|
||||
/**
|
||||
* Extract the specified number of parts from a version-string.
|
||||
|
|
|
|||
|
|
@ -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 = "0.93.5";
|
||||
public static final String VERSION = "0.94";
|
||||
|
||||
public static final String PRE_RELEASE_VERSION = null;
|
||||
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@ public class GenerateINI {
|
|||
out.println();
|
||||
out.println("server_typeGame=" + gameName);
|
||||
out.println("server_name=" + gameName + " Marauroa server");
|
||||
out.println("server_version=0.93.5");
|
||||
out.println("server_version=0.94");
|
||||
out.println("server_contact=https://sourceforge.net/tracker/?atid=514826&group_id=66537&func=browse");
|
||||
out.println();
|
||||
out.println("# Extensions configured on the server. Enable at will.");
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ public class ItemAchievementFactory extends AbstractAchievementFactory {
|
|||
Achievement.HARD_BASE_SCORE, true,
|
||||
new PlayerLootedNumberOfItemsCondition(1000000, "money")));
|
||||
itemAchievements.add(createAchievement("item.set.red", "Amazon's Menace", "Loot a complete red equipment set",
|
||||
Achievement.MEDIUM_BASE_SCORE, false,
|
||||
Achievement.MEDIUM_BASE_SCORE, true,
|
||||
new PlayerLootedNumberOfItemsCondition(1, "red armor", "red helmet", "red cloak", "red legs", "red boots", "red shield")));
|
||||
itemAchievements.add(createAchievement("item.set.shadow", "Shadow Dweller", "Loot a complete shadow equipment set",
|
||||
Achievement.MEDIUM_BASE_SCORE, true,
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public class QuestAchievementFactory extends AbstractAchievementFactory {
|
|||
questAchievements.add(createAchievement("quest.special.maze", "Pathfinder", "Finish the maze",
|
||||
Achievement.EASY_BASE_SCORE, true, new QuestStateGreaterThanCondition("maze", 2, 0)));
|
||||
questAchievements.add(createAchievement("quest.deathmatch", "Deathmatch Hero", "Earn 100,000 points in deathmatch",
|
||||
Achievement.MEDIUM_BASE_SCORE, false, new QuestStateGreaterThanCondition("deathmatch_score", 0, 100000)));
|
||||
Achievement.MEDIUM_BASE_SCORE, true, new QuestStateGreaterThanCondition("deathmatch_score", 0, 100000)));
|
||||
|
||||
// Ados Deathmatch
|
||||
// disabled. Currently the wrong index is being checked (it would be index 6)
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ Some of these people are NPC, they will give you tasks to accomplish and hints t
|
|||
</security>
|
||||
<resources>
|
||||
<j2se href="http://java.sun.com/products/autodl/j2se" version="1.5+" /> <!-- max-heap-size="120" -->
|
||||
<jar href="http://arianne.sourceforge.net/jws/stendhal-starter-0.93.5.jar" download="eager" main="true" />
|
||||
<jar href="http://arianne.sourceforge.net/jws/stendhal-starter-0.94.jar" download="eager" main="true" />
|
||||
</resources>
|
||||
<application-desc/>
|
||||
</jnlp>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue