File tree Expand file tree Collapse file tree 3 files changed +14
-10
lines changed
metadata/en-US/changelogs Expand file tree Collapse file tree 3 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,18 @@ packages:
55 dependency: transitive
66 description:
77 name: _fe_analyzer_shared
8- sha256: c209688d9f5a5f26b2fb47a188131a6fb9e876ae9e47af3737c0b4f58a93470d
8+ sha256: "5b7468c326d2f8a4f630056404ca0d291ade42918f4a3c6233618e724f39da8e"
99 url: "https://pub.dev"
1010 source: hosted
11- version: "91 .0.0"
11+ version: "92 .0.0"
1212 analyzer:
1313 dependency: transitive
1414 description:
1515 name: analyzer
16- sha256: f51c8499b35f9b26820cfe914828a6a98a94efd5cc78b37bb7d03debae3a1d08
16+ sha256: "70e4b1ef8003c64793a9e268a551a82869a8a96f39deb73dea28084b0e8bf75e"
1717 url: "https://pub.dev"
1818 source: hosted
19- version: "8.4.1 "
19+ version: "9.0.0 "
2020 ansicolor:
2121 dependency: transitive
2222 description:
@@ -254,10 +254,10 @@ packages:
254254 dependency: "direct dev"
255255 description:
256256 name: dart_mappable_builder
257- sha256: "50154ae053de29b81987604d4d04bb40818bce86574325699f43612eeb0c0b1c"
257+ sha256: ee32e4b3220a14e7bf23180cbd47f0fe642129f546d5a14024f6dc6c7f0c77d0
258258 url: "https://pub.dev"
259259 source: hosted
260- version: "4.6.1 "
260+ version: "4.6.2 "
261261 dart_style:
262262 dependency: transitive
263263 description:
Original file line number Diff line number Diff line change 22 * Add game modes to packs
33 * Add scripts directory
44* Add waypoints
5+ * Add action buttons support
6+ * Add welcome text to server
57* Fix home page header text color in certain themes
8+ * Rebuild event system
69
710Read more here: https://linwood.dev/setonix/0.6.0
Original file line number Diff line number Diff line change @@ -76,14 +76,15 @@ void printUsage(ArgParser argParser) {
7676typedef ServerLoader = FutureOr <void > Function (SetonixServer server);
7777
7878const welcomeText = """
79- ____ __ __
80- / __ \\ __ _____ / /__ / /_____ _
81- / /_/ / // / _ \\ / '_// '_/ _ ` /
82- \\ ___\\ _ \\ _,_ /\\ ___/_/\\ _ \\ /_/\\ _\\\\ _,_/
79+ ____ __ _
80+ / __/ __ / /____ ___ (_)_ __
81+ _ \\ \\ / -_) __ / _ \\ / _ \\ / / \\ \\ /
82+ / ___/ \\ __/ \\ __ /\\ ___/_//_ /_//_ \\ _\\
8383""" ;
8484Future <void > runServer (List <String > arguments, [ServerLoader ? onLoad]) async {
8585 final ArgParser argParser = buildParser ();
8686 try {
87+ print (welcomeText);
8788 final ArgResults results = argParser.parse (arguments);
8889 bool verbose = false , autosave = false , multiWorld = false ;
8990 String ? gameMode;
You can’t perform that action at this time.
0 commit comments