Skip to content

Commit 2fe3d56

Browse files
author
Willow P.
committed
v3.3.0: Added keyboard shortcuts and updated icon
1 parent 68f4d0c commit 2fe3d56

File tree

11 files changed

+778
-287
lines changed

11 files changed

+778
-287
lines changed

.vscode/extensions.json

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"dbaeumer.vscode-eslint",
66
"ms-vscode.extension-test-runner"
77
]
8-
}
8+
}

.vscode/launch.json

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
"preLaunchTask": "${defaultBuildTask}"
1919
}
2020
]
21-
}
21+
}

.vscode/settings.json

100755100644
File mode changed.

.vscode/tasks.json

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
}
1818
}
1919
]
20-
}
20+
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
### [v3.3.0](https://github.com/drizzy/code-make/releases/tag/v3.3.0)
4+
5+
> 5 May 2025
6+
7+
### Features
8+
9+
- Updated extension icon for a more modern look.
10+
- Added new commands: Create Project, Run Project, and Stop Execution.
11+
- Default keyboard shortcuts added:
12+
- `Ctrl+Alt+C` to create a project.
13+
- `Ctrl+Alt+R` to run the project.
14+
- `Ctrl+Alt+S` to stop execution.
15+
316
### [v3.2.0](https://github.com/drizzy/code-make/releases/tag/v3.2.0)
417

518
> 11 March 2025

README.md

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,50 @@
11
# Code Make
22

3+
Build and run C, C++, Go, and Java projects with ease directly from Visual Studio Code.
4+
35
[![Marketplace Version](https://vsmarketplacebadges.dev/version-short/drizzy.code-make.svg)](https://marketplace.visualstudio.com/items?itemName=drizzy.code-make)
46
[![Downloads](https://vsmarketplacebadges.dev/downloads-short/drizzy.code-make.svg)](https://marketplace.visualstudio.com/items?itemName=drizzy.code-make)
57
[![Rating](https://vsmarketplacebadges.dev/rating-short/drizzy.code-make.svg)](https://marketplace.visualstudio.com/items?itemName=drizzy.code-make)
68

79
## Features
810

9-
Build and run C, C++, Golang, and Java projects directly from the VSCode interface with a single click.
11+
- One-click build and run support for:
12+
- C
13+
- C++
14+
- Go
15+
- Java
16+
- Easy integration into your existing Make-based workflows.
1017

1118
## Requirements
1219

13-
- You must have `make` installed on your computer to manage build tasks. [See instructions](docs/SETUP.md#install-make)
14-
- You must have `GCC` installed to compile and run C/C++ programs. [See instructions](docs/SETUP.md#install-gcc)
15-
- You must have `Go` installed to compile and run Go programs. [See instructions](docs/SETUP.md#install-go)
16-
- You must have `Java` installed to compile and run Java programs. [See instructions](docs/SETUP.md#install-java)
20+
Make sure the following tools are installed on your system:
21+
22+
- `make`: For managing build tasks. [Installation guide](docs/SETUP.md#install-make)
23+
- `GCC`: For compiling and running C/C++ programs. [Installation guide](docs/SETUP.md#install-gcc)
24+
- `Go`: For compiling and running Go programs. [Installation guide](docs/SETUP.md#install-go)
25+
- `Java`: For compiling and running Java programs. [Installation guide](docs/SETUP.md#install-java)
26+
27+
## How to Use
28+
29+
1. Install the extension.
30+
2. Click the gear ⚙️ icon in the bottom right to choose your language (C, C++, Go, or Java).
31+
3. Click the play ▶ icon to build and run your program.
1732

18-
## How to use
33+
## Keyboard Shortcuts
34+
35+
You can also use the following shortcuts:
36+
37+
| Action | Shortcut |
38+
|-----------------|------------------|
39+
| Create Project | `Ctrl+Alt+C` |
40+
| Run Project | `Ctrl+Alt+R` |
41+
| Stop Execution | `Ctrl+Alt+S` |
1942

20-
After installing the extension, click the gear ⚙️ compile symbol in the bottom right corner and select your project language: C, C++, Go or Java. Then, use the play symbol ▶ to run and run your program.
2143

2244
## Release Notes
2345

24-
Refer to [CHANGELOG](CHANGELOG.md) for detailed release notes.
46+
See [CHANGELOG.md](CHANGELOG.md) for a complete list of changes.
47+
48+
## Credits
49+
50+
The icon used in this extension is ["makefile"](https://iconduck.com/icons/158850/makefile) by Iconduck, available under the [MIT license](https://opensource.org/licenses/MIT).

icon/makefile.png

5.75 KB
Loading

icons/logo.png

-33.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)