Skip to content

Commit

Permalink
Merge pull request #72 from horihiro/bump-0.2.5-ts
Browse files Browse the repository at this point in the history
Bump to 0.2.5
  • Loading branch information
horihiro authored Jun 22, 2024
2 parents f2c9fe8 + 2383db0 commit 8028fd8
Show file tree
Hide file tree
Showing 29 changed files with 1,824 additions and 865 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/onrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup Node
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: install dependencies and build
run: |
npm install
npm run build
- name: zip release
run: zip -r release.zip background content img popup util CREDITS.txt LICENSE manifest.json NOTICE.md README.md
run: zip -r release.zip dist img CREDITS.txt LICENSE manifest.json NOTICE.md README.md
- name: Upload release attachment
uses: softprops/action-gh-release@v1
with:
Expand Down
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# dependencies
node_modules

# production
dist

# misc
.DS_Store

npm-debug.log*
21 changes: 16 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,28 @@
"configurations": [
{
"type": "chrome",
"request": "attach",
"request": "launch",
"name": "Debug on Chrome",
"port": 9222,
"preLaunchTask": "Launch Chrome"
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"--load-extension=${workspaceFolder}",
"--enable-extensions-developer-mode",
"https://example.com",
],
"preLaunchTask": "build"
},
{
"type": "msedge",
"request": "attach",
"name": "Debug on Edge",
"request": "launch",
"name": "Attach to Edge",
"port": 9222,
"preLaunchTask": "Launch Edge"
"runtimeArgs": [
"--load-extension=${workspaceFolder}",
"--enable-extensions-developer-mode",
"https://example.com",
],
"preLaunchTask": "build"
}
]
}
37 changes: 6 additions & 31 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,12 @@
"tasks": [
{
"type": "shell",
"label": "Launch Chrome",
"windows": {
"command": "${env:PROGRAMFILES}\\Google\\Chrome\\Application\\chrome.exe\"",
"args": [
"--remote-debugging-port=9222",
"--load-extension=${workspaceFolder}", // this is the path to the extension folder
"https://example.com/"
],
"options": {
"env": {
"CHROME_DEVELOPER_TOOLS": true
}
}
"label": "build",
"command": "npm run build:dev",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "Launch Edge",
"windows": {
"command": "${env:ProgramFiles(x86)}\\Microsoft\\Edge\\Application\\msedge.exe\"",
"args": [
"--remote-debugging-port=9222",
"--load-extension=${workspaceFolder}", // this is the path to the extension folder
"https://example.com/"
],
"options": {
"env": {
"CHROME_DEVELOPER_TOOLS": true
}
}
},
}
]
}
}
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@ If you can try a development version, the following steps are needed.

# Change logs

## [0.2.5](https://github.com/horihiro/TextBlurrer-ChromeExtension/releases/tag/0.2.5)

- Bug fixes
- Improve performance if there are **invisible** (`display: none` or `visibility: hidden`) elements containing target keywords.
- Chores
- Typescriptize

## [0.2.4](https://github.com/horihiro/TextBlurrer-ChromeExtension/releases/tag/0.2.4)

- New features
Expand Down
21 changes: 0 additions & 21 deletions content/css/blur.css

This file was deleted.

1 change: 0 additions & 1 deletion content/js/diff.min.js

This file was deleted.

Loading

0 comments on commit 8028fd8

Please sign in to comment.