Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

### [v3.1.0](https://github.com/drizzy/code-make/releases/tag/v3.1.0)

> 03 March 2025

### Features

- **Added a new function** to stop the program when required.
- **Improved Status Bar Updates**: The extension now ensures that the status bar shows the correct button based on the program's current state (compile, run, stop) without unnecessary delays.
- **Optimized Start/Stop Button Logic**: The "Run" button is now only visible when there is a valid project and the program is not currently running, while the "Stop" button appears when the program is actively running.
- **Optimized Process Check**: The extension now checks the process state every few seconds, ensuring the buttons reflect the actual status without introducing unnecessary performance overhead.

### [v3.0.0](https://github.com/drizzy/code-make/releases/tag/v3.0.0)

> 15 February 2025
Expand Down
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "code-make",
"displayName": "Code Make",
"description": "Simplify C, C++, Go, and Java project creation and compilation with Make.",
"version": "3.0.0",
"version": "3.1.0",
"publisher": "drizzy",
"license": "MIT",
"icon": "icons/logo.png",
Expand Down Expand Up @@ -32,19 +32,15 @@
"tags": [
"C",
"C++",
"cpp",
"Go",
"Golang",
"java",
"javac",
"run",
"compiler",
"build"
"make"
],
"activationEvents": [
"onStartupFinished",
"onCommand:code-make-create.run",
"onCommand:code-make-start.run"
"onCommand:code-make-start.run",
"onCommand:code-make-stop.run"
],
"main": "./out/src/extension.js",
"scripts": {
Expand Down
335 changes: 0 additions & 335 deletions src/CodeManager.ts

This file was deleted.

Loading