Skip to content

Releases: LoveDoLove/RemoteRun

v1.0.7

21 Mar 06:05

Choose a tag to compare

Release 1.0.7

Bump version to 1.0.7; add PATH install

Release bump to 1.0.7 across the project (ANALYSIS.md, Program.cs banner, and RemoteRun.csproj AssemblyVersion/FileVersion/Version). Update Inno Setup script to v1.0.7 and add installation-time PATH modification (ChangesEnvironment=yes) plus a Registry entry that appends the install directory to the system PATH (preservestringtype, uses {olddata};{app}) so the remoterun command can be run from any console. This prepares the 1.0.7 release and improves CLI discoverability after install.

v1.0.6

15 Mar 15:38

Choose a tag to compare

Release 1.0.6

v1.0.5

15 Mar 12:50

Choose a tag to compare

Release 1.0.5

Wire logo from images/ into installer and C# project (#8)

* Initial plan

* Add logo icon to installer and C# project from images/ folder

---------

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

Add ANALYSIS.md and PROMPT_GUIDE.md

Add two documentation files: ANALYSIS.md (detailed project analysis, architecture, execution modes, IPC, Win32 API surface, build/publish and installer notes, security posture, known edge cases) and PROMPT_GUIDE.md (context block and reusable prompt templates for working with the codebase and Copilot sessions). These files centralize design/usage information and provide standardized prompts to speed future development and reviews.

Add README, assets, and package metadata

Add a full project README and image assets (logo.png, logo.ico) and update RemoteRun.csproj for packaging: bump version to 1.0.5, update copyright to 2026, set ApplicationIcon and PackageIcon, add package metadata (Authors, Company, RepositoryUrl, PackageReadmeFile, PackageLicenseFile, etc.), and include content/pack entries for the icons and LICENSE/README.

Co-Authored-By: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-Authored-By: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

v1.0.4

15 Mar 11:53
f932fe9

Choose a tag to compare

Release 1.0.4

fix(setup.iss): include all dotnet publish output files, not just the executable (#7)

* Initial plan

* Fix setup.iss to include all published files with wildcard pattern

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

v1.0.3

15 Mar 11:46
0055ae9

Choose a tag to compare

Release 1.0.3

Add x64/x86 Inno Setup installer compilation and release to build workflow (#6)

* Initial plan

* Support x64 and x86 Inno Setup installer builds in workflow and setup.iss

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

v1.0.2

15 Mar 09:59

Choose a tag to compare

Release 1.0.2

Remove Windows ARM matrix entries

Remove Windows ARM and ARM64 entries from the cross-platform build workflow matrix, leaving only the win-x86 Windows runtime. Simplifies the CI matrix by dropping ARM/ARM64 Windows build variants.

v1.0.0

15 Mar 09:17
8fe88e9

Choose a tag to compare

Release 1.0.0

feat: default to SYSTEM cmd.exe on no-args + auto-elevate via UAC (#4)

* Initial plan

* Add RemoteRun C# tool: run commands as NT AUTHORITY\\SYSTEM locally and remotely

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

* Fix terminal stuck when running interactive programs (e.g. cmd.exe)

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

* Rewrite setup.iss for RemoteRun-only installer with System CMD quick-launch shortcut

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

* Fix: remove invalid runasadmin flag from [Icons] section in setup.iss

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

* Remove Run flags and simplify setup.iss entry

Remove the Flags line (nowait postinstall skipifsilent runasadmin) from the [Run] entry in setup.iss and inline the Description onto a single line. This simplifies the file formatting and removes the installer run flags that previously controlled post-install, silent-mode, and elevation behavior when launching RemoteRun.exe.

* feat: default to cmd.exe as SYSTEM and auto-elevate via UAC

Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>

* Remove flags from post-install Run entry

Remove the Flags (nowait, postinstall, skipifsilent, runasadmin) and the trailing continuation from the [Run] entry in setup.iss, leaving only the Description for the RemoteRun post-install command. This change stops using the previously specified run flags (such as automatic post-install execution and run-as-admin behavior).

* Create cross-platform-build.yml

* Remove AdvancedRun, since we have own RemoteRun

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: LoveDoLove <67772009+LoveDoLove@users.noreply.github.com>
Co-authored-by: LoveDoLove <v0130p5100cuboss@gmail.com>