From 51eb2ce2302c9aa9a6a22667d9a30474782f595a Mon Sep 17 00:00:00 2001 From: thinktankmachine Date: Thu, 7 Aug 2025 10:05:32 +1000 Subject: [PATCH] Update all documentation to Cursor 1.4.2 --- COMPREHENSIVE_CURSOR_FIX.md | 8 ++++---- QUICKSTART.md | 4 ++-- README.md | 2 +- cursor-fix-solution.md | 6 +++--- testing-plan.md | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/COMPREHENSIVE_CURSOR_FIX.md b/COMPREHENSIVE_CURSOR_FIX.md index b7a02c6..93efc5c 100644 --- a/COMPREHENSIVE_CURSOR_FIX.md +++ b/COMPREHENSIVE_CURSOR_FIX.md @@ -2,7 +2,7 @@ ## Problem Summary -When using Cursor 1.3.9 as an AppImage in a NixOS flake, users encounter errors related to native modules not being found: +When using Cursor 1.4.2 as an AppImage in a NixOS flake, users encounter errors related to native modules not being found: ``` Error: Cannot find module './build/Debug/keymapping' @@ -36,7 +36,7 @@ Here's the complete updated `cursorAppImage` section for your `home.nix`: ```nix let - # Cursor 1.3.9 AppImage wrapper with enhanced compatibility and update handling + # Cursor 1.4.2 AppImage wrapper with enhanced compatibility and update handling cursorAppImage = pkgs.writeShellScriptBin "cursor" '' # Set up environment for better AppImage compatibility export APPDIR="" @@ -103,8 +103,8 @@ let --no-sandbox \ --appimage-extract-and-run \ ${pkgs.fetchurl { - url = "https://downloads.cursor.com/production/54c27320fab08c9f5dd5873f07fca101f7a3e076/linux/x64/Cursor-1.3.9-x86_64.AppImage"; - sha256 = "076ijp033xjg09aqjhjm6sslvq0hsjga35840m3br722lqpi6jfj"; + url = "https://downloads.cursor.com/production/07aa3b4519da4feab4761c58da3eeedd253a1671/linux/x64/Cursor-1.4.2-x86_64.AppImage"; + sha256 = "0gb89li1aklzgc9h8y5rlrnk0n6sb4ikahaml4r9kr6ixadc4b1a"; }} \ --disable-updates \ --no-update-check \ diff --git a/QUICKSTART.md b/QUICKSTART.md index 93aa0ff..8db3e25 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -1,6 +1,6 @@ # Quick Start Guide -Get Cursor 1.3.9 running on NixOS in minutes! +Get Cursor 1.4.2 running on NixOS in minutes! ## Prerequisites @@ -30,7 +30,7 @@ Get Cursor 1.3.9 running on NixOS in minutes! ## What You Get -- ✅ **Cursor 1.3.9**: Latest AI-first code editor +- ✅ **Cursor 1.4.2**: Latest AI-first code editor - ✅ **Development Environment**: Node.js, Python, Rust, Git - ✅ **Modern Shell**: Zsh with Starship prompt - ✅ **CLI Tools**: ripgrep, fd, bat, eza, fzf, tmux diff --git a/README.md b/README.md index cb9ec2b..ed4a32c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Cursor NixOS Flake -A NixOS flake that provides Cursor 1.3.9 (AI-first code editor) as an AppImage with enhanced compatibility for NixOS systems. +A NixOS flake that provides Cursor 1.4.2 (AI-first code editor) as an AppImage with enhanced compatibility for NixOS systems. ## Features diff --git a/cursor-fix-solution.md b/cursor-fix-solution.md index 95d9dc3..1637745 100644 --- a/cursor-fix-solution.md +++ b/cursor-fix-solution.md @@ -22,7 +22,7 @@ We need to modify the Cursor wrapper in `home.nix` to add additional environment { config, pkgs, lib, ... }: let - # Cursor 1.3.9 AppImage wrapper with enhanced compatibility and update handling + # Cursor 1.4.2 AppImage wrapper with enhanced compatibility and update handling cursorAppImage = pkgs.writeShellScriptBin "cursor" '' # Set up environment for better AppImage compatibility export APPDIR="" @@ -89,8 +89,8 @@ let --no-sandbox \ --appimage-extract-and-run \ ${pkgs.fetchurl { - url = "https://downloads.cursor.com/production/54c27320fab08c9f5dd5873f07fca101f7a3e076/linux/x64/Cursor-1.3.9-x86_64.AppImage"; - sha256 = "076ijp033xjg09aqjhjm6sslvq0hsjga35840m3br722lqpi6jfj"; + url = "https://downloads.cursor.com/production/07aa3b4519da4feab4761c58da3eeedd253a1671/linux/x64/Cursor-1.4.2-x86_64.AppImage"; + sha256 = "0gb89li1aklzgc9h8y5rlrnk0n6sb4ikahaml4r9kr6ixadc4b1a"; }} \ --disable-updates \ --no-update-check \ diff --git a/testing-plan.md b/testing-plan.md index a5e8490..606d270 100644 --- a/testing-plan.md +++ b/testing-plan.md @@ -40,7 +40,7 @@ cursor --version ``` Expected output: -- Should display the Cursor version (1.3.9) +- Should display the Cursor version (1.4.2) - No error messages about missing modules ### 4. Test GUI Launch