iMindMap 6
Informations
| Créateur | Messages |
|---|---|
DelK
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience0 0 DescriptioniMindMap is the only Mind Mapping software endorsed by the inventor himself, Tony Buzan, and has been designed to work harmoniously with the way your brain processes information. With a unique free-form Brainstorm View and an organic Mind Map View, iMindMap is the perfect digital thinking space for brainstorming ideas, planning and managing projects, and creating presentations that pop. Code source#!/bin/bash
# Date : (2014-09-24 18-00)
# Last revision : (2014-09-24 18-00)
# Wine version used : 1.7.27
# Distribution used to test : XUbuntu 14.04
# Author : Quentin Delrée
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="iMindMap 6"
PREFIX="imindmap6"
APP_AUTHOR="ThinkBuzan"
APP_URL="http://thinkbuzan.com/"
APP_WINE_VER="1.7.27"
APP_SHORTCUT_NAME="iMindMap 6"
APP_SHORTUCT_FILE="iMindMap 6.exe"
# Variables du script
setup_file=""
POL_SetupWindow_Init
POL_Debug_Init
# Informations
POL_SetupWindow_presentation "$TITLE" "$APP_AUTHOR" "$APP_URL" "Quentin Delrée" "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ $INSTALL_METHOD = "LOCAL" ]; then
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
setup_file="$APP_ANSWER"
fi
# Installation
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$APP_WINE_VER"
Set_OS "winxp" "sp3"
POL_System_TmpCreate "$PREFIX"
if [ $INSTALL_METHOD = "DOWNLOAD" ]; then
cd "$POL_System_TmpDir"
POL_Download "http://www.thinkbuzan.com/jump/imindmap6_windows_full" "53aa60b66af6e8f439be34ff5e3136ef"
setup_file="$POL_System_TmpDir/imindmap6_windows_full"
fi
POL_Function_FontsSmoothRGB
POL_Wine start /unix "$setup_file"
POL_Wine_WaitExit "$ITLE"
POL_System_TmpDelete
POL_Shortcut "$APP_SHORTUCT_FILE" "$APP_SHORTCUT_NAME"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
POL_SetupWindow_Close
exit |
Contributions
Filters:
Contribuer| Membre | Messages |
| DelK | Mercredi 7 Janvier 2015 à 10:13 |
DelK
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -0,0 +1,53 @@ +#!/bin/bash +# Date : (2014-09-24 18-00) +# Last revision : (2014-09-24 18-00) +# Wine version used : 1.7.27 +# Distribution used to test : XUbuntu 14.04 +# Author : Quentin Delrée + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="iMindMap 6" +PREFIX="imindmap6" +APP_AUTHOR="ThinkBuzan" +APP_URL="http://thinkbuzan.com/" +APP_WINE_VER="1.7.27" +APP_SHORTCUT_NAME="iMindMap 6" +APP_SHORTUCT_FILE="iMindMap 6.exe" + + +# Variables du script +setup_file="" + + +POL_SetupWindow_Init +POL_Debug_Init + +# Informations +POL_SetupWindow_presentation "$TITLE" "$APP_AUTHOR" "$APP_URL" "Quentin Delrée" "$PREFIX" +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ $INSTALL_METHOD = "LOCAL" ]; then + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + setup_file="$APP_ANSWER" +fi + +# Installation +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$APP_WINE_VER" +Set_OS "winxp" "sp3" +POL_System_TmpCreate "$PREFIX" +if [ $INSTALL_METHOD = "DOWNLOAD" ]; then + cd "$POL_System_TmpDir" + POL_Download "http://www.thinkbuzan.com/jump/imindmap6_windows_full" "53aa60b66af6e8f439be34ff5e3136ef" + setup_file="$POL_System_TmpDir/imindmap6_windows_full" +fi +POL_Function_FontsSmoothRGB +POL_Wine start /unix "$setup_file" +POL_Wine_WaitExit "$ITLE" +POL_System_TmpDelete +POL_Shortcut "$APP_SHORTUCT_FILE" "$APP_SHORTCUT_NAME" +POL_SetupWindow_message "Your application has been installed successfully." "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash
# Date : (2014-09-24 18-00)
# Last revision : (2014-09-24 18-00)
# Wine version used : 1.7.27
# Distribution used to test : XUbuntu 14.04
# Author : Quentin Delrée
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="iMindMap 6"
PREFIX="imindmap6"
APP_AUTHOR="ThinkBuzan"
APP_URL="http://thinkbuzan.com/"
APP_WINE_VER="1.7.27"
APP_SHORTCUT_NAME="iMindMap 6"
APP_SHORTUCT_FILE="iMindMap 6.exe"
# Variables du script
setup_file=""
POL_SetupWindow_Init
POL_Debug_Init
# Informations
POL_SetupWindow_presentation "$TITLE" "$APP_AUTHOR" "$APP_URL" "Quentin Delrée" "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ $INSTALL_METHOD = "LOCAL" ]; then
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
setup_file="$APP_ANSWER"
fi
# Installation
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$APP_WINE_VER"
Set_OS "winxp" "sp3"
POL_System_TmpCreate "$PREFIX"
if [ $INSTALL_METHOD = "DOWNLOAD" ]; then
cd "$POL_System_TmpDir"
POL_Download "http://www.thinkbuzan.com/jump/imindmap6_windows_full" "53aa60b66af6e8f439be34ff5e3136ef"
setup_file="$POL_System_TmpDir/imindmap6_windows_full"
fi
POL_Function_FontsSmoothRGB
POL_Wine start /unix "$setup_file"
POL_Wine_WaitExit "$ITLE"
POL_System_TmpDelete
POL_Shortcut "$APP_SHORTUCT_FILE" "$APP_SHORTCUT_NAME"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
POL_SetupWindow_Close
exit Réponses |
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
Installer ce programme