From d9872608cbd607706fce9114acd22621210e3389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ngel=20Albi=C3=B1ana=20Espejo?= Date: Mon, 18 Mar 2024 02:52:33 +0100 Subject: [PATCH] :truck: chore(all): fix error in build --- .dev/templates/readme.mjs | 5 +++-- .github/workflows/release-app.yml | 20 +++++++++++--------- .github/workflows/release.yml | 14 ++++++++------ README.md | 9 +++++---- package.json | 10 +++++----- packages/_core-react/CHANGELOG.md | 2 ++ packages/_core-react/README.md | 9 +++++---- packages/_core-react/package.json | 2 +- packages/_core/CHANGELOG.md | 6 ++++++ packages/_core/README.md | 9 +++++---- packages/_core/package.json | 2 +- packages/app/CHANGELOG.md | 2 ++ packages/app/README.md | 9 +++++---- packages/app/package.json | 2 +- packages/app/src-tauri/Cargo.toml | 2 +- packages/docs/CHANGELOG.md | 6 ++++++ packages/docs/README.md | 9 +++++---- packages/docs/package.json | 2 +- packages/exts/CHANGELOG.md | 2 ++ packages/exts/README.md | 9 +++++---- packages/exts/bepp.config.yml | 2 +- packages/exts/package.json | 2 +- 22 files changed, 82 insertions(+), 53 deletions(-) diff --git a/.dev/templates/readme.mjs b/.dev/templates/readme.mjs index 0f4b5ee..06ab49c 100644 --- a/.dev/templates/readme.mjs +++ b/.dev/templates/readme.mjs @@ -85,12 +85,13 @@ ${ } ${ imgUrl( { - name : 'Super8 web', + name : 'Version', color : 'blue', type : `github/package-json/v/${pkg.data.extra.repoId}?filename=packages%2Fapp%2Fpackage.json`, url : pkg.data.homepage, } ) } + ${ imgUrl( { name : 'Chrome', @@ -134,7 +135,7 @@ const content = pkg => { ${pkg.data.description} -[![DEMO](${joinUrl( pkg.data.extra.rawRepoUrl, '/main/docs/images/demo-filters.png' )})](${pkg.data.homepage})` +[![DEMO](${joinUrl( pkg.data.extra.rawRepoUrl, '/main/docs/images/demo-filters.gif' )})](${pkg.data.homepage})` } diff --git a/.github/workflows/release-app.yml b/.github/workflows/release-app.yml index 417da91..cc94b0a 100644 --- a/.github/workflows/release-app.yml +++ b/.github/workflows/release-app.yml @@ -28,7 +28,7 @@ jobs: # - platform: 'macos-latest' - platform: 'ubuntu-22.04' - platform: 'windows-latest' - + timeout-minutes: 15 runs-on: ${{ matrix.settings.platform }} env: TAG_VERSION: ${{ github.event.client_payload.app_version }} @@ -64,10 +64,13 @@ jobs: id: pkg run: | echo "name=$(jq -r '.extra.productName' ./package.json)" >> $GITHUB_OUTPUT - echo "description=$(jq -r '.extra.description' ./package.json)" >> $GITHUB_OUTPUT + echo "description=$(jq -r '.description' ./package.json)" >> $GITHUB_OUTPUT + echo "homepage=$(jq -r '.homepage' ./package.json)" >> $GITHUB_OUTPUT + echo "docs=$(jq -r '.extra.docsUrl' ./package.json)" >> $GITHUB_OUTPUT + echo "repo=$(jq -r '.repository.url' ./package.json)" >> $GITHUB_OUTPUT - name: 🦀 install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-20.04' + if: matrix.platform == 'ubuntu-22.04' run: | sudo apt-get update sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf @@ -99,17 +102,16 @@ jobs: releaseName: '${{ steps.pkg.outputs.name }} v${{ env.TAG_VERSION }}' releaseBody: | ${{ steps.pkg.outputs.name }} apps and extensions v${{ env.TAG_VERSION }} - --- ${{ steps.pkg.outputs.description }} --- - 🌐 WEB: https:://super8.pigeonposse.com - 📚 DOCUMENTATION: https:://docs.super8.pigeonposse.com - 🧩 CHANGELOG: https://github.com/pigeonposse/super8/packages/exts/blob/main/packages/app/CHANGELOG.md - 📜 LICENSE: https://github.com/pigeonposse/super8/blob/main/LICENSE + 🌐 WEB: ${{ steps.pkg.outputs.homepage }} + 📚 DOCUMENTATION:${{ steps.pkg.outputs.docs }} + 🧩 CHANGELOG: ${{ steps.pkg.outputs.repo }}/packages/exts/blob/main/packages/app/CHANGELOG.md + 📜 LICENSE: ${{ steps.pkg.outputs.repo }}/blob/main/LICENSE releaseDraft: false prerelease: false includeUpdaterJson: true updaterJsonKeepUniversal: true # @see https://github.com/tauri-apps/tauri-action?tab=readme-ov-file#build-options includeRelease: true + tauriScript: pnpm tauri args: ${{ matrix.settings.args }} - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4f96d0..822a80f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -130,6 +130,9 @@ jobs: echo "firefox_storeId=$(jq -r '.extra.downloadUrl.firefox.storeId' ./package.json)" >> $GITHUB_OUTPUT echo "chrome_storeId=$(jq -r '.extra.downloadUrl.chrome.storeId' ./package.json)" >> $GITHUB_OUTPUT echo "edge_storeId=$(jq -r '.extra.downloadUrl.edge.storeId' ./package.json)" >> $GITHUB_OUTPUT + echo "homepage=$(jq -r '.homepage' ./package.json)" >> $GITHUB_OUTPUT + echo "docs=$(jq -r '.extra.docsUrl' ./package.json)" >> $GITHUB_OUTPUT + echo "repo=$(jq -r '.repository.url' ./package.json)" >> $GITHUB_OUTPUT ######################################################################### ######################################################################### @@ -277,14 +280,13 @@ jobs: allowUpdates: true artifacts: "packages/exts/dist/exts/*" body: | - ${{ steps.pkg.outputs.name }} apps and extensions v${{ steps.updated.outputs.core_version }} - --- + ${{ steps.pkg.outputs.name }} apps and extensions v${{ env.TAG_VERSION }} ${{ steps.pkg.outputs.description }} --- - 🌐 WEB: https://super8.pigeonposse.com - 📚 DOCUMENTATION: https://docs.super8.pigeonposse.com - 🧩 CHANGELOG: https://github.com/pigeonposse/super8/packages/exts/blob/main/packages/app/CHANGELOG.md - 📜 LICENSE: https://github.com/pigeonposse/super8/blob/main/LICENSE + 🌐 WEB: ${{ steps.pkg.outputs.homepage }} + 📚 DOCUMENTATION:${{ steps.pkg.outputs.docs }} + 🧩 CHANGELOG: ${{ steps.pkg.outputs.repo }}/packages/exts/blob/main/packages/app/CHANGELOG.md + 📜 LICENSE: ${{ steps.pkg.outputs.repo }}/blob/main/LICENSE ######################################################################### # EXTS - PUBLISH IN CHROME WEB STORE diff --git a/README.md b/README.md index d00a9fe..d608b28 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ REPOSITORY: https://github.com/pigeonposse/super8 AUTHORS: - - Angelo (https://pigeonposse.com) + - Angelo (https://github.com/angelespejo) DEVELOPED BY Angelo 🐦🌈 @@ -54,7 +54,8 @@ DEVELOPED BY Angelo 🐦🌈 [![License](https://img.shields.io/github/license/pigeonposse/super8?color=green&style=for-the-badge&logoColor=white)](/LICENSE) [![Core](https://img.shields.io/npm/v/@s-8/core?color=blue&style=for-the-badge&logoColor=white)](https://www.npmjs.com/package/@s-8/core) -[![Super8 web](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) +[![Version](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) + [![Chrome](https://img.shields.io/chrome-web-store/v/aejkinmllndkgoodkfbhfkffnebmibkd?color=blue&style=for-the-badge&logoColor=white)](https://chromewebstore.google.com/detail/super8/aejkinmllndkgoodkfbhfkffnebmibkd) [![Mozilla](https://img.shields.io/amo/v/{63bba7f4-510b-4478-b401-a2726a9703ba}?color=blue&style=for-the-badge&logoColor=white)](https://addons.mozilla.org/es/firefox/addon/super8/) [![Edge](https://img.shields.io/badge/dynamic/json?label=microsoft%20edge%20store&query=%24.version&url=https://microsoftedge.microsoft.com/addons/getproductdetailsbycrxid/milbmbciipbjlbjlidhgfnlkempefffi?color=blue&style=for-the-badge&logoColor=white)](https://microsoftedge.microsoft.com/addons/detail/milbmbciipbjlbjlidhgfnlkempefffi) @@ -73,7 +74,7 @@ DEVELOPED BY Angelo 🐦🌈 🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc -[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.png)](https://super8.pigeonposse.com/) +[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.gif)](https://super8.pigeonposse.com/) @@ -107,7 +108,7 @@ This software is licensed with **[GPL-3.0](/LICENSE)**. | | Name | Role | GitHub | | ---------------------------------------------------------------------------------- | ----------- | ------------ | ---------------------------------------------- | -| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://pigeonposse.com) | +| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://github.com/angelespejo) | | Alejo | Alejo | Idea & UI Concept | [@Alejo](https://github.com/alejomalia) | | PigeonPosse | PigeonPosse | Collective | [@PigeonPosse](https://github.com/PigeonPosse) | diff --git a/package.json b/package.json index 90ea54a..4ce5285 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "author": { "name": "Angelo", "email": "angelo@pigeonposse.com", - "url": "https://pigeonposse.com" + "url": "https://github.com/angelespejo" }, "contributors": [ { @@ -291,25 +291,25 @@ "macosUniversal": { "name": "MacOS Universal App", "logo": "apple", - "url": "https://github.com/angelespejo/super8/releases/latest/download/Super8_universal.app.tar.gz", + "url": "https://github.com/pigeonposse/super8/releases/latest/download/Super8_universal.app.tar.gz", "type": "desktop" }, "macosIntel": { "name": "MacOS Intel App", "logo": "apple", - "url": "https://github.com/angelespejo/super8/releases/latest/download/Super8_x64.app.tar.gz", + "url": "https://github.com/pigeonposse/super8/releases/latest/download/Super8_x64.app.tar.gz", "type": "desktop" }, "windows": { "name": "Windows App", "logo": "windows", - "url": "https://github.com/angelespejo/super8/releases/latest/download/Super8_x86_64.msi.zip", + "url": "https://github.com/pigeonposse/super8/releases/latest/download/Super8_x86_64.msi.zip", "type": "desktop" }, "linux": { "name": "Linux App", "logo": "linux", - "url": "https://github.com/angelespejo/super8/releases/latest/download/Super8_x86_64.AppImage.tar.gz", + "url": "https://github.com/pigeonposse/super8/releases/latest/download/Super8_x86_64.AppImage.tar.gz", "type": "desktop" }, "wpPlugin": { diff --git a/packages/_core-react/CHANGELOG.md b/packages/_core-react/CHANGELOG.md index 7ddac34..624f073 100644 --- a/packages/_core-react/CHANGELOG.md +++ b/packages/_core-react/CHANGELOG.md @@ -1,5 +1,7 @@ # @s-8/core-react +## 0.1.8 + ## 0.1.7 ## 0.1.6 diff --git a/packages/_core-react/README.md b/packages/_core-react/README.md index 4af6f59..2a0dce0 100644 --- a/packages/_core-react/README.md +++ b/packages/_core-react/README.md @@ -31,7 +31,7 @@ REPOSITORY: https://github.com/pigeonposse/super8 AUTHORS: - - Angelo (https://pigeonposse.com) + - Angelo (https://github.com/angelespejo) DEVELOPED BY Angelo 🐦🌈 @@ -54,7 +54,8 @@ DEVELOPED BY Angelo 🐦🌈 [![License](https://img.shields.io/github/license/pigeonposse/super8?color=green&style=for-the-badge&logoColor=white)](/LICENSE) [![Core](https://img.shields.io/npm/v/@s-8/core?color=blue&style=for-the-badge&logoColor=white)](https://www.npmjs.com/package/@s-8/core) -[![Super8 web](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) +[![Version](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) + [![Chrome](https://img.shields.io/chrome-web-store/v/aejkinmllndkgoodkfbhfkffnebmibkd?color=blue&style=for-the-badge&logoColor=white)](https://chromewebstore.google.com/detail/super8/aejkinmllndkgoodkfbhfkffnebmibkd) [![Mozilla](https://img.shields.io/amo/v/{63bba7f4-510b-4478-b401-a2726a9703ba}?color=blue&style=for-the-badge&logoColor=white)](https://addons.mozilla.org/es/firefox/addon/super8/) [![Edge](https://img.shields.io/badge/dynamic/json?label=microsoft%20edge%20store&query=%24.version&url=https://microsoftedge.microsoft.com/addons/getproductdetailsbycrxid/milbmbciipbjlbjlidhgfnlkempefffi?color=blue&style=for-the-badge&logoColor=white)](https://microsoftedge.microsoft.com/addons/detail/milbmbciipbjlbjlidhgfnlkempefffi) @@ -73,7 +74,7 @@ DEVELOPED BY Angelo 🐦🌈 🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc -[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.png)](https://super8.pigeonposse.com/) +[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.gif)](https://super8.pigeonposse.com/) The `@s-8/core-react` library is a collection of **React components**, specifically designed for integration with the **Super8** software. These components have been created to simplify the development of consistent and appealing user interfaces within the **Super8** application. @@ -127,7 +128,7 @@ This software is licensed with **[GPL-3.0](/LICENSE)**. | | Name | Role | GitHub | | ---------------------------------------------------------------------------------- | ----------- | ------------ | ---------------------------------------------- | -| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://pigeonposse.com) | +| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://github.com/angelespejo) | | Alejo | Alejo | Idea & UI Concept | [@Alejo](https://github.com/alejomalia) | | PigeonPosse | PigeonPosse | Collective | [@PigeonPosse](https://github.com/PigeonPosse) | diff --git a/packages/_core-react/package.json b/packages/_core-react/package.json index 7d7c2de..8e0f21f 100644 --- a/packages/_core-react/package.json +++ b/packages/_core-react/package.json @@ -1,6 +1,6 @@ { "name": "@s-8/core-react", - "version": "0.1.7", + "version": "0.1.8", "type": "module", "publishConfig": { "access": "public", diff --git a/packages/_core/CHANGELOG.md b/packages/_core/CHANGELOG.md index d45c60c..777b94d 100644 --- a/packages/_core/CHANGELOG.md +++ b/packages/_core/CHANGELOG.md @@ -1,5 +1,11 @@ # @s-8/core +## 0.1.8 + +### Patch Changes + +- fix errors in build + ## 0.1.7 ### Patch Changes diff --git a/packages/_core/README.md b/packages/_core/README.md index c9057c6..adf1b35 100644 --- a/packages/_core/README.md +++ b/packages/_core/README.md @@ -31,7 +31,7 @@ REPOSITORY: https://github.com/pigeonposse/super8 AUTHORS: - - Angelo (https://pigeonposse.com) + - Angelo (https://github.com/angelespejo) DEVELOPED BY Angelo 🐦🌈 @@ -54,7 +54,8 @@ DEVELOPED BY Angelo 🐦🌈 [![License](https://img.shields.io/github/license/pigeonposse/super8?color=green&style=for-the-badge&logoColor=white)](/LICENSE) [![Core](https://img.shields.io/npm/v/@s-8/core?color=blue&style=for-the-badge&logoColor=white)](https://www.npmjs.com/package/@s-8/core) -[![Super8 web](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) +[![Version](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) + [![Chrome](https://img.shields.io/chrome-web-store/v/aejkinmllndkgoodkfbhfkffnebmibkd?color=blue&style=for-the-badge&logoColor=white)](https://chromewebstore.google.com/detail/super8/aejkinmllndkgoodkfbhfkffnebmibkd) [![Mozilla](https://img.shields.io/amo/v/{63bba7f4-510b-4478-b401-a2726a9703ba}?color=blue&style=for-the-badge&logoColor=white)](https://addons.mozilla.org/es/firefox/addon/super8/) [![Edge](https://img.shields.io/badge/dynamic/json?label=microsoft%20edge%20store&query=%24.version&url=https://microsoftedge.microsoft.com/addons/getproductdetailsbycrxid/milbmbciipbjlbjlidhgfnlkempefffi?color=blue&style=for-the-badge&logoColor=white)](https://microsoftedge.microsoft.com/addons/detail/milbmbciipbjlbjlidhgfnlkempefffi) @@ -73,7 +74,7 @@ DEVELOPED BY Angelo 🐦🌈 🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc -[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.png)](https://super8.pigeonposse.com/) +[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.gif)](https://super8.pigeonposse.com/) The `@s-8/core` library is a collection of **Svelte components**, specifically designed for integration with the **Super8** software. These components have been created to simplify the development of consistent and appealing user interfaces within the **Super8** application. @@ -125,7 +126,7 @@ This software is licensed with **[GPL-3.0](/LICENSE)**. | | Name | Role | GitHub | | ---------------------------------------------------------------------------------- | ----------- | ------------ | ---------------------------------------------- | -| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://pigeonposse.com) | +| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://github.com/angelespejo) | | Alejo | Alejo | Idea & UI Concept | [@Alejo](https://github.com/alejomalia) | | PigeonPosse | PigeonPosse | Collective | [@PigeonPosse](https://github.com/PigeonPosse) | diff --git a/packages/_core/package.json b/packages/_core/package.json index 75eece0..ce2c60d 100644 --- a/packages/_core/package.json +++ b/packages/_core/package.json @@ -1,7 +1,7 @@ { "name": "@s-8/core", "description": "Super8 core functionality", - "version": "0.1.7", + "version": "0.1.8", "type": "module", "publishConfig": { "access": "public", diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index ca8830e..9dfd258 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -1,5 +1,7 @@ # @s-8/app +## 0.1.8 + ## 0.1.7 ## 0.1.6 diff --git a/packages/app/README.md b/packages/app/README.md index c90677e..693c1e4 100644 --- a/packages/app/README.md +++ b/packages/app/README.md @@ -31,7 +31,7 @@ REPOSITORY: https://github.com/pigeonposse/super8 AUTHORS: - - Angelo (https://pigeonposse.com) + - Angelo (https://github.com/angelespejo) DEVELOPED BY Angelo 🐦🌈 @@ -54,7 +54,8 @@ DEVELOPED BY Angelo 🐦🌈 [![License](https://img.shields.io/github/license/pigeonposse/super8?color=green&style=for-the-badge&logoColor=white)](/LICENSE) [![Core](https://img.shields.io/npm/v/@s-8/core?color=blue&style=for-the-badge&logoColor=white)](https://www.npmjs.com/package/@s-8/core) -[![Super8 web](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) +[![Version](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) + [![Chrome](https://img.shields.io/chrome-web-store/v/aejkinmllndkgoodkfbhfkffnebmibkd?color=blue&style=for-the-badge&logoColor=white)](https://chromewebstore.google.com/detail/super8/aejkinmllndkgoodkfbhfkffnebmibkd) [![Mozilla](https://img.shields.io/amo/v/{63bba7f4-510b-4478-b401-a2726a9703ba}?color=blue&style=for-the-badge&logoColor=white)](https://addons.mozilla.org/es/firefox/addon/super8/) [![Edge](https://img.shields.io/badge/dynamic/json?label=microsoft%20edge%20store&query=%24.version&url=https://microsoftedge.microsoft.com/addons/getproductdetailsbycrxid/milbmbciipbjlbjlidhgfnlkempefffi?color=blue&style=for-the-badge&logoColor=white)](https://microsoftedge.microsoft.com/addons/detail/milbmbciipbjlbjlidhgfnlkempefffi) @@ -73,7 +74,7 @@ DEVELOPED BY Angelo 🐦🌈 🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc -[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.png)](https://super8.pigeonposse.com/) +[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.gif)](https://super8.pigeonposse.com/) ## Web version @@ -121,7 +122,7 @@ This software is licensed with **[GPL-3.0](/LICENSE)**. | | Name | Role | GitHub | | ---------------------------------------------------------------------------------- | ----------- | ------------ | ---------------------------------------------- | -| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://pigeonposse.com) | +| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://github.com/angelespejo) | | Alejo | Alejo | Idea & UI Concept | [@Alejo](https://github.com/alejomalia) | | PigeonPosse | PigeonPosse | Collective | [@PigeonPosse](https://github.com/PigeonPosse) | diff --git a/packages/app/package.json b/packages/app/package.json index e36af54..4548e83 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@s-8/app", - "version": "0.1.7", + "version": "0.1.8", "type": "module", "private": true, "scripts": { diff --git a/packages/app/src-tauri/Cargo.toml b/packages/app/src-tauri/Cargo.toml index 3465d98..cc096d2 100644 --- a/packages/app/src-tauri/Cargo.toml +++ b/packages/app/src-tauri/Cargo.toml @@ -5,7 +5,7 @@ name = "super8" version = "0.1.5" description = "🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc" authors = ["angelo "] -license = "GPL-3.0" +# license = "GPL-3.0" license-file = "../../../LICENSE" repository = "https://github.com/pigeonposse/super8" edition = "2021" diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md index 96dc7e7..08a2eab 100644 --- a/packages/docs/CHANGELOG.md +++ b/packages/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # @s-8/docs +## 0.3.5 + +### Patch Changes + +- fix errors in build + ## 0.3.4 ### Patch Changes diff --git a/packages/docs/README.md b/packages/docs/README.md index 3a5046b..2f19d52 100644 --- a/packages/docs/README.md +++ b/packages/docs/README.md @@ -31,7 +31,7 @@ REPOSITORY: https://github.com/pigeonposse/super8 AUTHORS: - - Angelo (https://pigeonposse.com) + - Angelo (https://github.com/angelespejo) DEVELOPED BY Angelo 🐦🌈 @@ -54,7 +54,8 @@ DEVELOPED BY Angelo 🐦🌈 [![License](https://img.shields.io/github/license/pigeonposse/super8?color=green&style=for-the-badge&logoColor=white)](/LICENSE) [![Core](https://img.shields.io/npm/v/@s-8/core?color=blue&style=for-the-badge&logoColor=white)](https://www.npmjs.com/package/@s-8/core) -[![Super8 web](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) +[![Version](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) + [![Chrome](https://img.shields.io/chrome-web-store/v/aejkinmllndkgoodkfbhfkffnebmibkd?color=blue&style=for-the-badge&logoColor=white)](https://chromewebstore.google.com/detail/super8/aejkinmllndkgoodkfbhfkffnebmibkd) [![Mozilla](https://img.shields.io/amo/v/{63bba7f4-510b-4478-b401-a2726a9703ba}?color=blue&style=for-the-badge&logoColor=white)](https://addons.mozilla.org/es/firefox/addon/super8/) [![Edge](https://img.shields.io/badge/dynamic/json?label=microsoft%20edge%20store&query=%24.version&url=https://microsoftedge.microsoft.com/addons/getproductdetailsbycrxid/milbmbciipbjlbjlidhgfnlkempefffi?color=blue&style=for-the-badge&logoColor=white)](https://microsoftedge.microsoft.com/addons/detail/milbmbciipbjlbjlidhgfnlkempefffi) @@ -73,7 +74,7 @@ DEVELOPED BY Angelo 🐦🌈 🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc -[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.png)](https://super8.pigeonposse.com/) +[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.gif)](https://super8.pigeonposse.com/) > **SUPER8** Documentation project @@ -109,7 +110,7 @@ This software is licensed with **[GPL-3.0](/LICENSE)**. | | Name | Role | GitHub | | ---------------------------------------------------------------------------------- | ----------- | ------------ | ---------------------------------------------- | -| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://pigeonposse.com) | +| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://github.com/angelespejo) | | Alejo | Alejo | Idea & UI Concept | [@Alejo](https://github.com/alejomalia) | | PigeonPosse | PigeonPosse | Collective | [@PigeonPosse](https://github.com/PigeonPosse) | diff --git a/packages/docs/package.json b/packages/docs/package.json index d1bcb21..68a81ff 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "@s-8/docs", - "version": "0.3.4", + "version": "0.3.5", "private": true, "type": "module", "description": "A Super8 Documentation site by PigeonPosse", diff --git a/packages/exts/CHANGELOG.md b/packages/exts/CHANGELOG.md index b06675a..b73a9ca 100644 --- a/packages/exts/CHANGELOG.md +++ b/packages/exts/CHANGELOG.md @@ -1,5 +1,7 @@ # @s-8/exts +## 0.1.8 + ## 0.1.7 ## 0.1.6 diff --git a/packages/exts/README.md b/packages/exts/README.md index 62c5cee..cf320b7 100644 --- a/packages/exts/README.md +++ b/packages/exts/README.md @@ -31,7 +31,7 @@ REPOSITORY: https://github.com/pigeonposse/super8 AUTHORS: - - Angelo (https://pigeonposse.com) + - Angelo (https://github.com/angelespejo) DEVELOPED BY Angelo 🐦🌈 @@ -54,7 +54,8 @@ DEVELOPED BY Angelo 🐦🌈 [![License](https://img.shields.io/github/license/pigeonposse/super8?color=green&style=for-the-badge&logoColor=white)](/LICENSE) [![Core](https://img.shields.io/npm/v/@s-8/core?color=blue&style=for-the-badge&logoColor=white)](https://www.npmjs.com/package/@s-8/core) -[![Super8 web](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) +[![Version](https://img.shields.io/github/package-json/v/pigeonposse/super8?filename=packages%2Fapp%2Fpackage.json?color=blue&style=for-the-badge&logoColor=white)](https://super8.pigeonposse.com/) + [![Chrome](https://img.shields.io/chrome-web-store/v/aejkinmllndkgoodkfbhfkffnebmibkd?color=blue&style=for-the-badge&logoColor=white)](https://chromewebstore.google.com/detail/super8/aejkinmllndkgoodkfbhfkffnebmibkd) [![Mozilla](https://img.shields.io/amo/v/{63bba7f4-510b-4478-b401-a2726a9703ba}?color=blue&style=for-the-badge&logoColor=white)](https://addons.mozilla.org/es/firefox/addon/super8/) [![Edge](https://img.shields.io/badge/dynamic/json?label=microsoft%20edge%20store&query=%24.version&url=https://microsoftedge.microsoft.com/addons/getproductdetailsbycrxid/milbmbciipbjlbjlidhgfnlkempefffi?color=blue&style=for-the-badge&logoColor=white)](https://microsoftedge.microsoft.com/addons/detail/milbmbciipbjlbjlidhgfnlkempefffi) @@ -73,7 +74,7 @@ DEVELOPED BY Angelo 🐦🌈 🎬🎨🧩 Add styles to web video like iFrames, YouTube & Vimeo videos, Netflix, Amazon etc -[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.png)](https://super8.pigeonposse.com/) +[![DEMO](https://raw.githubusercontent.com/pigeonposse/super8/main/docs/images/demo-filters.gif)](https://super8.pigeonposse.com/) > **SUPER8** Extension project @@ -109,7 +110,7 @@ This software is licensed with **[GPL-3.0](/LICENSE)**. | | Name | Role | GitHub | | ---------------------------------------------------------------------------------- | ----------- | ------------ | ---------------------------------------------- | -| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://pigeonposse.com) | +| Angelo | Angelo | Idea & Development & UI Design | [@Angelo](https://github.com/angelespejo) | | Alejo | Alejo | Idea & UI Concept | [@Alejo](https://github.com/alejomalia) | | PigeonPosse | PigeonPosse | Collective | [@PigeonPosse](https://github.com/PigeonPosse) | diff --git a/packages/exts/bepp.config.yml b/packages/exts/bepp.config.yml index 676878e..c6eac61 100644 --- a/packages/exts/bepp.config.yml +++ b/packages/exts/bepp.config.yml @@ -37,7 +37,7 @@ build: - type: chromium-mv2 compress: zip - type: firefox-mv2 - output: "./dist/store" + filename: "{{id}}-firefox" ## Remove mv2 in filename compress: zip - type: edge compress: zip diff --git a/packages/exts/package.json b/packages/exts/package.json index 00d9a58..a65f82b 100644 --- a/packages/exts/package.json +++ b/packages/exts/package.json @@ -2,7 +2,7 @@ "name": "@s-8/exts", "description": "Super8 browser extensions", "private": true, - "version": "0.1.7", + "version": "0.1.8", "type": "module", "license": "GPL-3.0", "scripts": {