RaidCall
Informations
Creator | Message |
---|---|
Trucosuso
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks4 1 DescriptionRaidCall (or RC) is a Freeware VoIP software that also includes text chat. RaidCall is an audio service based on Cloud-computing. Both the client and server software are Freeware. RaidCall relies on the most popular and powerful audio-engine, Speex, to effectively reduce noise and promote audio quality. RaidCall utilizes UDP as communication protocol, and advanced packet recovery algorithm to reduce Latency. The software takes up ~2MB of RAM and uses 0.02-0.07% of CPU resource. (Source: Wikipedia) Source code#!/usr/bin/env playonlinux-bash # Date : (2015-02-04 15-30) # Last revision : (2015-05-20 00-23) # Wine version used : 1.5.0 # Distribution used to test : Ubuntu 14.10 # Author : Trucosuso [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="RaidCall" PREFIX="raidcall" # Get the images fot the presentation window POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2420 # Enable debugging POL_Debug_Init # Presentation of the program POL_SetupWindow_presentation "$TITLE" "RaidCall" "http://www.raidcall.com/" "Trucosuso" "$PREFIX" # Selection of a prefix for wine and creation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.5.0" # Create the temp directory POL_System_TmpCreate "$PREFIX" # Download installer to the temp directory cd "$POL_System_TmpDir" POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "d09a3e9d8cb3a83797fa63b644c6f9bd" # Running the instalation file from the temp directory POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$POL_System_TmpDir/raidcall_v7.3.6.exe" # Waiting for the installer to finish POL_Wine_WaitExit "$TITLE" # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "raidcall.exe" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Wednesday 25 December 2019 at 9:46 |
Dadu042
|
MessageWeb site (RaidCall) seems shut down. Replies |
mauriciofauth | Wednesday 20 May 2015 at 5:46 |
mauriciofauth
|
InformationThis update has been approved by the team. Differences@@ -1,8 +1,8 @@ -#!/bin/bash +#!/usr/bin/env playonlinux-bash # Date : (2015-02-04 15-30) -# Last revision : (2015-02-04 15-30) +# Last revision : (2015-05-20 00-23) # Wine version used : 1.5.0 -# Distribution used to test : Xubuntu 14.04 LTS +# Distribution used to test : Ubuntu 14.10 # Author : Trucosuso [ "$PLAYONLINUX" = "" ] && exit 0 @@ -31,7 +31,7 @@ # Download installer to the temp directory cd "$POL_System_TmpDir" -POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "5aa177f4358cd9dac052cd6d5b4564b0" +POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "d09a3e9d8cb3a83797fa63b644c6f9bd" # Running the instalation file from the temp directory POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" New source code#!/usr/bin/env playonlinux-bash # Date : (2015-02-04 15-30) # Last revision : (2015-05-20 00-23) # Wine version used : 1.5.0 # Distribution used to test : Ubuntu 14.10 # Author : Trucosuso [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="RaidCall" PREFIX="raidcall" # Get the images fot the presentation window POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2420 # Enable debugging POL_Debug_Init # Presentation of the program POL_SetupWindow_presentation "$TITLE" "RaidCall" "http://www.raidcall.com/" "Trucosuso" "$PREFIX" # Selection of a prefix for wine and creation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.5.0" # Create the temp directory POL_System_TmpCreate "$PREFIX" # Download installer to the temp directory cd "$POL_System_TmpDir" POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "d09a3e9d8cb3a83797fa63b644c6f9bd" # Running the instalation file from the temp directory POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$POL_System_TmpDir/raidcall_v7.3.6.exe" # Waiting for the installer to finish POL_Wine_WaitExit "$TITLE" # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "raidcall.exe" "$TITLE" POL_SetupWindow_Close exit Replies |
Trucosuso | Sunday 8 February 2015 at 13:25 |
Trucosuso
|
MessageI've just realised there is an error, you must check "No es necesario CD", which I think it's a bad translation of "No-CD nedeed", for the RaidCall instaler to show up. I think the correct translation would be "Crack No-CD necesario".
Replies |
petch | Wednesday 4 February 2015 at 19:06 |
petch
|
WarningThis update has not been approved yet by the team. Message- added POL_SetupWindow_SetID statement; - used POL_Wine_WaitBefore instead of POL_SetupWindow_wait with standard wait message (same effect); - POL_Wine_WaitBefore and POL_Wine_WaitExit around the same POL_Wine should be unnecessary, as the first is useful if the POL_Wine call is synchronous and the latter if it's asynchronous; However I can't tell which case it is (probably synchronous, so the POL_Wine_WaitExit may be unneeded); - removed the "successful" message at the end of the script, this is deprecated since it's displayed even if some non fatal error happened before. PlayOnLinux/PlayOnMac will instead display some message if some error happened. Differences@@ -15,6 +15,7 @@ POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init +POL_SetupWindow_SetID 2420 # Enable debugging POL_Debug_Init @@ -34,7 +35,7 @@ # Running the instalation file from the temp directory POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" -POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" +POL_Wine_WaitBefore "$TITLE" POL_Wine "$POL_System_TmpDir/raidcall_v7.3.6.exe" # Waiting for the installer to finish @@ -46,8 +47,5 @@ # Create a launcher POL_Shortcut "raidcall.exe" "$TITLE" -# Confirm of the succesfull instalation of the program -POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" - POL_SetupWindow_Close exit \ No newline at end of file New source code#!/bin/bash # Date : (2015-02-04 15-30) # Last revision : (2015-02-04 15-30) # Wine version used : 1.5.0 # Distribution used to test : Xubuntu 14.04 LTS # Author : Trucosuso [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="RaidCall" PREFIX="raidcall" # Get the images fot the presentation window POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2420 # Enable debugging POL_Debug_Init # Presentation of the program POL_SetupWindow_presentation "$TITLE" "RaidCall" "http://www.raidcall.com/" "Trucosuso" "$PREFIX" # Selection of a prefix for wine and creation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.5.0" # Create the temp directory POL_System_TmpCreate "$PREFIX" # Download installer to the temp directory cd "$POL_System_TmpDir" POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "5aa177f4358cd9dac052cd6d5b4564b0" # Running the instalation file from the temp directory POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$POL_System_TmpDir/raidcall_v7.3.6.exe" # Waiting for the installer to finish POL_Wine_WaitExit "$TITLE" # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "raidcall.exe" "$TITLE" POL_SetupWindow_Close exit RepliesThursday 5 February 2015 at 9:55
Edited by petch |
Trucosuso | Wednesday 4 February 2015 at 15:29 |
Trucosuso
|
WarningThis update has not been approved yet by the team. MessageThis is the code, i couldn't find the way to put it on the first message. Where i can upload the images in order to make POL_GetSetupImages work? Differences@@ -0,0 +1,53 @@ +#!/bin/bash +# Date : (2015-02-04 15-30) +# Last revision : (2015-02-04 15-30) +# Wine version used : 1.5.0 +# Distribution used to test : Xubuntu 14.04 LTS +# Author : Trucosuso + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="RaidCall" +PREFIX="raidcall" + +# Get the images fot the presentation window +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +# Enable debugging +POL_Debug_Init + +# Presentation of the program +POL_SetupWindow_presentation "$TITLE" "RaidCall" "http://www.raidcall.com/" "Trucosuso" "$PREFIX" + +# Selection of a prefix for wine and creation +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "1.5.0" + +# Create the temp directory +POL_System_TmpCreate "$PREFIX" + +# Download installer to the temp directory +cd "$POL_System_TmpDir" +POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "5aa177f4358cd9dac052cd6d5b4564b0" + +# Running the instalation file from the temp directory +POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" +POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" +POL_Wine "$POL_System_TmpDir/raidcall_v7.3.6.exe" + +# Waiting for the installer to finish +POL_Wine_WaitExit "$TITLE" + +# Delete temp directory +POL_System_TmpDelete + +# Create a launcher +POL_Shortcut "raidcall.exe" "$TITLE" + +# Confirm of the succesfull instalation of the program +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash # Date : (2015-02-04 15-30) # Last revision : (2015-02-04 15-30) # Wine version used : 1.5.0 # Distribution used to test : Xubuntu 14.04 LTS # Author : Trucosuso [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="RaidCall" PREFIX="raidcall" # Get the images fot the presentation window POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init # Enable debugging POL_Debug_Init # Presentation of the program POL_SetupWindow_presentation "$TITLE" "RaidCall" "http://www.raidcall.com/" "Trucosuso" "$PREFIX" # Selection of a prefix for wine and creation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.5.0" # Create the temp directory POL_System_TmpCreate "$PREFIX" # Download installer to the temp directory cd "$POL_System_TmpDir" POL_Download "http://update.raidcall.com/download/raidcall_v7.3.6.exe" "5aa177f4358cd9dac052cd6d5b4564b0" # Running the instalation file from the temp directory POL_SetupWindow_message "$(eval_gettext 'When installing, be sure not to let RaidCall launch automatically, so the POL setup can complete.')" "$TITLE" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$POL_System_TmpDir/raidcall_v7.3.6.exe" # Waiting for the installer to finish POL_Wine_WaitExit "$TITLE" # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "raidcall.exe" "$TITLE" # Confirm of the succesfull instalation of the program POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit Replies |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com