Skip to content

Commit cf20dee

Browse files
committed
prepare for new release
1 parent dec8c83 commit cf20dee

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "speech2code.client",
33
"displayName": "Speech2Code",
44
"productName": "speech2code",
5-
"version": "0.0.1-alpha.2",
5+
"version": "0.0.1-alpha.3",
66
"description": "Speech2Code main app - Enables you to code using just your voice",
77
"author": {
88
"email": "pedro42augusto@gmail.com",

client/src/editors/vscode/prerequisites.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ import { dialog } from 'electron'
22
import crossSpawn from 'cross-spawn'
33
import path from 'path'
44
import fs from 'fs'
5-
import { isDev } from '../../utils'
5+
import { isDev, appVersion } from '../../utils'
66

77
const APP_NAME = 'speech2code'
8-
const VSCODE_EXT_ID = 'pedroaugusto.speech2code'
8+
const VSCODE_EXT_ID = 'pedroaugusto.speech2code@' + appVersion
99

1010
export function check() {
1111
// Does this machine has Visual Studio Code installed ?
@@ -46,7 +46,7 @@ function checkVSCodeIsInstalled() {
4646
}
4747

4848
function checkIfVSCodeExtensionIsAlreadyInstalled() {
49-
const response = crossSpawn.sync('code', ['--list-extensions'])
49+
const response = crossSpawn.sync('code', ['--list-extensions', '--show-versions'])
5050

5151
if (response.error || response.stderr.toString() !== '') {
5252
const err = response.stderr.toString()

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "speech2code.server",
3-
"version": "0.0.1-alpha.2",
3+
"version": "0.0.1-alpha.3",
44
"description": "Speech to Code NodeJS server",
55
"main": "src/app.js",
66
"scripts": {

spoken-vscode-driver/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"email": "pedro42augusto@gmail.com",
99
"url": "https://github.com/pedrooaugusto"
1010
},
11-
"version": "0.0.1-alpha.2",
11+
"version": "0.0.1-alpha.3",
1212
"icon": "icon.png",
1313
"license": "MIT",
1414
"repository": {
@@ -58,4 +58,4 @@
5858
"dependencies": {
5959
"node-ipc": "^9.1.4"
6060
}
61-
}
61+
}

spoken/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "speech2code.spoken",
3-
"version": "0.0.1-alpha.2",
3+
"version": "0.0.1-alpha.3",
44
"description": "Transforming natural language in code",
55
"main": "dist/index.js",
66
"scripts": {

webapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "speech2code.webapp",
33
"description": "The webapp react implementation of the speech2code frontend",
4-
"version": "0.0.1-alpha.2",
4+
"version": "0.0.1-alpha.3",
55
"private": true,
66
"dependencies": {
77
"@testing-library/jest-dom": "^5.11.9",

webapp/public/grammar.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)