Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot] 7d34eca3fe
Merge 72fce754ae into 69d0270925 2025-10-04 18:14:34 +02:00
LOOHP 69d0270925 Fixed illegal file name in log files
Fixes #96
2025-10-04 11:08:43 +01:00
LOOHP 38f3c41bf5
Update README.md 2025-09-30 22:26:02 +01:00
dependabot[bot] 72fce754ae
Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.18.0
Bumps org.apache.commons:commons-lang3 from 3.14.0 to 3.18.0.

---
updated-dependencies:
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.18.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-07-12 01:29:53 +00:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Limbo
[![Build Status](http://ci.loohpjames.com/job/Limbo/badge/icon)](http://ci.loohpjames.com/job/Limbo/)
## Standalone Limbo Minecraft Server (Currently 1.21.8)
## Standalone Limbo Minecraft Server (Currently 1.21.9)
https://www.spigotmc.org/resources/82468/
@ -18,7 +18,7 @@ IP: mc.loohpjames.com
```
![Server Banner](https://api.loohpjames.com/serverbanner.png?ip=mc.loohpjames.com&width=918&name=IP:%20mc.loohpjames.com)
***
### Downloads (1.17.1-1.21.8)
### Downloads (1.17.1-1.21.9)
- [Jenkins](http://ci.loohpjames.com/job/Limbo/)
***
### Offical Plugins

View File

@ -229,7 +229,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<version>3.18.0</version>
</dependency>
<dependency>
<groupId>com.github.Querz</groupId>

View File

@ -86,7 +86,7 @@ public class Console implements CommandSender {
protected final PrintStream logs;
public Console(InputStream in, PrintStream out, PrintStream err) throws IOException {
String fileName = new SimpleDateFormat("yyyy'-'MM'-'dd'_'HH'-'mm'-'ss'_'zzz'.log'").format(new Date());
String fileName = new SimpleDateFormat("yyyy'-'MM'-'dd'_'HH'-'mm'-'ss'_'zzz'.log'").format(new Date()).replace(":", "");
File dir = new File("logs");
dir.mkdirs();
File logs = new File(dir, fileName);