Quantcast
Channel: PortableApps.com - Beta Testing
Viewing all 368 articles
Browse latest View live

MongoDB Portable Development Test

$
0
0

Application: MongoDB
Category: Development
Description: MongoDB is a NoSQL database.

Download MongoDB Portable Beta 2 release 3 [23.9MB download / 198MB installed]
(MD5 : 5bbb988f5db03b4c6c36129d9a06254c)

Data folder size :
MongoDB Portable may require between 300MB and 600MB for internal use
(journaling and diagnostic data)

Release Notes:

BETA 2 release 3 (2016-03-13):

  • Environment variables setup moved to launchers ini files
  • support Windows 7 64 bits and above

BETA 2 release 2 (2016-02-14):

  • Fixed command prompt
  • Added Splash screen
  • support Windows 7 64 bits and above

BETA 2 release 1 (2016-02-13):

  • added command prompt in order to launch binaries
  • support Windows 7 64 bits and above

BETA 1 release 1 (2016-02-07): Initial release

  • support Windows 7 64 bits and above

Forums:


DocFetcher Portable 1.1.17 Dev Test 1

$
0
0

Application: DocFetcher
Category: Utilities
Description:

DocFetcher is an Open Source desktop search application: It allows you to search the contents of files on your computer. — You can think of it as Google for your local files. (Source: Homepage)

This application requires jPortable to run.
Download DocFetcher Portable 1.1.17 Dev Test 1 [42.2MB download / 51.2MB installed]
(MD5: ca08963c41f28c5ef51445089985029e)

Project on GitHub / SourceForge

Release Notes:
1.1.17 Dev Test 1 (2016-03-17): Update base app
1.1.16 Dev Test 1 (2016-02-09): Initial release

Forums:

Google2SRT Portable 0.7.5 Dev Test 1

$
0
0

Application: Google2SRT
Category: Music & Video
Description:

What is Google2SRT?
Google2SRT is a tool that can download "not embedded" subtitles (Closed Captions - CC) from YouTube and former Google Video and convert them to a standard format (SubRip - SRT) supported by most video players. (Source: Homepage)

This application requires jPortable to run.

Download Google2SRT Portable 0.7.5 Dev Test 1 English [1.4MB download / 1.9MB installed]
(MD5: db7ec2116ccb950c7f12e911f329fa6d)

Project on GitHub / SourceForge

Release Notes:
0.7.5 Dev Test 1 (2016-04-11): Initial release

Other Notes:
This is a continuation of darsabre76's Dev Test

Forums:

Aegisub Portable 3.2.2 Dev Test 1

$
0
0

Application: Aegisub
Category: Music & Video
Description:

Aegisub is a free, cross-platform open source tool for creating and modifying subtitles. Aegisub makes it quick and easy to time subtitles to audio, and features many powerful tools for styling them, including a built-in real-time video preview. (Source: Homepage)

Download Aegisub Portable 3.2.2 Dev Test 1 English [14.6MB download / 32.9MB installed]
(MD5: c1bfae8f7e2f8d12c6bb63b22d7da8cc)

Project on GitHub / SourceForge

Release Notes:
3.2.2 Dev Test 1 (2016-04-12): Initial release

Forums:

RMDirIfNotJunction - Removing empty directories but checking if they are junctions first

$
0
0

I'm testing an NSIS function that will remove an empty directory after checking if it is a junction. Essentially, it's an RMDir (without the /r) but checking to see if the directory referenced is a REPARSE_POINT first.

Why do this? Some users use junction points within APPDATA to redirect specific directories to other drives for their local apps. For apps like Firefox and Thunderbird, the best way to do this is to use the built-in profile manager to point to a profile on your secondary drive. Some users prefer to use junctions, though. Personally, I avoid junctions and recommend against them full stop. Junctions on Windows are incredibly buggy and probably shouldn't be used.

What happens? As NSIS uses standard Windows calls, it checks to see if a given directory is empty before removing directory for commands like RMDir. Unfortunately, due to junctions being junctions, they report as empty even though the directory they point to has things in it because the directory referenced doesn't have anything in it because it doesn't exist. aka... buggy.

Working around it. I've put together a quick function that is a drop in replacement for RMDir that will remove the directory buy only after it is checked to see if it is a junction. The eventual goal is to consider replacing RMDir calls within launchers to check for the niche users that intersperse junctions within APPDATA.

Here's the code:

; RMDirIfNotJunction 1.0 (2016-04-18)
;
; Removes an empty directory if it is not a junction
;
; Usage: ${RMDirIfNotJunction} REMOVE_PATH

Function RMDirIfNotJunction
	;Start with a clean slate
	ClearErrors
	
	;Get our parameters
	Exch $0 ;REMOVE_PATH
	Push $1 ;TempVar
	
	;Determine if it is a junction
	${GetFileAttributes} "$0""REPARSE_POINT" $1
	
	${If} $1 == 0
		;Not a junction, remove the directory if empty
		RMDir $0
	${EndIf}
	
	;Clear the stack
	Pop $1
	Pop $0
FunctionEnd

!macro RMDirIfNotJunction REMOVE_PATH
  Push `${REMOVE_PATH}`
  Call RMDirIfNotJunction
!macroend

!define RMDirIfNotJunction '!insertmacro "RMDirIfNotJunction"'

And here are a couple test launchers for FirefoxPortable.exe and ThunderbirdPortable.exe. Drop them in place of the standard launcher.

Be sure to backup your Firefox/Thunderbird Portable profile *AND* your local Firefox/Thunderbird data before testing just to be safe.

Please report back your results.

Forums:

Syncthing Portable 0.12.22 Dev Test 1

$
0
0

Application: Syncthing
Category: Internet
Description:

Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet. (Source: Homepage)

Download Synchting Portable 0.12.22 Dev Test 1 [4.8MB download / 12.7MB installed]
(MD5: 9ed9247937b970f0dc099488857c18c9)

Project on GitHub / SourceForge

Release Notes:
0.12.22 Dev Test 1 (2016-05-01): Initial release

Forums:

ConEmuPortable 160522 Dev Test 1

$
0
0

Application: ConEmu
Category: Development
Description: ConEmu is local terminal emulator for Windows. Console and simple GUI applications may be run in tabs and splits.
Download ConEmuPortable_160522_Development_Test_1_English [4.1MB download / 8.7MB installed]
(MD5: 86f9f11f24bd8d3ea986031ec0878a8a)

Release Notes:

Development Test 1 (2016-05-26):

  • Update to version 160522

You can find the older version here (ConEmu Portable 150327 Development Test 3).

Forums:

SoapUI Portable 5.2.1 Dev Test 1

$
0
0

Application: SoapUI
Category: Development
Description: SoapUI is the world leading Open Source Functional Testing Tool, mainly it is used for Web Service Testing. SoapUI supports multiple protocols such as SOAP, REST, HTTP, JMS, AMF and JDBC. SoapUI enables you to create advanced Performance Tests very quickly and run Automated Functional Tests.
Download SoapUIPortable_5.2.1_Development_Test_1_English [44.3MB download / 58.0MB installed]
(MD5: e4ea679cae09f49bd1954bb93d37f577)

Release Notes:

Development Test 1 (2016-05-26):

  • Update to version 5.2.1

You can find the older version here (soapUI Portable 3.6.1 Development Test 1).

Forums:


RobomongoPortable 0.9.0 RC8 Development Test 1 English

SharpDevelopPortable 5.1.0.5216 Development Test 1

$
0
0

Application: SharpDevelop
Category: Development
Description: SharpDevelop is a free IDE for C#, VB.NET and Boo projects on Microsoft's .NET platform.

Download SharpDevelopPortable_5.1.0_Development_Test_1 [11.7MB download / 48.0MB installed]
(MD5: 3f5e6c8b395d429a3b01fedb53442edb)

Release Notes:

Development Test 1 (2016-05-28):

  • Initial release (SharpDevelop 5.1.0.5216)

Note that this tool will never be an Official App. If you are a developer it will still be useful as you know it depends on the .Net framework installation.
Check more details here.

Forums:

CodeBlocksPortable 16.01 Development Test 1 English

PicoTorrent Portable 0.9 Dev Test 1

$
0
0

Application: PicoTorrent
Category: Internet
Description:

PicoTorrent is designed to be a tiny, easy-to-use BitTorrent client with low memory usage.

We made PicoTorrent to go back to the basics of what is needed from a BitTorrent client. No ads, carefully selected features, and a native user interface integrating seamlessly with your desktop. (Source: Homepage)

Download PicoTorrent Portable 0.9 Dev Test 1 [1.4MB download / 3.0MB installed]
(MD5: d90f5e9e47602fc8b40101467a26b58b)

Project on GitHub / SourceForge

Release Notes:
0.9 Dev Test 1 (2016-06-16): Initial release

Forums:

Journal Portable 4.0 Development Test 1

$
0
0

Application:Journal (part of Productivity)
Category: Office
Description Journal is a part of the Productivity app, a program that aims to help you increase your productivity with various standalone features. Journal is one of those features, a simple journaling program for day-to-day journal entries.

Download Journal Portable 4.0 Development Test 1 [500 KB download, 1 MB installed]
(MD5: 5ef73cf2381ffffab9937c467a99eb1a)

Release Notes
Development Test 1 (2016-06-21)
Initial release

Forums:

FreeFileSync Portable 7.9 Dev Test 4 - Testers Needed

$
0
0

I've put together a development test that attempts to work around the long-standing bug in FreeFileSync 6.3 and later that renders it unable to be launched from other processes (menus, schedules, third party file managers, etc). This bug results in an error: "Cannot open file "GlobalSettings.xml". Error Code 32: The process cannot access the file because it is being used by another process. (CreateFile)" on starting the app.

This setup uses a second helper process to handle some of the file moves and break processes. Please give it a try and report back whether it works for you. Particularly if you've tried FreeFileSync 6.3 or later (the standard version without PAF) and had encountered this error on your system.

FreeFileSync Portable 7.9 Dev Test 4
Download 10MB / Installed 43MB
MD5: 6c0eae85e730ccd3c96a46f96fdcada8

Note that we're packaging FFS 7.9. The official builds of FFS 8.0 and higher can not be made portable. The app locks itself to a specific relative path in an attempt to force end users to use the bundleware installer to install and upgrade the app. This appears to be done with closed source code rendering FFS 8.0 and later binaries not open source and possibly in violation of the GPL if the project has accepted outside code under the GPL and combined it with their closed source code.

Updates
7.9 Dev Test 4 (2016-06-29): Added 1 second pause before helper launches FFS
7.9 Dev Test 3 (2016-06-27): Downgraded to 7.9 to resolve install.dat lockdown (locked to specific relative path), disabled update check
8.2 Dev Test 2 (2016-06-27): Added second process break
8.2 Dev Test 1 (2016-06-26): First public test of new method

Forums:

I2PPortable 0.9.26.0 Development Test 1

$
0
0

Original Application: I2P
Category: Internet
Description: I2P is an anonymous network, exposing a simple layer that applications can use to anonymously and securely send messages to each other. The network itself is strictly message based (a la IP), but there is a library available to allow reliable streaming communication on top of it (a la TCP). All communication is end to end encrypted (in total there are four layers of encryption used when sending a message), and even the end points ("destinations") are cryptographic identifiers (essentially a pair of public keys).
I2PPortable Project Page: https://github.com/ThePrudentNinja/I2PPortable
Requirements: jPortable
Please read the README before using/testing.

Download I2PPortable 0.9.26.0 Development Test 1 [13.5MB download / 18.8MB installed]
(MD5: 612dd73d9b7347f0efcab324be9ca4f8)

Release Notes:

0.9.26.0 Development Test 1

  • Updated I2P to 0.9.26
  • Corrected a typo in CHANGELOG
  • Attempting to recover from data storage issues
  • Modified README
  • Modified wrapper.config


See full CHANGELOG here.

Forums:


AmoK Burning Portable 2.0 Beta 9

$
0
0

Application: AmoK CD/DVD Burning
License: freeware (permission given by publisher)
Category: Utilities
Description: A powerful burning program featuring multisession, file verification, RW Deletion, ISO, CUE and BIN burning, "On the Fly" burning, Video CDs, Audio CDs, DVDVideo, Disc Caching and more.

Download AmoK Burning Portable 2.0 Beta 9 [922KB download / 840kb installed]
(MD5: 66802caf0837cf54ed0f6f9f18ffbc2e)
(SHA1: 08a3802a073a130638e71ddafbd3e3704d6294bf)
(SHA256: 24f81fff0402cb9eaf69e2e34cbf558ce5afe2d14b4c18b655400a1e64f70f57 )

English and german language


Beta 9: Bug fix in language.
Bug fixes, optimization.

Forums:

MakeHuman 1.1.0

$
0
0

Application:MakeHuman

Category: Graphics & Pictures

Description: MakeHuman is a free, open source software which allows the creation of realistic 3D human characters fast and in a simplified manner, through the manipulation of controls for different human attributes.

Download link:http://download.tuxfamily.org/makehuman/nightly/MakeHumanPortable_1.1.0_...

Release notes:

20160803: Hopefully finalized all PA metadata files (such as help). Include MHX2. Include 0_mhapi. Include 8_community_assets.

About this submission:

This release is made by the MakeHuman team, and it packages a known to be stable release. As we're new on the topic of PortableApps, we'd appreciate feedback on the PA packaging per se. For some reason it sometimes fails to uninstall (when rightclick - uninstall in the PA menu) with a message box simply saying it was unable to uninstall but with no further explanation.

Forums:

Kodi Portable 16.1 Dev Test 1

$
0
0

Application: Kodi
Category: Music & Video
Description:

Kodi® (formerly known as XBMC™) is an award-winning free and open source (GPL) software media center for playing videos, music, pictures, games, and more. (Source: Homepage)

Download Kodi Portable 16.1 Dev Test 1 [58.2MB download / 164.8MB installed]
(MD5: 6aeaa01e0b4e8bcd4b138b6aadbc1654)

Project on GitHub / SourceForge

Release Notes:
16.1 Dev Test 1 (2016-08-14): Initial release

Forums:

PA.c Installer 3.4 Dual Download Test Firefox Nightly

$
0
0

I wanted to do a broader public test on the two download capability of the PortableApps.com Installer 3.4 release.

Please download Firefox Nightly 51 Dual Mode Test.

This is in release configuration so it will overwrite an existing Firefox Nightly release if you have it.

It should download both the 32-bit and 64-bit releases and then automatically run the correct one on each PC.

Please report back your experience. Thanks!

Forums:

Need Windows XP users to test new eject utility

$
0
0

The PortableApps.com Platform uses the USB Disk Ejector utility internally to handle safe ejects of USB drives. It's a solid open source utility with years of work behind it. Unfortunately, version 1.3.x of the utility, while fixing some issues, has caused issues for some of our Windows XP users in the past. Most recently, we tried upgrading it in the Platform 14.0 release but had to revert back the old 1.1.2 disk ejector in Platform 14.1.

In preparation for the next platform release, I'd like to see if the new 1.3.0.4 version of the USB disk ejector utility is working for the Windows XP users that were affected by the drive issues previously. If you'd like to help out, please do the following:

1. Browse to the PortableApps\PortableApps.com\App\Bin directory and rename eject.exe to eject_original.exe
2. Visit the USB Disk Ejector website and click the download button at the bottom of the page (you may need to dismiss the cookie notice to see it) and then click download again on the next page.
3. Open USBDiskEjector1.3.0.4.zip and extract the USB_Disk_Eject.exe file
4. Place USB_Disk_Eject.exe in your PortableApps\PortableApps.com\App\Bin directory and rename it to eject.exe
5. Now try running the platform's eject feature on your Windows XP machine

Thanks in advance for any help you can provide with this.

Forums:

Viewing all 368 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>