You are here

Portable App Development

Discuss portable app development and modification of existing apps.

Improve LosslessCut app

Submitted by xmha97 on December 12, 2022 - 4:29pm

Hi, The portable version of the LosslessCut app can be improved.

LosslessCutPortable.ini:

    [Launch]
    ProgramExecutable=LosslessCut\LosslessCut.exe
➖ ;WorkingDirectory=%PAL:AppDir%\LosslessCut
➕ CommandLineArguments=--user-data-dir=%PAL:DataDir%\AppData
    DirectoryMoveOK=yes
    SupportsUNC=yes

➖ [DirectoriesMove]
➖ LosslessCutAppData=%APPDATA%\LosslessCut
⋮

This command line can be used for all Electron apps.

Thanks.

Contributing code changes for PortableAppsPlatform

Dustin Luck's picture
Submitted by Dustin Luck on December 3, 2022 - 4:09pm

Please forgive me if this has been answered/documented somewhere. I have looked and couldn't find anything.

TLDR
I have coded a new feature and would like to know how to submit it to be considered for inclusion in PortableAppsPlatform.

Details
I was looking for a way to set environment variables (specifically the PATH) globally for all the portable apps I use. I know i can modify them for each individual app, but it saves a lot of trouble by doing it in one place.

Security Issues with PortableApps

Submitted by portabc on November 20, 2022 - 12:52pm

Dear PortableApps Developers,

It came to my attention, that PortablApps has some pretty huge security issues, that could be easily avoided, if the person responsible for updating portable apps had just a smudge of understanding what an update on other than MS Windows system is and how it differs.

There is of course the second matter of abandoned apps and a complete mess with the choice of apps presented to the end user, with complete disregard over their privacy and security.

Naming - Portable before or after?

Submitted by kermik on November 4, 2022 - 11:20am

Because of old habits mostly I have since the beginning named my portable apps in the form of PortableFirefox (as an example). The portable apps platform nor the manual updater does not accept this right away but wants the form FirefoxPortable (no space). If I don't use this form the platform will not update the apps.
Is there any way I can "fix" this as I would like to keep my naming in the form of PortableFirefox or at least PortableFirefox?

where are the trully portable files?

Submitted by Greg Harbs on October 24, 2022 - 11:44am

really... where are simple .zip files?^
as if having "installers for portable" (which is nonsense on its own... but tolerated while it was optional, which does not seem to be anymore) but who was the [slur removed by mod JTH] person that tought it was a good idea to make the installer automatically select between 32bit and 64bit?

so now its impossible to "install the 32bit" on 64bit windows?????

really.. i dont think it can get any more dumb than that luls...

Deploying PortableApps via PowerShell

Submitted by roysubs on October 5, 2022 - 7:28am

I notice that PortableApps executable containers can simply be unzipped, but also possibly there are switches to do it according to your standards, so I would like know the best way to do this in PowerShell. i.e. I want to *silently* deploy some app:

$7z = "D:\MyDownloads\7zipPortable.exe"
if (Test-Path $7z) { & $7z [whatever-switches-required] [install-directory-of-my-choice] }

Would appreciate any advice on the correct / most efficient way to do this for multiple packages?

Support passing launching command line switch/parameter in appinfo.ini

Submitted by Mark888 on September 28, 2022 - 12:12pm

Hello,

While some kinds of command line parameter are supported under [Associations] section such as: FileTypeCommandLine, FileTypeCommandLine-extension, ProtocolCommandLine, SendToCommandLine, ShellCommandLine; the command line switch/parameter for launching the app is poorly supported. It is only supported via myAppPortable.ini which is not so obvious and only support for main App.

My suggestion is something as below:

appinfo.ini
[Control]
Start=AppNamePortable.exe

Pages