Compare commits

..

20 Commits

Author SHA1 Message Date
b1def97ed7 Remove deps to openssl 2025-11-12 19:52:40 +01:00
5dd39d8019 Remove deps to openssl
All checks were successful
Release binary and debian package for cl-cli / webext-build (push) Successful in 31s
Release binary and debian package for cl-cli / build-and-release (push) Successful in 1m56s
2025-11-12 19:39:13 +01:00
a4c071b555 Remove deps to openssl 2025-11-12 19:38:47 +01:00
3fb120f8a4 add web extension to release
Some checks failed
Release binary and debian package for cl-cli / webext-build (push) Successful in 32s
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m49s
2025-11-12 19:11:09 +01:00
f524dbfea8 add web extension to release
Some checks failed
Release binary and debian package for cl-cli / webext-build (push) Successful in 30s
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m49s
2025-11-12 19:03:09 +01:00
42796684d7 add web extension to release
Some checks failed
Release binary and debian package for cl-cli / webext-build (push) Failing after 49s
Release binary and debian package for cl-cli / build-and-release (push) Has been skipped
2025-11-12 18:55:27 +01:00
2871530da2 script to sign web extension 2025-11-12 18:36:18 +01:00
f30d299071 fix build and release
Some checks failed
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m53s
2025-11-12 09:09:49 +01:00
028a803447 fix build and release
Some checks failed
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m47s
2025-11-12 08:56:40 +01:00
d3c611974f fix build and release
Some checks failed
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m49s
2025-11-11 23:04:31 +01:00
b8577b4bac fix build and release
Some checks failed
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m49s
2025-11-11 22:57:08 +01:00
b705e34086 fix build and release
Some checks failed
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m46s
2025-11-11 22:51:19 +01:00
ad4e58926e Update release workflow to include Debian package build and upload
Some checks failed
Check go code / build-and-release (push) Successful in 1m7s
Release binary and debian package for cl-cli / build-and-release (push) Failing after 1m49s
Check go code / build-and-release (pull_request) Successful in 1m8s
Check go code / build-and-release (pull_request_target) Successful in 1m5s
2025-11-11 22:44:45 +01:00
056c885e8b Append metadata to build debian package using cargo-deb 2025-11-11 22:12:02 +01:00
b0f2a1452c configure changie to update the version number automatically into Cargo.toml 2025-11-11 22:11:15 +01:00
af8983ecdd Add junie guidelines 2025-11-11 00:54:34 +01:00
5084f5b10d fix serialization of output message
All checks were successful
Check go code / build-and-release (push) Successful in 1m16s
2025-11-11 00:45:51 +01:00
55fb234db6 first web extension version 2025-11-11 00:44:49 +01:00
d8db96603b initialize webext 2025-11-07 22:48:18 +01:00
c45e12ed9a Setup a web extension and refactor code 2025-11-07 22:39:06 +01:00
6 changed files with 7 additions and 23 deletions

View File

@@ -1,3 +0,0 @@
kind: Added
body: Add a web extension
time: 2025-11-12T20:13:11.961655215+01:00

View File

@@ -25,14 +25,8 @@ newlines:
endOfVersion: 1
envPrefix: CHANGIE_
# update the version in relevant files
# update the version in the cargo file, on release
replacements:
- path: Cargo.toml
find: '^version = ".*"'
replace: 'version = "{{.VersionNoPrefix}}"'
- path: web-extension/cl/manifest.json
find: '"version": ".*"'
replace: '"version": "{{.VersionNoPrefix}}"'
- path: web-extension/cl/package.json
find: '"version": ".*"'
replace: '"version": "{{.VersionNoPrefix}}"'

2
Cargo.lock generated
View File

@@ -174,7 +174,7 @@ dependencies = [
[[package]]
name = "cl-cli"
version = "0.5.0-alpha16"
version = "0.5.0-alpha13"
dependencies = [
"clap",
"gitlab",

View File

@@ -1,8 +1,8 @@
[package]
name = "cl-cli"
version = "0.5.0-alpha16"
version = "0.5.0-alpha13"
edition = "2021"
license = "GPL-3.0-or-later"
license = "GPLv3"
description = "Some helpers scripts for Champs-Libres"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -30,12 +30,12 @@ serde_json = "1.0.145"
[package.metadata.deb]
maintainer = "Julien Fastré <julien.fastre@champs-libres.coop>"
copyright = "AGPLv3"
extended-description = """Helpers for Champs-Libres"""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/cl-cli", "usr/bin/cl", "755"],
["target/release/webext", "usr/bin/cl-webext", "755"],
["web-extension/_native-messaging/cl_cli.json", "/usr/lib/mozilla/native-messaging-hosts/", "644"]
["target/release/webext", "usr/bin/", "755"],
]

View File

@@ -1,7 +0,0 @@
{
"name": "cl_cli",
"description": "Call cl-cli from browser",
"path": "/usr/bin/cl-webext",
"type": "stdio",
"allowed_extensions": ["helper@champs-libres-coop"]
}

View File

@@ -12,7 +12,7 @@
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/firefox-webext-browser": "^143.0.0",