You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2021/09/20 09:55:21 UTC

[GitHub] [cordova-electron] miroslavvojtus opened a new issue #208: EULA agreement as part of installation process

miroslavvojtus opened a new issue #208:
URL: https://github.com/apache/cordova-electron/issues/208


   Hello,
   
   we are using Cordova to build our application.
   
   We need to distribute our application to end-users, but from legal perspective we need from them to agree with our EULA in order to use it. 
   Is there a way to configure electron-builder from Cordova's `build.json` to use our EULA text to be used as pre install agreement step?
   
   THX


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-electron] miroslavvojtus closed issue #208: EULA agreement as part of installation process

Posted by GitBox <gi...@apache.org>.
miroslavvojtus closed issue #208:
URL: https://github.com/apache/cordova-electron/issues/208


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org


[GitHub] [cordova-electron] miroslavvojtus commented on issue #208: EULA agreement as part of installation process

Posted by GitBox <gi...@apache.org>.
miroslavvojtus commented on issue #208:
URL: https://github.com/apache/cordova-electron/issues/208#issuecomment-931069915


   I found out that it is possible to configure possibly any electron-builder option like:
   
   
   package.json:
   ```json
   {
     "build": {
       "nsis": {
         "license": "path/to/your/license.txt"
       }
     }
   }
   ```
   
   build.json
   ```json
   {
     "electron": {
         "windows": {
             "package": [{
               "nsis": {
                 "license": "path/to/your/license.txt"
               }
             }]
         }
     }
   }
   ```
   
   It should be possible also through "electron-builder.json".


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org