Skip to content

Commit

Permalink
v1.25.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kholid060 authored Jan 6, 2023
2 parents 552ff67 + 7bae855 commit c992181
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 57 deletions.
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "automa",
"version": "1.25.2",
"version": "1.25.3",
"description": "An extension for automating your browser by connecting blocks",
"repository": {
"type": "git",
Expand Down Expand Up @@ -36,10 +36,10 @@
"@codemirror/language": "^6.3.1",
"@codemirror/theme-one-dark": "^6.1.0",
"@medv/finder": "^2.1.0",
"@n8n_io/riot-tmpl": "^1.0.1",
"@n8n_io/riot-tmpl": "^2.0.0",
"@tiptap/core": "^2.0.0-beta.209",
"@tiptap/extension-character-count": "^2.0.0-beta.209",
"@tiptap/extension-history": "^2.0.0-beta.205",
"@tiptap/extension-history": "^2.0.0-beta.209",
"@tiptap/extension-image": "^2.0.0-beta.209",
"@tiptap/extension-link": "^2.0.0-beta.205",
"@tiptap/extension-placeholder": "^2.0.0-beta.205",
Expand All @@ -52,7 +52,7 @@
"@vueuse/rxjs": "^9.1.1",
"@vuex-orm/core": "^0.36.4",
"codemirror": "^6.0.1",
"compare-versions": "^5.0.1",
"compare-versions": "^6.0.0-rc.1",
"cron-parser": "^4.6.0",
"cronstrue": "^2.21.0",
"crypto-js": "^4.1.1",
Expand All @@ -63,6 +63,7 @@
"dexie": "^3.2.2",
"html2canvas": "^1.4.1",
"idb": "^7.0.2",
"json5": "^2.2.3",
"jsonpath": "^1.1.1",
"jspdf": "^2.5.1",
"loader-utils": "^3.2.1",
Expand Down Expand Up @@ -109,7 +110,7 @@
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.26.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-loader": "^6.7.3",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
Expand All @@ -126,7 +127,7 @@
"mini-css-extract-plugin": "^2.3.0",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.0",
"prettier": "^2.7.1",
"prettier": "^2.8.1",
"simple-git-hooks": "^2.8.1",
"source-map-loader": "^4.0.0",
"tailwindcss": "^3.2.1",
Expand Down
1 change: 1 addition & 0 deletions src/components/block/BlockGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
:placeholder="t('workflow.blocks.blocks-group.groupName')"
type="text"
class="bg-transparent w-full focus:ring-0"
@keydown.stop
@input="$emit('update', { name: $event.target.value })"
/>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/components/block/BlockNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
rows="7"
style="resize: both; min-width: 280px; min-height: 168px"
class="focus:ring-0 mt-2 bg-transparent"
@keydown.stop
@input="updateData({ note: $event.target.value })"
@mousedown.stop
@mouseup="onMouseup"
Expand Down
2 changes: 1 addition & 1 deletion src/components/block/BlockRepeatTask.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
:value="data.repeatFor"
placeholder="0"
class="bg-transparent py-2 px-4 focus:ring-0"
required
style="padding-right: 57px; width: 95%"
@keydown.stop
@input="handleInput"
/>
<span class="text-gray-600 dark:text-gray-200 absolute right-4">
Expand Down
55 changes: 34 additions & 21 deletions src/newtab/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,41 @@
</ui-dialog>
<div
v-if="isUpdated"
class="p-4 shadow-2xl z-50 fixed bottom-8 left-1/2 -translate-x-1/2 rounded-lg bg-accent text-white dark:text-gray-900 flex items-center"
class="z-50 fixed bottom-8 left-1/2 -translate-x-1/2 max-w-xl text-white dark:text-gray-900"
>
<v-remixicon name="riInformationLine" class="mr-3" />
<p>
{{ t('updateMessage.text1', { version: currentVersion }) }}
</p>
<a
:href="`https://github.com/AutomaApp/automa/releases/latest`"
target="_blank"
rel="noopener"
class="underline ml-1"
>
{{ t('updateMessage.text2') }}
</a>
<button
class="ml-6 text-gray-200 dark:text-gray-600"
@click="isUpdated = false"
>
<v-remixicon size="20" name="riCloseLine" />
</button>
<div class="p-4 shadow-2xl rounded-lg bg-accent flex items-center">
<v-remixicon name="riInformationLine" class="mr-3" />
<p>
{{ t('updateMessage.text1', { version: currentVersion }) }}
</p>
<a
:href="`https://github.com/AutomaApp/automa/releases/latest`"
target="_blank"
rel="noopener"
class="underline ml-1"
>
{{ t('updateMessage.text2') }}
</a>
<div class="flex-1" />
<button
class="ml-6 text-gray-200 dark:text-gray-600"
@click="isUpdated = false"
>
<v-remixicon size="20" name="riCloseLine" />
</button>
</div>
<div class="p-4 shadow-2xl rounded-lg bg-accent flex items-center mt-4">
<v-remixicon name="riInformationLine" class="mr-3 flex-shrink-0" />
<p>
Export your Automa workflows as a standalone extension using
<a
href="https://docs.automa.site/extension-builder/"
target="_blank"
class="underline"
>Automa Chrome Extension Builder</a
>
</p>
</div>
</div>
<shared-permissions-modal
v-model="permissionState.showModal"
Expand All @@ -54,7 +69,6 @@
<div v-else class="py-8 text-center">
<ui-spinner color="text-accent" size="28" />
</div>
<app-survey />
</template>
<script setup>
import { ref, reactive, watch } from 'vue';
Expand All @@ -81,7 +95,6 @@ import emitter from '@/lib/mitt';
import automa from '@business';
import dbLogs from '@/db/logs';
import dayjs from '@/lib/dayjs';
import AppSurvey from '@/components/newtab/app/AppSurvey.vue';
import AppLogs from '@/components/newtab/app/AppLogs.vue';
import AppSidebar from '@/components/newtab/app/AppSidebar.vue';
import dataMigration from '@/utils/dataMigration';
Expand Down
60 changes: 31 additions & 29 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1316,10 +1316,10 @@
resolved "https://registry.yarnpkg.com/@medv/finder/-/finder-2.1.0.tgz#5c53cdaac3b87057b9e5579ca1282b2397624016"
integrity sha512-Egrg5XO4kLol24b1Kv50HDfi5hW0yQ6aWSsO0Hea1eJ4rogKElIN0M86FdVnGF4XIGYyA7QWx0MgbOzVPA0qkA==

"@n8n_io/riot-tmpl@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@n8n_io/riot-tmpl/-/riot-tmpl-1.0.1.tgz#c66f67079116073b2127f8928dbe8282c49219f4"
integrity sha512-+ig7/rafN3LGthGEi8fs1N5XxPndmRq5YAX92DWOar9mrMDrYyIjK5XAQaTnTMDQgmKKllrAl+bVRmQXKcLFuw==
"@n8n_io/riot-tmpl@^2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@n8n_io/riot-tmpl/-/riot-tmpl-2.0.0.tgz#2bea643e8b974d7121a66f6bea7f4963ad1bdfd7"
integrity sha512-gQNJYlek30YIWLru2CdyFgU/0uvPAbbQwt2G5EN0PDxXD1rGAYWZsd2c94bW3YlvXT6V2GEd7Bt/gT6QUwhzfQ==
dependencies:
eslint-config-riot "^1.0.0"

Expand Down Expand Up @@ -1444,11 +1444,6 @@
resolved "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-2.0.0-beta.209.tgz#7ae7e3f1adac7eaad20dcb30effb4b25f53a453d"
integrity sha512-eqq9if0XsPjLvivM5gNUqSHj5I4Zpiv66NPO+pM4ig0Wq2CjjxWzzgmdSLfTPGRfsZe9kPCOgO86AAB07am3fQ==

"@tiptap/extension-history@^2.0.0-beta.205":
version "2.0.0-beta.205"
resolved "https://registry.yarnpkg.com/@tiptap/extension-history/-/extension-history-2.0.0-beta.205.tgz#9f7f70da338f3437bb17b6037a4fea596a081e36"
integrity sha512-rDtwyM/mlFT7tiVu/SlmDbWGZJBFBswd2Lklu9coxHwbu4EH/2inaiff+6zGZ0WOSw5LwX44eJfsyD6NH8HcHg==

"@tiptap/extension-history@^2.0.0-beta.209":
version "2.0.0-beta.209"
resolved "https://registry.yarnpkg.com/@tiptap/extension-history/-/extension-history-2.0.0-beta.209.tgz#4d082a92bd434232b3d3db6584b8dd499086f343"
Expand Down Expand Up @@ -2758,10 +2753,10 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==

compare-versions@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-5.0.1.tgz#14c6008436d994c3787aba38d4087fabe858555e"
integrity sha512-v8Au3l0b+Nwkp4G142JcgJFh1/TUhdxut7wzD1Nq1dyp5oa3tXaqb03EXOAB6jS4gMlalkjAUPZBMiAfKUixHQ==
compare-versions@^6.0.0-rc.1:
version "6.0.0-rc.1"
resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-6.0.0-rc.1.tgz#93e6beb8767c2375333ee168fa64c28b75ace2c6"
integrity sha512-cFhkjbGY1jLFWIV7KegECbfuyYPxSGvgGkdkfM+ibboQDoPwg2FRHm5BSNTOApiauRBzJIQH7qvOJs2sW5ueKQ==

compress-commons@^4.1.0:
version "4.1.1"
Expand Down Expand Up @@ -2933,13 +2928,13 @@ css-line-break@^2.1.0:
dependencies:
utrie "^1.0.2"

css-loader@^6.7.1:
version "6.7.2"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.2.tgz#26bc22401b5921686a10fbeba75d124228302304"
integrity sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==
css-loader@^6.7.3:
version "6.7.3"
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.3.tgz#1e8799f3ccc5874fdd55461af51137fcc5befbcd"
integrity sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==
dependencies:
icss-utils "^5.1.0"
postcss "^8.4.18"
postcss "^8.4.19"
postcss-modules-extract-imports "^3.0.0"
postcss-modules-local-by-default "^4.0.0"
postcss-modules-scope "^3.0.0"
Expand Down Expand Up @@ -4662,6 +4657,11 @@ json5@^2.1.2, json5@^2.2.0, json5@^2.2.1:
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==

json5@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==

jsonc-eslint-parser@^1.0.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-1.4.1.tgz#8cbe99f6f5199acbc5a823c4c0b6135411027fa6"
Expand Down Expand Up @@ -5574,6 +5574,15 @@ postcss@^8.1.10, postcss@^8.4.18:
picocolors "^1.0.0"
source-map-js "^1.0.2"

postcss@^8.4.19:
version "8.4.20"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.20.tgz#64c52f509644cecad8567e949f4081d98349dc56"
integrity sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==
dependencies:
nanoid "^3.3.4"
picocolors "^1.0.0"
source-map-js "^1.0.2"

prelude-ls@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
Expand All @@ -5591,10 +5600,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"

prettier@^2.7.1:
version "2.8.0"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.0.tgz#c7df58393c9ba77d6fba3921ae01faf994fb9dc9"
integrity sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==
prettier@^2.8.1:
version "2.8.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc"
integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==

pretty-error@^4.0.0:
version "4.0.0"
Expand Down Expand Up @@ -5988,13 +5997,6 @@ rxjs@^7.5.7, rxjs@^7.8.0:
dependencies:
tslib "^2.1.0"

rxjs@^7.8.0:
version "7.8.0"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
dependencies:
tslib "^2.1.0"

safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
Expand Down

0 comments on commit c992181

Please sign in to comment.