• Link to X Link to X Link to X
  • Link to Facebook Link to Facebook Link to Facebook
  • Link to Youtube Link to Youtube Link to Youtube
  • Link to Reddit Link to Reddit Link to Reddit
  • Link to Rss Link to Rss Link to Rss
  • Blog
  • Support
    • FAQ
    • Help (HTML)
    • Manual (PDF)
    • Forums (read-only)
    • Library (GitHub)
    • Update/Resend Registration Keys
    • Contact Us
  • About
    • About Emurasoft
    • Meet the Team
    • Other Products
    • Awards
    • Privacy Policy
    • Go to Emurasoft Customer Center
  • 🌐 English
    • 日本語
    • 한국어
    • Deutsch
    • 简体中文
    • 繁體中文
  • Download
  • Buy
  • Features
  • Menu Menu

EmEditor v15.5.1 released!

October 29, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.5.1.

Updates from v15.5.0 include:

New General Features

  • When launched from the Tray Icon using the New and Paste command, the Start window will not appear any more.
  • While the Start window is displayed, clicking outside of the Start window closes the Start window now.
  • The Output bar tab positions are now adjusted according to the active document tab settings. The font used for the Output bar is also adjusted when the active document is switched.
  • French and Russian resources were updated.

Bug Fixes

  • Fixed the bug where the Quick Launch search history was not saved correctly on the portable version.
  • Fixed the bug in v15.5.0 where the vertical line was not drawn and erased correctly.
  • Fixed the bug in v15.5.0 where the Batch Replace All button might have been disabled in the Batch Replace dialog box.
  • Fixed the bug where the CombineHistory property might not have worked on the Replace All.

Please see EmEditor v15.5 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of October 29, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/10/start_window.png 577 819 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-29 16:50:532015-10-29 16:50:53EmEditor v15.5.1 released!

EmEditor v15.5.0 released!

October 27, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.5.0.

Updates from v15.4.1 include:

New General Features

  • When starting EmEditor without opening files, the new Start window now appears (it can be disabled by settings). The Start window allows you to select previously used workspace (default workspace), recently used files, or a recently used folder by clicking the corresponding item with the mouse button or pressing the UP, DOWN, and Enter keys. The Start window is designed to be lightweight and unobtrusive. When the Start window is opened, the keyboard focus is still in the editor, and entering text or selecting a command will hide the Start window. Also, pressing the DOWN key while a new document is opened brings up the Start window.
  • The new ExecutePlugin method allows you to call plug-in features from within macros. This allows, for example, a snippet feature temporarily even when the Snippets plug-in is not running. See “Examples to call plug-ins from macros” below.
  • In previous versions, CSV separators and horizontal/vertical lines became invisible when selecting text. The new version makes them visible. Currently, there are no related options, but please let us know if you need this behavior optional.
  • CSV modes, headings, and separator positions are now included in workspaces. We might include more options in workspaces. In that case, workspaces saved in the beta version might become useless. Important workspaces are encouraged to save backups before running this beta version.
  • The limit for the filter string length was relaxed to 10,000 characters long.
  • The limit for the header and footer strings in the Split Current Document into Several Files wizard was relaxed to 10,000 characters long.
  • The Extract Columns, Join CSV, and Sort by Multiple Columns dialog boxes now allows you to select multiple items move up and down in the list.
  • By default, 3 macros (“Sum”, “Validate XML”, and “Wrap in HTML/XML tags”) are installed to the Macros sub folder of the install folder. These macros are added to the My Macros list, but can be removed from the My Macros list. One removed from the list, they will not be added to the My Macros list.
  • The Wrap by Window command was added to the context menu displayed when right-clicked in the Output bar.
  • After CTRL + F12 to start splitting an EmEditor window, pressing HOME, END, PAGE UP, or PAGE DOWN moves the splitter position to an edge of the window.

Examples to call plug-ins from macros

Calls the Snippets plug-in, and wraps the selected text with HTML/XML tags.

editor.ExecutePlugin("Snippets.dll", eePluginUserMessage, 0, "<${1:p}>${2:${SelText}}</$1>$0" );

Calls the Projects plug-in, and opens the specified solution file.

editor.ExecutePlugin("Projects.dll", eePluginUserMessage, 0, "E:\\Test\\Test.eesln" );

Calls the Search plug-in, searches the document for the specified string and shows the result list.

editor.ExecutePlugin("Search.dll", eePluginUserMessage, eeFindReplaceCase | eeFindReplaceRegExp, "Test" );

Simply runs the specified plug-in

editor.ExecutePlugin("E:\dir\plugin.dll", eePluginExecuteCommand | eePluginAbsolutePath );

Retrieves the specified plug-in status.

status = editor.ExecutePlugin("E:\dir\plugin.dll", eePluginQueryStatus | eePluginAbsolutePath );

New Options

  • The Customize Start Window button was added to the Window tab of the Customize dialog box, and the Customize Start Window dialog box was added.
  • The Double-click to Select a Cell check box was added to the CSV tab of the Customize dialog box.
  • The Shortcut Key text boxes in the Customize Tray Icon dialog box allow you to enter CTRL + SHIFT and ALT + SHIFT key combinations.
  • The following REG_DWORD values can be set in the HKEY_CURRENT_USER\SOFTWARE\EmSoft\EmEditor v3\Common key to set the width of drop-down list boxes.
    • CWFind: the Find drop-down list box in the Find toolbar. Default: 0xc8 (200)
    • CWReplace: the Replace drop-down list box in the Find toolbar. Default 0xc8 (200)
    • CWFilter: the Filter drop-down list box in the Filter toolbar. Default: 0xc8 (200)
    • CWColumn: the Column drop-down list box in the Filter toolbar. Default: 0x7d (125)
  • The following REG_DWORD values can be set in the HKEY_CURRENT_USER\SOFTWARE\EmSoft\EmEditor v3\Common key to set the maximum length for the file name when the Automatically Name Untitled Document check box is checked in the Save Details dialog box.
    • MaxNameUntitled: the maximum length for the file name including the terminating NULL character. Default: 0x50 (80)

New Commands

  • Start Window
  • Wrap by Window (Output Bar)

Plug-in New Features

  • The Snippets plug-in supports user messages. Even while the plug-in is not running, you can call the plug-in to run a specified snippet string from a macro.
  • The Projects plug-in supports user messages. You can call the plug-in to open a specified solution file from a macro.
  • The Search plug-in supports user messages. You can call the plug-in to search the document for a specified string and show the result list.

Plug-in API New Features

  • The EE_EXEC_PLUGIN message, Editor_ExecPlugin inline function, and EXEC_PLUGIN_INFO structure were added.
  • The EI_GET_COMBINE_HISTORY parameter was added to the EE_INFO message (Editor_Info inline function).
  • The EP_USER_MSG message was added to the Messages to the plug-ins.

Macro New Features

  • The CombineHistory property was added to the Window object.
  • The ExecutePlugin method was added to the Editor object, and the eePluginExecuteCommand, eePluginUserMessage, eePluginQueryStatus, eePluginAbsolutePath flags were added.
  • The LangID property was added to the Editor object.

Bug Fixes

  • Fixed a certain bug related to the cursor position when clicking the right blank portion of the editor.
  • Fixed a certain bug related to HTML/XML corresponding tag highlight when tags are surrounded by double-quotes.
  • Fixed a certain bug related to outlining.
  • Fixed the bug where selecting an item in the Remove button might not have removed the item from the list in the Customize Plug-ins dialog box.

Please see EmEditor v15.5 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of October 27, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/10/start_window.png 577 819 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-27 15:51:432015-10-27 20:25:29EmEditor v15.5.0 released!

EmEditor v15.5.0 beta 1

October 21, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.5.0 beta 1.

Notes: Important workspaces are encouraged to save backups before running this beta version. The workspace format has been changed, and we might include more options in the new workspace format.

Updates from v15.4.1 include:

New General Features

  • When starting EmEditor without opening files, the new Start window now appears (it can be disabled by settings). The Start window allows you to select previously used workspace (default workspace), recently used files, or a recently used folder by clicking the corresponding item with the mouse button or pressing the UP, DOWN, and Enter keys. The Start window is designed to be lightweight and unobtrusive. When the Start window is opened, the keyboard focus is still in the editor, and entering text or selecting a command will hide the Start window. Also, pressing the DOWN key while a new document is opened brings up the Start window.
  • The new ExecutePlugin method allows you to call plug-in features from within macros. This allows, for example, a snippet feature temporarily even when the Snippets plug-in is not running. See “Examples to call plug-ins from macros” below.
  • In previous versions, CSV separators and horizontal/vertical lines became invisible when selecting text. The new version makes them visible. Currently, there are no related options, but please let us know if you need this behavior optional.
  • CSV modes, headings, and separator positions are now included in workspaces. We might include more options in workspaces. In that case, workspaces saved in the beta version might become useless. Important workspaces are encouraged to save backups before running this beta version.
  • The limit for the filter string length was relaxed to 10,000 characters long.
  • The Extract Columns, Join CSV, and Sort by Multiple Columns dialog boxes now allows you to select multiple items move up and down in the list.

Examples to call plug-ins from macros

Calls the Snippets plug-in, and wraps the selected text with HTML/XML tags.

editor.ExecutePlugin("Snippets.dll", eePluginUserMessage, 0, "<${1:p}>${2:${SelText}}$0" );

Calls the Projects plug-in, and opens the specified solution file.

editor.ExecutePlugin("Projects.dll", eePluginUserMessage, 0, "E:\Test\Test.eesln" );

Calls the Search plug-in, searches the document for the specified string and shows the result list.

editor.ExecutePlugin("Search.dll", eePluginUserMessage, eeFindReplaceCase | eeFindReplaceRegExp, "Test" );

Simply runs the specified plug-in

editor.ExecutePlugin("E:dirplugin.dll", eePluginExecuteCommand | eePluginAbsolutePath );

Retrieves the specified plug-in status.

status = editor.ExecutePlugin("E:dirplugin.dll", eePluginQueryStatus | eePluginAbsolutePath );

New Options

  • The Customize Start Window button was added to the Window tab of the Customize dialog box, and the Customize Start Window dialog box was added.
  • The Double-click to Select a Cell check box was added to the CSV tab of the Customize dialog box.

New Commands

  • Start Window

Plug-in New Features

  • The Snippets plug-in supports user messages. Even while the plug-in is not running, you can call the plug-in to run a specified snippet string from a macro.
  • The Projects plug-in supports user messages. You can call the plug-in to open a specified solution file from a macro.
  • The Search plug-in supports user messages. You can call the plug-in to search the document for a specified string and show the result list.

Plug-in API New Features

  • The EE_EXEC_PLUGIN message, Editor_ExecPlugin inline function, and EE_EXEC_PLUGIN structure were added.
  • The EI_GET_COMBINE_HISTORY parameter was added to the EE_INFO message (Editor_Info inline function).

Macro New Features

  • The CombineHistory property was added to the Window object.
  • The ExecutePlugin method was added to the Editor object, and the eePluginExecuteCommand, eePluginUserMessage, eePluginQueryStatus, eePluginAbsolutePath flags were added.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.5.0 beta 1 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/10/start_window.png 577 819 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-21 15:03:222018-04-24 10:14:36EmEditor v15.5.0 beta 1

EmEditor v15.4.1 released!

October 15, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.4.1.

Updates from v15.4.0 include:

Bug Fixes

  • Fixed the bug where the Display tab of configuration properties did not save the changes in colors of the URLs (visited), Mail addresses (visited), and Find in Files hyperlinks (visited).
  • Fixed the bug where the Base64 to Plain Text command could insert additional text after decoding.

Please see EmEditor v15.4 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of October 15, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/10/visited_find_in_files_hyperlinks.png 521 838 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-15 11:25:222015-10-15 11:25:22EmEditor v15.4.1 released!

EmEditor v15.4.0 released!

October 13, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.4.0.

Important: this version fixes the bug of EmEditor v15.2.x and v15.3.x where Undo after case insensitive Replace All was not correct under a certain condition. We strongly recommend anyone who are using older versions of EmEditor to update to this new version.

Updates from v15.3.2 include:

New General Features

  • Greatly improved the speed of the Delete Bookmarked Lines command, and the Compare command while two documents are opened in separate windows (The Delete Bookmarked Lines command was already optimized on v15.3.1).
  • Added the base64 encoding related commands (see New Commands below).

New Options

  • The Sort Fewest to Most Words and Sort Most to Fewest Words radio buttons were added to the Sort by Multiple Columns dialog box.
  • The Always Show 1 Line above/below Cursor check box was added to the Scroll tab of configuration properties.
  • The Marks tab of the Customize dialog box was renamed to Marks/Format, and allows you to set the date/time formats used when you insert time and date.
  • The Apply to All check box was added to the dialog box displayed when invalid characters were contained in a file when opening a file.
  • The Simply Merge (No Keys) check box was added to the Join CSV dialog box.
  • The Remember Visited Links check box was added to the Link tab of configuration properties.
  • The URLs (visited), Mail addresses (visited), and Find in Files hyperlinks (visited) were added to the Specify Part list box in the Display tab of configuration properties.

New Commands

  • Base64 to Plain Text (Current Encoding)
  • Plain Text to Base64 (Current Encoding)
  • Base64 to Plain Text (UTF-8)
  • Plain Text to Base64 (UTF-8)
  • Base64 to Binary File
  • Binary File to Base64
  • Sort Fewest to Most Words
  • Sort Most to Fewest Words
  • Clear Visited Link History

Plug-in New Features

  • View Lines and Pages were added to the query type in the Word Count plug-in.

Plug-in API New Features

  • The EI_GET_PRINT_PAGES parameter was added to the EE_INFO message (Editor_Info inline function).
  • EEID_DECODE_BASE64, EEID_ENCODE_BASE64, EEID_DECODE_BASE64_UTF8, EEID_ENCODE_BASE64_UTF8, EEID_DECODE_BASE64_BINARY, EEID_ENCODE_BASE64_BINARY, EEID_SORT_WORDS_A, EEID_SORT_WORDS_D, and EEID_CLEAR_VISIT_HISTORY commands were added.

Macro New Features

  • The eeJoinSimpleMerge flag was added to the Join method.

Bug Fixes

  • Fixed the bug where the selection is canceled after selecting text and changing the wrap mode.
  • Fixed the bug where printing the selection became disabled even though the selection exists.
  • Fixed the bug where search and replace could crash when a very large file of under 10,000 lines in total (including very long lines) is opened under a certain condition.
  • Fixed the bug of EmEditor v15.2.x and v15.3.x where Undo after case insensitive Replace All was not correct under a certain condition.
  • Fixed the bug where the Toggle Bookmark button on the toolbar did not always toggle the bookmark at the current line.

Please see EmEditor v15.4 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of October 13, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/10/visited_find_in_files_hyperlinks.png 521 838 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-13 12:42:282015-10-13 12:42:28EmEditor v15.4.0 released!

EmEditor v15.4.0 beta 3

October 8, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.4.0 beta 3.

Updates from v15.4.0 beta 2 include:

New Options

  • The Simply Merge (No Keys) check box was added to the Join CSV dialog box.
  • The Remember Visited Links check box was added to the Link tab of configuration properties.
  • The URLs (visited), Mail addresses (visited), and Find in Files hyperlinks (visited) were added to the Specify Part list box in the Display tab of configuration properties.

New Commands

  • Clear Visited Link History

Macro API New Features

  • The eeJoinSimpleMerge flag was added to the Join method.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.4.0 beta 3 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/02/emeditor_icon.gif 32 32 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-08 15:52:382015-10-08 15:59:26EmEditor v15.4.0 beta 3

EmEditor v15.4.0 beta 2

October 6, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.4.0 beta 2.

Updates from v15.4.0 beta 1 include:

New Options

  • The Sort Fewest to Most Words and Sort Most to Fewest Words radio buttons were added to the Sort by Multiple Columns dialog box.
  • The Always Show 1 Line above/below Cursor check box was added to the Scroll tab of configuration properties.
  • The Marks tab of the Customize dialog box was renamed to Marks/Format, and allows you to set the date/time formats used when you insert time and date.
  • The Apply to All check box was added to the dialog box displayed when invalid characters were contained in a file when opening a file.

New Commands

  • Sort Fewest to Most Words
  • Sort Most to Fewest Words

Plug-in New Features

  • View Lines and Pages were added to the query type in the Word Count plug-in.

Plug-in API New Features

  • The EI_GET_PRINT_PAGES parameter was added to the EE_INFO message (Editor_Info inline function).

Bug Fixes

  • Fixed the bug where the selection is canceled after selecting text and changing the wrap mode.
  • Fixed the bug where printing the selection became disabled even though the selection exists.
  • Fixed the bug where search and replace could crash when a very large file of under 10,000 lines in total (including very long lines) is opened under a certain condition.

We would like to find as many bugs as possible before we release the new version. Please try it out now and let us know if you find any bugs.

To download or see changes, please go to the beta forum – EmEditor Professional v15.4.0 beta 2 released!.

Thank you for using EmEditor!

/wp-content/uploads/2015/02/emeditor_icon.gif 32 32 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-10-06 14:45:582015-10-06 14:45:58EmEditor v15.4.0 beta 2

EmEditor v15.3.2 released!

September 29, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.3.2.

Updates from v15.3.1 include:

New General Features

  • Greatly improved the speed of the Replace All when very long lines exist in a very large file.
  • The Extend Maintenance Plan button was added to the dialog box displayed when subscription renewal is approaching, and allows you to renew subscription online.

Bug Fixes

  • Fixed the bug where in the Replace dialog box, selecting the Find string from the history did not automatically select the corresponding Replace with string.
  • Fixed the issue where in the Virtual Space mode, the cursor position is not correct after changing the wrap mode.
  • Fixed the bug where search and replace became 0.5 seconds slower than v15.2.2 under certain condition.
  • Fixed the bug where the Update Checker dialog boxes became English on non-English Windows.

Please see EmEditor v15.3 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of September 28, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/09/multiline.png 497 598 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-09-29 11:46:552015-09-29 11:46:55EmEditor v15.3.2 released!

EmEditor v15.3.1 released!

September 15, 2015/in EmEditor Core/by Yutaka Emura

Today, we are releasing EmEditor v15.3.1.

Updates from v15.3.0 include:

New General Features

  • Greatly improved the speed of the Delete Bookmarked Lines command.

Bug Fixes

  • Fixed the issue where deleting multiple lines from a very large files (such as the Delete Bookmarked Lines command) could cause malfunctions (such as not all the specified lines were deleted).
  • Fixed the issue where the Save Workspace As command from the Tray Icon could display the Save As dialog box twice.
  • Worked aorund to Avoid false alarms by Avast! Anti-Virus software.

Please see EmEditor v15.3 New Features for details.

To update, you can select Check for Updates on the Help, or you can go to the Download page to download the newest version.

In order to reduce the installer size, the Help file is not included in the installer. You can view the Web Help with your browser, or download the separate Help file. If you would like to download the separate local Help file, please go to the Download Help page.

This version is available free if you have a lifetime license or if your maintenance plan is valid as of September 15, 2015. Your registration keys might be found in the Emurasoft Customer Center. The registration key for v15 is the same as the key for v14.

Please also read: Announcing our policy change to rapid development, and introducing a maintenance plan.

Thank you for using EmEditor!

/wp-content/uploads/2015/09/multiline.png 497 598 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-09-15 10:00:422015-09-15 10:00:42EmEditor v15.3.1 released!

If you are using Avast anti-virus software

September 14, 2015/in EmEditor Core/by Yutaka Emura

If you are using Avast anti-virus software, EmEditor install or updates might not work correctly. Please disable Avast anti-virus software temporarily before you install or update EmEditor.

For other issues with install/uninstall, please see our FAQs.

Thank you for using EmEditor!

/wp-content/uploads/2013/11/logo_square.png 120 120 Yutaka Emura /wp-content/uploads/2022/12/logo-minified-margins-1.svg Yutaka Emura2015-09-14 18:07:222015-09-14 18:07:22If you are using Avast anti-virus software
Page 52 of 77«‹5051525354›»

Latest News

  • EmEditor v26.1.1 ReleasedMay 30, 2026 - 12:04 pm
  • Information Security Incident Response Awards
    Emurasoft Receives Excellence Award at the 11th Information Security Incident Response AwardsMay 29, 2026 - 5:56 pm
  • EmEditor v26.1.0 Released — Updated Certificate, Faster Performance and Enhanced AI FeaturesMay 6, 2026 - 10:53 am
  • EmEditor Logo
    EmEditor v26.1 preview releasedMay 4, 2026 - 8:50 am
  • Fraudulent Job Advertisements Misusing Emurasoft’s Name on Social MediaApril 28, 2026 - 11:15 am
  • Domain Changes as Part of Security ImprovementsApril 20, 2026 - 5:08 pm
  • EmEditor v26.0.3 ReleasedFebruary 23, 2026 - 12:07 pm
  • EmEditor v26.0.2 ReleasedFebruary 8, 2026 - 8:18 am

Categories

  • EmEditor Beta (165)
  • EmEditor Core (484)
  • EmEditor Preview (2)
  • General (63)
  • Journal (9)
  • Language Packs (8)
  • Macros (2)
  • Plug-ins (6)
  • Related Software (2)
  • Reviews (29)

Tags

award pricing review v7 v8 v9 v10 v11 v12 v13 v14 v14.9 v15.0 v15.1 v15.2 v15.7 v15.8 v15.9 v16.0 v16.1 v16.3 v16.7 v16.9 v17.0 v17.1 v17.2 v17.6 v17.8 v18.0 v18.3 v18.4 v18.6 v18.7 v18.8 v18.9 v19.2 v19.3 v19.4 v19.6 v19.8 v20.5 v22.2 v25 v26 website

Previous posts

  • May 2026 (4)
  • April 2026 (2)
  • February 2026 (5)
  • January 2026 (3)
  • December 2025 (3)
  • November 2025 (4)
  • September 2025 (1)
  • August 2025 (4)
  • July 2025 (1)
  • June 2025 (5)
  • May 2025 (3)
  • March 2025 (2)
  • January 2025 (2)
  • December 2024 (5)
  • November 2024 (1)
  • October 2024 (3)
  • September 2024 (1)
  • August 2024 (2)
  • July 2024 (1)
  • June 2024 (1)
  • May 2024 (3)
  • April 2024 (1)
  • March 2024 (4)
  • February 2024 (4)
  • January 2024 (2)
  • December 2023 (2)
  • November 2023 (5)
  • September 2023 (2)
  • August 2023 (4)
  • July 2023 (2)
  • June 2023 (1)
  • May 2023 (2)
  • April 2023 (4)
  • March 2023 (6)
  • February 2023 (2)
  • January 2023 (1)
  • December 2022 (5)
  • October 2022 (2)
  • August 2022 (2)
  • June 2022 (4)
  • May 2022 (2)
  • March 2022 (2)
  • February 2022 (4)
  • January 2022 (1)
  • December 2021 (1)
  • November 2021 (2)
  • October 2021 (2)
  • September 2021 (4)
  • August 2021 (3)
  • July 2021 (3)
  • June 2021 (2)
  • May 2021 (4)
  • March 2021 (2)
  • February 2021 (5)
  • January 2021 (4)
  • December 2020 (6)
  • November 2020 (3)
  • October 2020 (3)
  • September 2020 (5)
  • August 2020 (3)
  • July 2020 (4)
  • June 2020 (5)
  • May 2020 (7)
  • April 2020 (4)
  • March 2020 (6)
  • February 2020 (9)
  • December 2019 (7)
  • November 2019 (6)
  • October 2019 (4)
  • September 2019 (7)
  • August 2019 (4)
  • July 2019 (6)
  • June 2019 (6)
  • May 2019 (10)
  • April 2019 (7)
  • March 2019 (14)
  • February 2019 (7)
  • January 2019 (6)
  • December 2018 (4)
  • November 2018 (9)
  • October 2018 (9)
  • September 2018 (9)
  • August 2018 (8)
  • July 2018 (3)
  • June 2018 (11)
  • May 2018 (8)
  • April 2018 (8)
  • March 2018 (1)
  • February 2018 (4)
  • January 2018 (4)
  • December 2017 (4)
  • November 2017 (1)
  • October 2017 (10)
  • September 2017 (3)
  • August 2017 (9)
  • July 2017 (6)
  • June 2017 (6)
  • May 2017 (8)
  • April 2017 (8)
  • March 2017 (3)
  • February 2017 (4)
  • January 2017 (5)
  • November 2016 (5)
  • October 2016 (8)
  • September 2016 (4)
  • August 2016 (2)
  • July 2016 (3)
  • June 2016 (10)
  • May 2016 (8)
  • April 2016 (7)
  • March 2016 (4)
  • February 2016 (5)
  • January 2016 (4)
  • December 2015 (8)
  • November 2015 (6)
  • October 2015 (7)
  • September 2015 (5)
  • August 2015 (5)
  • July 2015 (9)
  • June 2015 (3)
  • May 2015 (7)
  • April 2015 (11)
  • March 2015 (11)
  • February 2015 (9)
  • January 2015 (6)
  • December 2014 (3)
  • November 2014 (1)
  • October 2014 (7)
  • September 2014 (3)
  • August 2014 (4)
  • July 2014 (4)
  • June 2014 (3)
  • May 2014 (2)
  • April 2014 (7)
  • March 2014 (1)
  • February 2014 (3)
  • January 2014 (6)
  • December 2013 (3)
  • November 2013 (3)
  • October 2013 (4)
  • September 2013 (3)
  • August 2013 (1)
  • July 2013 (1)
  • June 2013 (5)
  • February 2013 (3)
  • December 2012 (3)
  • October 2012 (5)
  • September 2012 (4)
  • February 2012 (2)
  • January 2012 (2)
  • December 2011 (1)
  • November 2011 (2)
  • October 2011 (1)
  • September 2011 (2)
  • August 2011 (3)
  • July 2011 (1)
  • June 2011 (1)
  • May 2011 (3)
  • April 2011 (1)
  • March 2011 (2)
  • January 2011 (1)
  • December 2010 (1)
  • November 2010 (1)
  • October 2010 (1)
  • September 2010 (4)
  • August 2010 (1)
  • June 2010 (8)
  • May 2010 (2)
  • April 2010 (1)
  • March 2010 (2)
  • February 2010 (2)
  • January 2010 (5)
  • December 2009 (2)
  • November 2009 (6)
  • October 2009 (3)
  • August 2009 (1)
  • April 2009 (2)
  • March 2009 (1)
  • February 2009 (1)
  • January 2009 (2)
  • December 2008 (2)
  • November 2008 (1)
  • October 2008 (1)
  • August 2008 (1)
  • July 2008 (2)
  • June 2008 (4)
  • May 2008 (2)
  • April 2008 (2)
  • March 2008 (3)
  • February 2008 (1)
  • January 2008 (2)
  • December 2007 (2)
  • April 2007 (1)
  • January 2007 (4)
  • December 2006 (3)
  • November 2006 (1)
  • October 2006 (3)
  • September 2006 (5)

Download and try the “world's fastest text editor” now. (Source: ZDNet)

Download Download Free Download

Copyright © 1995-2026 by Emurasoft, Inc.
Download | Buy | Features | Blog | Support | About | Privacy Policy
日本語 | Deutsch | 한국어 |简体中文 | 繁體中文

Scroll to top Scroll to top Scroll to top