diff --git a/package.json b/package.json index fbd4cd4..b206e05 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,9 @@ { "name": "alfred-translayta", - "version": "2.1.0", + "version": "2.1.1", "description": "Alfred workflow, which translates in uk-en/en-uk directions, save words to favorites.", + "license": "MIT", + "homepage": "https://github.com/dev99problems/alfred-translayta#readme", "main": "index.js", "scripts": { "postinstall": "alfy-init", @@ -31,11 +33,6 @@ "macos", "osx" ], - "license": "MIT", - "bugs": { - "url": "https://github.com/dev99problems/alfred-translayta/issues" - }, - "homepage": "https://github.com/dev99problems/alfred-translayta#readme", "dependencies": { "@vitalets/google-translate-api": "5.1.0", "alfy": "0.11.1", diff --git a/src/output.js b/src/output.js index 3f493d7..2399103 100644 --- a/src/output.js +++ b/src/output.js @@ -40,5 +40,6 @@ exports.formatAutoCorrection = (correctedValue, targetLang) => ({ exports.formatLastSearch = (lastUserInput, targetLang) => ({ title: lastUserInput, subtitle: intl.lastSearch[targetLang], + ...createCopyPasteActions(lastUserInput), icon: { path: './icons/history.png' } })