mIRC Home    About    Download    Register    News    Help

Active Threads | Unanswered Past 24 hours | Past 48 hours | Past Week | Past Month | Past Year
Latest News Jump to new posts
mIRC 7.83 released Khaled Yesterday at 04:54 PM
Dear mIRC User,

mIRC v7.83 has been released today.

This is a small update that adds features and addresses a number of issues reported by users since the last release. It includes improvements, changes and fixes, including:

Fixed NickServ bug that prevented /nickserv from logging on when connecting.
Fixed IPv6 parser bug that affected /dcc commands and other features.
Fixed listbox text not being displayed correctly with different DPI settings.
Added support for key derivation functions pbkdf2 and argon2 as identifiers.
Added /drawdll command that allows a custom DLL to draw to a picture @window's bitmap.
Added $encode()/$decode() 'y' switch that Punycode-encodes/decodes text.
Added support for internationalized domain names when resolving addresses.
Updated CA root certificates cacert.pem file.

How to upgrade?
mIRC is distributed in an installer that installs mIRC on your computer for you. Simply download and run the installer from the download page on the mIRC website. Follow the instructions the installer gives to you. When upgrading all your old settings and scripts will stay as they were, if you want that. Read the questions the installer asks with care and nothing can go wrong. You will be chatting with the new mIRC in no time. If you get stuck or if you want to find out more about a certain feature, just click on a Help button or browse the Help file and you should find lots of hints to help you out.

Where to download?
As always, the latest version of mIRC can be downloaded from the download page on the mIRC website.

Registering mIRC
As you know, mIRC can be downloaded freely and evaluated for 30 days. If you find that you enjoy using mIRC, it would be great and much appreciated if you registered your copy. This licenses you to use your copy of mIRC and helps to support our continued work on mIRC. You can find out how to register here.

Full list of Fixes, Changes and Additions.
For a more detailed list of recent changes, please see the whatsnew.txt file. You will need to read through the help file to learn more about these changes and their impact. Some changes are obvious, some need getting used to - please take your time to play with them and see how they work. May we invite you to use these forums for all questions you might have? The forums offer great help with everything related to mIRC!

Thanks for using mIRC, have fun on IRC!
0 249 Read More
Bug Reports Jump to new posts
Re: Editbox option 'optional' Khaled Yesterday at 09:51 AM
Thanks for the feedback. The behaviours you describe are how the (optional) feature has always worked across all dialogs. The custom dialogs are simply using the existing functions for this.

I have had to make more changes to the custom dialog optional keyword parser as there was an issue with the order in which it was being parsed in the custom dialog code. At this point, I have decided to remove this feature for now and revert to the 7.82 custom dialog code, as it still needs more testing and will delay the release that was planned this week. I will add it back in a future beta cycle.
8 251 Read More
Developers Jump to new posts
🦀 Mirust: A Safe and Seamless Rust-to-mIRC SDK The_JD Yesterday at 12:44 AM
Mirust is a lightweight SDK designed to simplify the process of exporting Rust functions to mIRC via DLLs. It provides a safe, idiomatic interface for Rust developers while ensuring full compatibility with mIRC’s environment.

Key features:
  • Automatic DLL Lifecycle Management
    - Handles LoadDll and UnloadDll automatically, eliminating boilerplate and setup hassle.
  • Comprehensive LOADINFO Support
    - Adds LOADINFO compatibility for mIRC versions 5.6 through 5.71. All current LOADINFO items are supported across all versions — even those that didn’t originally include them.
  • Robust String Encoding
    - Transparently encodes and decodes both ANSI and Unicode strings into UTF-8 Rust strings, ensuring smooth interoperability.
  • Selective Function Exposure
    - Functions can be annotated with dllcall = false to restrict access exclusively to $dllcall, preventing accidental use via $dll which could lock up mIRC.
  • Memory Safety by Design
    - Mirust enforces safe Rust practices, preventing out-of-bounds memory access and avoiding unsafe pointer manipulation.


https://crates.io/crates/mirust/

Example function
Code
#[mirust_fn]
fn my_command(
    m_wnd: HWND,
    a_wnd: HWND,
    data: String,
    parms: String,
    show: BOOL,
    nopause: BOOL,
) -> mirust::MircResult {

    let command = "echo -st * Message from 🦀 Rust: $1-".to_string();
    let my_string = format!("You sent me: {}", data);

    mirust::MircResult {
        code: 2, // Command
        data: Some(command),
        parms: Some(my_string),
    }
}

Mirust works with mIRC on x86 (32 bit), and is expected to function correctly on x86_64 (64 bit) and ARM64 versions of mIRC - assuming mIRC will use the "C" ABI in the upcoming variants.

@Khaled, is there a full list of lengths for data/parms (I could only find 900 bytes for 5.6, and the rest is unknown until 7.64 when mBytes was introduced)
0 27 Read More
Bug Reports Jump to new posts
mIRC beta Khaled 11/11/25 09:44 AM
There are no betas available for testing at this time. Please download the latest version of mIRC from the mIRC website.
1 448,331 Read More