Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: maltoze/link-popper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.2
Choose a base ref
...
head repository: maltoze/link-popper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.3
Choose a head ref
  • 6 commits
  • 5 files changed
  • 3 contributors

Commits on Aug 2, 2023

  1. chore: update ci

    maltoze committed Aug 2, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    sandhose Quentin Gliech
    Copy the full SHA
    1431c02 View commit details
  2. Update README.md

    maltoze authored Aug 2, 2023
    Copy the full SHA
    fb0f3ad View commit details
  3. chore(deps-dev): bump vite from 4.1.4 to 4.1.5 (#10)

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.1.4 to 4.1.5.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v4.1.5/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v4.1.5/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Aug 2, 2023
    Copy the full SHA
    d9456ba View commit details
  4. Update README.md

    maltoze authored Aug 2, 2023
    Copy the full SHA
    0687ba6 View commit details

Commits on Oct 26, 2023

  1. Update README.md

    maltoze authored Oct 26, 2023
    Copy the full SHA
    15f872e View commit details

Commits on Oct 31, 2024

  1. refactor: disable dynamic URL web accessible resources in vite.config.ts

    maltoze committed Oct 31, 2024
    Copy the full SHA
    0ad739c View commit details
Showing with 20 additions and 38 deletions.
  1. +1 −20 .github/workflows/release.yaml
  2. +2 −2 README.md
  3. +1 −1 package.json
  4. +15 −15 pnpm-lock.yaml
  5. +1 −0 vite.config.ts
21 changes: 1 addition & 20 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -9,9 +9,6 @@ jobs:
permissions:
contents: write
runs-on: ubuntu-20.04
outputs:
release_id: ${{ steps.create-release.outputs.id }}
release_upload_url: ${{ steps.create-release.outputs.upload_url }}

steps:
- uses: actions/checkout@v3
@@ -20,23 +17,6 @@ jobs:
id: get_version
uses: maltoze/get-version-action@v1

- name: Get tag message
id: tag
run: |
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
echo "message<<EOF" >> $GITHUB_OUTPUT
echo "$(git tag -l --format='%(contents)' ${{ steps.get_version.outputs.version }})" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Create Release
id: create-release
uses: ncipollo/release-action@v1
with:
draft: true
name: ${{ steps.get_version.outputs.version }}
tag: ${{ steps.get_version.outputs.version }}
body: "${{ steps.tag.outputs.message }}"

build-browser-extension:
runs-on: ubuntu-22.04
needs: create-release
@@ -91,4 +71,5 @@ jobs:
id: upload-release-asset
uses: softprops/action-gh-release@v1
with:
draft: true
files: release/link-popper-chrome-extension-${{ steps.get_version.outputs.version-without-v }}.zip
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@
</p>


支持在当前窗口中打开链接而无需跳转到新页面的浏览器插件
支持在当前窗口中打开链接而无需跳转到新页面的浏览器插件, 类似 Arc 中的 Peek 功能

![image](https://github.com/maltoze/link-popper/assets/18044730/afe920e7-e3cd-4960-ac2a-21d187fcd65c)
![Frame 1 (1)](https://github.com/maltoze/link-popper/assets/18044730/4da607e0-fe07-4028-a143-fa24c1cc2e7c)

## 开发

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite": "^4.1.5",
"webextension-polyfill": "^0.10.0"
}
}
30 changes: 15 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ export default defineConfig({
preact(),
webExtension({
manifest: isFirefox ? manifestV2 : manifest,
useDynamicUrlWebAccessibleResources: false,
}),
],
build: {