iMindMap 7
Informations
Creator | Message |
---|---|
DelK
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks0 1 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. Source code#!/bin/bash # Date : (2014-09-24 15:00) # Last revision : (2015-01-07 15:12) # 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 7" PREFIX="imindmap7" APP_AUTHOR="ThinkBuzan" APP_URL="http://thinkbuzan.com/" APP_WINE_VER="1.7.27" APP_SHORTCUT_NAME="iMindMap 7" APP_SHORTUCT_FILE="iMindMap 7.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 "win7" "sp1" POL_System_TmpCreate "$PREFIX" if [ $INSTALL_METHOD = "DOWNLOAD" ]; then cd "$POL_System_TmpDir" POL_Download "http://www.thinkbuzan.com/jump/imindmap7_windows_full" "7d13d353082f0e553a1807fa2a25d051" setup_file="$POL_System_TmpDir/imindmap7_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:
ContributeMember | Message |
Dadu042 | Saturday 5 October 2019 at 13:10 |
Dadu042
|
MessageBecause of visual issues with POL installer on Xubuntu 18.04 x64, I tried Wine 2.22 (instead of 1.7.27) : iMindMap 7 installer does crash. Replies |
DelK | Wednesday 7 January 2015 at 15:17 |
DelK
|
InformationThis update has been approved by the team. MessageL'installation peut être longue et il n'y a aucune barre de progression... Differences@@ -0,0 +1,53 @@ +#!/bin/bash +# Date : (2014-09-24 15:00) +# Last revision : (2015-01-07 15:12) +# 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 7" +PREFIX="imindmap7" +APP_AUTHOR="ThinkBuzan" +APP_URL="http://thinkbuzan.com/" +APP_WINE_VER="1.7.27" +APP_SHORTCUT_NAME="iMindMap 7" +APP_SHORTUCT_FILE="iMindMap 7.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 "win7" "sp1" +POL_System_TmpCreate "$PREFIX" +if [ $INSTALL_METHOD = "DOWNLOAD" ]; then + cd "$POL_System_TmpDir" + POL_Download "http://www.thinkbuzan.com/jump/imindmap7_windows_full" "7d13d353082f0e553a1807fa2a25d051" + setup_file="$POL_System_TmpDir/imindmap7_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 New source code#!/bin/bash # Date : (2014-09-24 15:00) # Last revision : (2015-01-07 15:12) # 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 7" PREFIX="imindmap7" APP_AUTHOR="ThinkBuzan" APP_URL="http://thinkbuzan.com/" APP_WINE_VER="1.7.27" APP_SHORTCUT_NAME="iMindMap 7" APP_SHORTUCT_FILE="iMindMap 7.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 "win7" "sp1" POL_System_TmpCreate "$PREFIX" if [ $INSTALL_METHOD = "DOWNLOAD" ]; then cd "$POL_System_TmpDir" POL_Download "http://www.thinkbuzan.com/jump/imindmap7_windows_full" "7d13d353082f0e553a1807fa2a25d051" setup_file="$POL_System_TmpDir/imindmap7_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 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