Skip to content
Merged

Beta #65

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions .github/workflows/work.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,8 @@ on:
- beta
- master

name : 'Test Plugin Jeedom'
name : 'Full Workflows Plugin Jeedom'

jobs:
codeLintGlobal:
uses: jeedom/workflows/.github/workflows/codeLintGlobal.yml@main
php73:
uses: jeedom/workflows/.github/workflows/lint_Php73.yml@main
php74:
uses: jeedom/workflows/.github/workflows/lint_Php74.yml@main
php:
uses: jeedom/workflows/.github/workflows/php.yml@main
plugin:
uses: jeedom/workflows/.github/workflows/pluginVersion.yml@main
24 changes: 2 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
# Template de plugin pour Jeedom

Validation PHP Version (branche BETA) :

![PHP 7.3](https://github.com/jeedom/plugin-template/actions/workflows/lint_Php73.yml/badge.svg?branch=beta)
![PHP 7.4](https://github.com/jeedom/plugin-template/actions/workflows/lint_Php74.yml/badge.svg?branch=beta)

Validation Code int (branche BETA):

![PHP](https://github.com/jeedom/plugin-template/actions/workflows/php.yml/badge.svg?branch=beta)
![PHP](https://github.com/jeedom/plugin-template/actions/workflows/codeLintGlobal.yml/badge.svg?branch=beta)


--------
Validation PHP Version (branche MASTER) :

![PHP 7.3](https://github.com/jeedom/plugin-template/actions/workflows/lint_Php73.yml/badge.svg?branch=master)
![PHP 7.4](https://github.com/jeedom/plugin-template/actions/workflows/lint_Php74.yml/badge.svg?branch=master)

Validation Code int (branche MASTER):

![PHP](https://github.com/jeedom/plugin-template/actions/workflows/php.yml/badge.svg?branch=master)
![PHP](https://github.com/jeedom/plugin-template/actions/workflows/codeLintGlobal.yml/badge.svg?branch=master)

Ce "template de plugin" sert de base à la réalisation de plugins pour **Jeedom**.

La documentation générale relative à la conception de plugin est consultable [ici](https://doc.jeedom.com/fr_FR/dev/). Dans le détail :
Expand All @@ -34,3 +12,5 @@ La documentation générale relative à la conception de plugin est consultable

---
Si vous créez une branch nommée prettier, le robot workflows fera une passe complete sur le code pour que le code soit le plus uniforme possible.
---
test workflow en cours... for commit
26 changes: 26 additions & 0 deletions docs/fr_FR/changelog_beta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog plugin template - beta

# 19/01/2022

- Optimisations V4.2

# 20/11/2020

- Présentation officielle V4
- Ajouts d'éléments d'informations et de paramètres pour les commandes

# 16/11/2020

- version minimale Jeedom: 3.3.39 (dernière MAJ critique)

# 04/11/2020

- Nouvelle présentation de la liste des objets

# 07/08/2020

- Ajout de commentaires

# 17/05/2020

- Mise à jour de la documentation
23 changes: 7 additions & 16 deletions plugin_info/info.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
{
"id": "template",
"name": "Template",
"specialAttributes": {
"object": {
"toto": {
"name": {
"fr_FR": "Plop je suis un attribut spécial"
},
"type": "input"
},
"toto2": {
"name": {
"fr_FR": "Plop je suis un attribut spécial number"
},
"type": "number"
}
"id" : "template",
"name" : "Template",
"pluginVersion": "0.1",
"specialAttributes" : {
"object" : {
"toto" : {"name" : {"fr_FR" : "Plop je suis un attribut spécial"},"type" : "input"},
"toto2" : {"name" : {"fr_FR" : "Plop je suis un attribut spécial number"},"type" : "number"}
},
"user": {
"toto": {
Expand Down
Loading