Skip to content

Commit

Permalink
prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrooaugusto committed Jun 23, 2021
1 parent dec8c83 commit cf20dee
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "speech2code.client",
"displayName": "Speech2Code",
"productName": "speech2code",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"description": "Speech2Code main app - Enables you to code using just your voice",
"author": {
"email": "[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions client/src/editors/vscode/prerequisites.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { dialog } from 'electron'
import crossSpawn from 'cross-spawn'
import path from 'path'
import fs from 'fs'
import { isDev } from '../../utils'
import { isDev, appVersion } from '../../utils'

const APP_NAME = 'speech2code'
const VSCODE_EXT_ID = 'pedroaugusto.speech2code'
const VSCODE_EXT_ID = 'pedroaugusto.speech2code@' + appVersion

export function check() {
// Does this machine has Visual Studio Code installed ?
Expand Down Expand Up @@ -46,7 +46,7 @@ function checkVSCodeIsInstalled() {
}

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

if (response.error || response.stderr.toString() !== '') {
const err = response.stderr.toString()
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "speech2code.server",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"description": "Speech to Code NodeJS server",
"main": "src/app.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions spoken-vscode-driver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"email": "[email protected]",
"url": "https://github.com/pedrooaugusto"
},
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"icon": "icon.png",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -58,4 +58,4 @@
"dependencies": {
"node-ipc": "^9.1.4"
}
}
}
Binary file not shown.
2 changes: 1 addition & 1 deletion spoken/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "speech2code.spoken",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"description": "Transforming natural language in code",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "speech2code.webapp",
"description": "The webapp react implementation of the speech2code frontend",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.9",
Expand Down
2 changes: 1 addition & 1 deletion webapp/public/grammar.json

Large diffs are not rendered by default.

0 comments on commit cf20dee

Please sign in to comment.