Skip to content

Commit

Permalink
fix tooltip sticky position
Browse files Browse the repository at this point in the history
  • Loading branch information
ttop32 committed Jan 19, 2024
1 parent 2a0d5f4 commit f9f19a4
Show file tree
Hide file tree
Showing 11 changed files with 286 additions and 258 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish Extension

on:
workflow_dispatch:

jobs:
publish:
name: Publish Extension to Store
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Download Extension
uses: robinraju/[email protected]
with:
latest: true
fileName: "*.zip"

- name: Get Release File Name
run: echo "EDGE_RELEASE_FILE=$(ls | grep *.zip)" >> $GITHUB_ENV
- name: Test
run: echo ${{env.EDGE_RELEASE_FILE}}

- name: Publish to store
uses: PlasmoHQ/bpp@v3
with:
keys: ${{ secrets.BPP_KEYS }}
edge-file: "${{env.EDGE_RELEASE_FILE}}"
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build-zip-en
- run: npm run build-zip

- uses: ncipollo/release-action@v1
with:
artifacts: "mouse_tooltip_translator_*.zip"
artifacts: "*.zip"
body: "[Change Log](https://github.com/ttop32/MouseTooltipTranslator/blob/main/doc/description.md#change-log)"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/build
mouse_tooltip_translator_*.zip
mouse_tooltip_translator.zip
build.zip
size-plugin.json
.vscode/
Expand Down
2 changes: 2 additions & 0 deletions doc/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Mouseover Translate Any Language At Once
English, Russian, Japanese, Chinese and so on

# Change Log
- 0.1.110
- fix tooltip sticky position (request by serega)
- 0.1.109
- rollback opencv library
- 0.1.108
Expand Down
Loading

0 comments on commit f9f19a4

Please sign in to comment.