Compare commits
49 Commits
f25b9e91b0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| ec7bf82421 | |||
|
|
94fd7f9f81 | ||
|
|
5c12de59bd | ||
|
|
9a29cd9be5 | ||
|
|
6853c882de | ||
|
|
c4897062af | ||
|
|
cb20957171 | ||
|
|
7814a6a3de | ||
|
|
fd54ef990c | ||
|
|
09ddca6957 | ||
|
|
24a18e8f8e | ||
|
|
d4fb8a054b | ||
|
|
7b2c6affe1 | ||
|
|
1bf2fbe3a6 | ||
|
|
b9481a7dad | ||
|
|
fd65ad9de1 | ||
| 343d85d5a0 | |||
|
|
09267c7501 | ||
| 292f55e89f | |||
|
|
0d4407b100 | ||
|
|
6b3295e532 | ||
|
|
1ae6d73338 | ||
| 414eebee5f | |||
|
|
4c1a53cdf9 | ||
|
|
6f03935906 | ||
|
|
6858b95854 | ||
|
|
079deec711 | ||
|
|
2bbbd69e0c | ||
|
|
c0c579656c | ||
|
|
4cfcaf62aa | ||
|
|
5bc492f3c0 | ||
|
|
e5d3aec15f | ||
|
|
dbbe0cae04 | ||
| 1c32a78c0b | |||
|
|
784e537f26 | ||
|
|
1b7c56b088 | ||
| f7543cfa1d | |||
|
|
d5a86b84a3 | ||
|
|
6a5a2adbdc | ||
|
|
553506c02b | ||
|
|
6277bb50c6 | ||
|
|
94241fae82 | ||
|
|
c9db282086 | ||
|
|
2e8ccfff02 | ||
|
|
d48fe649be | ||
|
|
dc95613d8e | ||
|
|
0be91c0611 | ||
|
|
ef6e9a7c48 | ||
|
|
12fbfe15bc |
77
.gitea/workflows/ci.yml
Normal file
77
.gitea/workflows/ci.yml
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main, master]
|
||||||
|
pull_request:
|
||||||
|
branches: [main, master]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: '24'
|
||||||
|
|
||||||
|
- run: npm install --only=dev
|
||||||
|
|
||||||
|
- name: web-ext lint
|
||||||
|
run: npx web-ext lint -v
|
||||||
|
|
||||||
|
- name: Increment Version and Commit
|
||||||
|
if: github.event_name == 'push' # Only push back on actual merges/pushes, not PRs
|
||||||
|
run: |
|
||||||
|
# 1. Increment logic
|
||||||
|
VERSION=$(jq -r '.version' manifest.json)
|
||||||
|
BASE=$(echo $VERSION | cut -d. -f1-2)
|
||||||
|
PATCH=$(echo $VERSION | cut -d. -f3)
|
||||||
|
NEW_VERSION="$BASE.$((PATCH + 1))"
|
||||||
|
|
||||||
|
# Update manifest.json version
|
||||||
|
jq ".version = \"$NEW_VERSION\"" manifest.json > temp.manifest.json && mv temp.manifest.json manifest.json
|
||||||
|
|
||||||
|
# Keep package.json version in sync, if present
|
||||||
|
if [ -f package.json ]; then
|
||||||
|
jq ".version = \"$NEW_VERSION\"" package.json > temp.package.json && mv temp.package.json package.json
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 2. Git Config
|
||||||
|
git config --local user.email "space@reversed.dev"
|
||||||
|
git config --local user.name "space"
|
||||||
|
|
||||||
|
# 3. Commit (push will be done after publish)
|
||||||
|
git add manifest.json package.json
|
||||||
|
git commit -m "chore: bump version to $NEW_VERSION [skip ci]"
|
||||||
|
|
||||||
|
- name: web-ext build
|
||||||
|
run: npx web-ext build -s . -a dist --overwrite-dest
|
||||||
|
|
||||||
|
- name: Unzip build artifact
|
||||||
|
run: |
|
||||||
|
mkdir -p disst
|
||||||
|
unzip -o dist/*.zip -d disst
|
||||||
|
|
||||||
|
- name: Upload build artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: web-ext-build
|
||||||
|
path: disst/**
|
||||||
|
|
||||||
|
- name: Publish to Mozilla Add-ons
|
||||||
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
|
||||||
|
run: |
|
||||||
|
npx web-ext sign \
|
||||||
|
--api-key ${{ secrets.MOZILLA_ADDON_API_KEY }} \
|
||||||
|
--api-secret ${{ secrets.MOZILLA_ADDON_API_SECRET }} \
|
||||||
|
--channel listed \
|
||||||
|
--approval-timeout 0 \
|
||||||
|
--source-dir . \
|
||||||
|
--artifacts-dir dist \
|
||||||
|
--amo-metadata metadata.json
|
||||||
|
|
||||||
|
- name: Push changes
|
||||||
|
if: github.event_name == 'push'
|
||||||
|
run: git push
|
||||||
37
.gitea/workflows/dev.yml
Normal file
37
.gitea/workflows/dev.yml
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [dev]
|
||||||
|
pull_request:
|
||||||
|
branches: [dev]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: '24'
|
||||||
|
|
||||||
|
- run: npm install --only=dev
|
||||||
|
|
||||||
|
- name: web-ext lint
|
||||||
|
run: npx web-ext lint -v
|
||||||
|
|
||||||
|
- name: web-ext build
|
||||||
|
run: npx web-ext build -s . -a dist --overwrite-dest
|
||||||
|
|
||||||
|
- name: Unzip build artifact
|
||||||
|
run: |
|
||||||
|
mkdir -p disst
|
||||||
|
unzip -o dist/*.zip -d disst
|
||||||
|
|
||||||
|
- name: Upload build artifact
|
||||||
|
# v4+ not supported on Gitea Actions/Forgejo, use v3 for compatibility
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: web-ext-build
|
||||||
|
path: disst/**
|
||||||
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
web-ext-artifacts/
|
||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
*.zip
|
||||||
|
*.xpi
|
||||||
@@ -1,17 +1,36 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "vinted-favs-price",
|
"name": "Vinted Favorites Price",
|
||||||
"version": "1.0",
|
"version": "1.4.1",
|
||||||
|
"icons": {
|
||||||
|
"16": "icon.png",
|
||||||
|
"32": "icon.png",
|
||||||
|
"48": "icon.png",
|
||||||
|
"128": "icon.png"
|
||||||
|
},
|
||||||
|
"categories": {
|
||||||
|
"firefox": [
|
||||||
|
"shopping"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"requires_payment": false,
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
{
|
{
|
||||||
"matches": ["https://www.vinted.de/member/items/favourite_list"],
|
"matches": [
|
||||||
"js": ["calculate-total.js"]
|
"https://www.vinted.de/member/items/favourite_list"
|
||||||
|
],
|
||||||
|
"js": [
|
||||||
|
"calculate-total.js"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"browser_specific_settings": {
|
"browser_specific_settings": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
|
"id": "{425f78c9-e49e-4346-a7b5-b03ce33ea526}",
|
||||||
"data_collection_permissions": {
|
"data_collection_permissions": {
|
||||||
"required": ["websiteContent"]
|
"required": [
|
||||||
|
"websiteContent"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
11
metadata.json
Normal file
11
metadata.json
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": { "license": "MIT" },
|
||||||
|
"categories": { "firefox": ["shopping"] },
|
||||||
|
"requires_payment": false,
|
||||||
|
"icons": {
|
||||||
|
"16": "icon.png",
|
||||||
|
"32": "icon.png",
|
||||||
|
"48": "icon.png",
|
||||||
|
"128": "icon.png"
|
||||||
|
}
|
||||||
|
}
|
||||||
4118
package-lock.json
generated
Normal file
4118
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
19
package.json
Normal file
19
package.json
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "vinted-favs-price",
|
||||||
|
"version": "1.4.1",
|
||||||
|
"description": "Firefox extension to track Vinted favorite prices.",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"start": "web-ext run",
|
||||||
|
"lint": "web-ext lint",
|
||||||
|
"build": "web-ext build -s . -a dist --overwrite-dest",
|
||||||
|
"sign": "web-ext sign"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"web-ext": "^8.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=24.0.0"
|
||||||
|
},
|
||||||
|
"private": true
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user