I've got some ideas on extending PortableApps.comLauncher. I was just wondering how I go about getting my ideas out.
One of my ideas is something like:
In the PortableApps.comLauncher.nsi file:
;=# Define where the custom.nsh file is.
!define NSH `${PACKAGE}\App\AppInfo\Launcher\custom.nsh`
;=# Defines the RequestLevel for use with the manifest
; See http://softables.tk/docs/advanced/uac#manifests
!searchparse /noerrors /file `${NSH}` `;!define RequestLevel ` RequestLevel ``
!if ${RequestLevel} == USER
!define /redef RequestLevel USER
!else if ${RequestLevel} == ADMIN
!define /redef RequestLevel ADMIN
!else
!define /redef RequestLevel USER
!endif
In the custom.nsh file:
;!define RequestLevel USER
or
;!define RequestLevel ADMIN
Now this is just one of the ideas I have. I feel like it would be advantageous on your guys part if we tried to implement some of these ideas within PAL.