Skip to content

Commit

Permalink
BUMP: 4.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
zc0nf committed Mar 2, 2023
1 parent 675b01a commit 931b250
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ Clone the project from https://github.com/drftpd-ng/drftpd.git or Download relea
Git:
- Run `git clone https://github.com/drftpd-ng/drftpd.git`
- Run `cd drftpd`
- Run `git checkout tags/4.0.10`
- Run `git checkout tags/4.0.11`

Release:
- Run `wget https://github.com/drftpd-ng/drftpd/archive/4.0.10.tar.gz`
- Run `tar xvzf 4.0.10.tar.gz`
- Run `cd drftpd-4.0.10`
- Run `wget https://github.com/drftpd-ng/drftpd/archive/4.0.11.tar.gz`
- Run `tar xvzf 4.0.11.tar.gz`
- Run `cd drftpd-4.0.11`

### Compile

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

public class GlobalContext {

public static final String VERSION = "DrFTPD 4.0.11-git";
public static final String VERSION = "DrFTPD 4.0.11";
private static final Logger logger = LogManager.getLogger(GlobalContext.class);
protected static GlobalContext _gctx;
private static final DirectoryHandle root = new DirectoryHandle(VirtualFileSystem.separator);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Displayed as the site tagline on first connection.
# Leave it alone and you will see the version following by link.
login_prompt DrFTPD 4.0.11-git https://github.com/drftpd-ng/drftpd
login_prompt DrFTPD 4.0.11 https://github.com/drftpd-ng/drftpd

###################################################################################################
# #
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class SiteBot implements ReplyConstants, Runnable {
private List<ListenerInterface> _listeners = new ArrayList<>();

// Default settings for the PircBot.
private final String _version = "4.0.11-git";
private final String _version = "4.0.11";
private String _nick = null;
private String _ctcpVersion = "DrFTPD SiteBot ";
private String _finger = "You ought to be arrested for fingering a bot!";
Expand Down

0 comments on commit 931b250

Please sign in to comment.