Skip to content

Release v1.0.11

Choose a tag to compare

@github-actions github-actions released this 28 Nov 17:52
· 7 commits to main since this release

Edit Sharp 1.0.11

Automated release built from commit 89be5e2

πŸ“¦ Download Options

We provide two editions of Edit Sharp, each available for three platforms (Linux, macOS, Windows):


πŸͺΆ Trimmed AOT Edition (Recommended for most users)

Ultra-lightweight, blazing fast startup, no plugin support

Features:

  • βœ… Native AOT compilation - instant startup
  • βœ… Smallest file size (~5-10MB)
  • βœ… No runtime dependencies
  • βœ… All core editing features
  • ❌ No plugin support
  • ❌ No Command Palette

Downloads:

  • Linux: edit-sharp-linux-x64-trimmed-aot-v1.0.11.tar.gz
  • macOS: edit-sharp-osx-x64-trimmed-aot-v1.0.11.tar.gz
  • Windows: edit-sharp-win-x64-trimmed-aot-v1.0.11.zip

πŸ”Œ Full Edition (For power users & plugin developers)

Feature-complete with Lua & .NET plugin support

Features:

  • βœ… Full Lua plugin support
  • βœ… .NET plugin support
  • βœ… Command Palette (Ctrl+Shift+P)
  • βœ… Extensible with custom commands
  • βœ… All core editing features
  • ⚠️ Larger file size (~20-30MB)
  • ⚠️ Slightly slower startup

Downloads:

  • Linux: edit-sharp-linux-x64-full-v1.0.11.tar.gz
  • macOS: edit-sharp-osx-x64-full-v1.0.11.tar.gz
  • Windows: edit-sharp-win-x64-full-v1.0.11.zip

⚑ Quick Comparison

Feature Trimmed AOT Full Edition
Startup Speed ⚑ Instant πŸš€ Fast
Plugins (Lua) ❌ βœ…
Plugins (.NET) ❌ βœ…
Command Palette ❌ βœ…
Core Editing βœ… βœ…
AOT Compiled βœ… ❌

πŸ€” Which version should I choose?

Choose Trimmed AOT if:

  • βœ… You want the fastest, lightest editor possible
  • βœ… You don't need plugins or extensibility
  • βœ… You value instant startup and minimal resource usage
  • βœ… You just want a solid, simple text editor

Choose Full Edition if:

  • βœ… You want to use or develop plugins
  • βœ… You need the Command Palette for quick actions
  • βœ… You want text transformation, regex, and advanced features
  • βœ… File size and startup time aren't critical

πŸ“– Installation

Linux/macOS:

# Extract (choose your edition and platform)
tar -xzf edit-sharp-*-v1.0.11.tar.gz
chmod +x edit-sharp
./edit-sharp

Windows:

# Extract (choose your edition and platform)
unzip edit-sharp-win-x64-*-v1.0.11.zip
edit-sharp.exe

πŸ”Œ Plugin Development (Full Edition Only)

To add Lua plugins, create a plugins/ folder next to the executable and add .lua files.

Example plugin:

editor.registerCommand(
  "example.hello",
  "Say Hello",
  "Examples",
  function()
    editor.showMessage("Hello", "Hello from plugin!")
  end
)

Press Ctrl+Shift+P and type "hello" to run the command!

Full plugin API documentation: [Coming Soon]