manifest.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "Wifi Hotspot",
  3. "id": "hotspot",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Create and manager wifi networks, share Internet access and use YunoHost apps accross wifi",
  7. "fr": "Créer et configurer des réseaux wifi, partager l'accès a Internet et utiliser les applications YunoHost via wifi"
  8. },
  9. "version": "2.0~ynh3",
  10. "url": "https://github.com/labriqueinternet/hotspot_ynh",
  11. "license": "AGPL-3.0",
  12. "maintainer": {
  13. "name": "Julien Vaubourg",
  14. "email": "julien@vaubourg.com",
  15. "url": "http://julien.vaubourg.com"
  16. },
  17. "upstream": {
  18. "license": "AGPL-3.0",
  19. "website": "https://internetcu.be/"
  20. },
  21. "requirements": {
  22. "yunohost": ">= 4.3.2"
  23. },
  24. "multi_instance": false,
  25. "services": [],
  26. "arguments": {
  27. "install" : [
  28. {
  29. "name": "disclaimer",
  30. "type": "display_text",
  31. "style": "info",
  32. "ask": {
  33. "en": "After installation, you will be able to configure the application from YunoHost's webadmin in Applications > Hotspot > Configuration.",
  34. "fr": "Après l'application, vous pourrez configurer l'application depuis la webadmin de YunoHost dans Applications > Hotspot > Configuration."
  35. }
  36. },
  37. {
  38. "name": "wifi_ssid",
  39. "type": "string",
  40. "ask": {
  41. "en": "Choose a wifi name (SSID)",
  42. "fr": "Choisissez un nom pour le wifi (SSID)"
  43. },
  44. "example": "myNeutralNetwork",
  45. "default": "myNeutralNetwork"
  46. },
  47. {
  48. "name": "wifi_passphrase",
  49. "type": "password",
  50. "ask": {
  51. "en": "Choose a wifi password (at least 8 characters for WPA2)",
  52. "fr": "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)"
  53. }
  54. },
  55. {
  56. "name": "firmware_nonfree",
  57. "type": "boolean",
  58. "ask": {
  59. "en": "Install non-free WiFi firmwares? (Only needed if you're using a proprietary WiFi antenna/dongle)",
  60. "fr": "Installer des firmwares WiFi non-libres ? (Nécessaire seulement si vous utilisez une antenne/clé WiFi propriétaire)"
  61. },
  62. "default": false
  63. }
  64. ]
  65. }
  66. }