Freeplane
Silent install package for Freeplane
1.12.10-10
Utilities
Utilities
- package: tis-freeplane
- name: Freeplane
- version: 1.12.10-10
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Simon Fonteneau,Jimmy PELÉ
- editor: Dimitry Polivaev, et al.
- licence: opensource_free,wapt_public
- locale: all
- target_os: windows
- impacted_process: freeplane,freeplaneConsole
- architecture: all
- signature_date:
- size: 96.38 Mo
- installed_size: 209.32 Mo
- homepage : https://docs.freeplane.org/
package : tis-freeplane
version : 1.12.10-10
architecture : all
section : base
priority : optional
name : Freeplane
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Simon Fonteneau,Jimmy PELÉ
description : Freeplane is a free and open source software application that supports thinking, sharing information, getting things done at work, in school and at home. It provides you a set of tools for mind mapping
depends :
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.3
sources : https://sourceforge.net/projects/freeplane/
installed_size : 209323766
impacted_process : freeplane,freeplaneConsole
description_fr : Freeplane est un logiciel libre et gratuit qui aide à réfléchir, à partager des informations et à faire avancer les choses au travail, à l'école et à la maison. Il fournit un ensemble d'outils pour la cartographie mentale
description_pl : Freeplane to darmowa aplikacja o otwartym kodzie źródłowym, która wspiera myślenie, dzielenie się informacjami, załatwianie spraw w pracy, w szkole i w domu. Zapewnia zestaw narzędzi do tworzenia map myśli
description_de : Freeplane ist eine freie und quelloffene Softwareanwendung, die das Denken, den Austausch von Informationen und das Erledigen von Aufgaben bei der Arbeit, in der Schule und zu Hause unterstützt. Es bietet Ihnen eine Reihe von Werkzeugen für Mindmapping
description_es : Freeplane es una aplicación de software libre y de código abierto que ayuda a pensar, compartir información y hacer cosas en el trabajo, en la escuela y en casa. Le proporciona un conjunto de herramientas para la creación de mapas mentales
description_pt : O Freeplane é uma aplicação de software gratuita e de código aberto que apoia o pensamento, a partilha de informações e a realização de tarefas no trabalho, na escola e em casa. Fornece-lhe um conjunto de ferramentas para mapas mentais
description_it : Freeplane è un'applicazione software gratuita e open source che supporta il pensiero, la condivisione di informazioni e la realizzazione di attività al lavoro, a scuola e a casa. Fornisce una serie di strumenti per la mappatura della mente
description_nl : Freeplane is een gratis en open source softwaretoepassing die het denken ondersteunt, informatie deelt en dingen gedaan krijgt op het werk, op school en thuis. Het biedt een set hulpmiddelen voor mindmapping
description_ru : Freeplane - это бесплатное программное приложение с открытым исходным кодом, которое помогает думать, обмениваться информацией, добиваться результатов на работе, в школе и дома. Оно предоставляет вам набор инструментов для составления карт ума
audit_schedule :
editor : Dimitry Polivaev, et al.
keywords : freeplane,mind,maps,idea,ideas,electronic,outlines,outline
licence : opensource_free,wapt_public
homepage : https://docs.freeplane.org/
package_uuid : 7bb10009-6a9e-4d75-9523-211b01f3168c
valid_from :
valid_until :
forced_install_on :
changelog : https://www.freeplane.org/info/history/history_en.txt
min_os_version :
max_os_version :
icon_sha256sum : 85f385cea79a373d7dd5e18e2357c2b038653f8d15425d2145591ee29cbb1607
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-02-14T16:00:13.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : Ua1wp9XegOo/4elLHwD8uVKzeIk3+lJU8Ux4b2e91j/A3XC/jPkSUu75qezg9TkYCxYSSDKTy8OSXEsiv694puRSj6LZoDdduzc0YmSbil1kXFBTLzsgQNskpeI6PBlOJY2A95XFaeQ0HVUot5FhzVw/c35He1oExvxHqx/qGvh/dYRcpbuSenLduSOOHpH7sZRVoODul9qnzP0CuE00wzM24Bw0mMxleP8MWaU5lkYflVoNncXROH4OU6kxgduVpj79MAk2vTHFfdqx/cxI1QxdVcxHSeMlB5sYknyVGKtJ7YfMfz4TpFsPEH5GW9lftczFgmu+M+QlJgGoS6c49A==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("Freeplane-Setup-*.exe")[0]
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
key="{D3941722-C4DD-4509-88C4-0E87F675A859}_is1",
min_version=control.get_software_version(),
timeout=600,
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
api_url = "https://sourceforge.net/projects/freeplane/best_release.json"
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for download in json_load["platform_releases"]:
latest_bin = json_load["platform_releases"][download]["filename"].split("/")[-1]
if ".exe" in latest_bin:
download_url = json_load["platform_releases"][download]["url"].rsplit("/", 1)[0] + "/" + latest_bin
version = json_load["platform_releases"][download]["filename"].rsplit("-",1)[-1].rsplit(".",1)[0]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
print("Changing version to the version number of the binary")
# os.rename(latest_bin, latest_bin.replace(version, version_from_file))
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Deleting outdated binaries
remove_outdated_binaries(latest_bin)
# Validating update-package-sources
return package_updated
83eda46a42f415c6669b9ea6fd19b2c1748e3f403bd6c5bd71f3d83472724ba0 : Freeplane-Setup-1.12.10-pre01.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
1057a6839e6f8c253385e96b835276110516f8ea5b3efbdda7a9d43b499b20d4 : WAPT/changelog.txt
98702dea19bb475d75182157c09fa89bbc080fc099d0f2ff7a6595141c596270 : WAPT/control
85f385cea79a373d7dd5e18e2357c2b038653f8d15425d2145591ee29cbb1607 : WAPT/icon.png
36110afbac6e782df6ee22126ca5110aaa8213f1f028897dd6bc77bbfe5aba94 : luti.json
3f350eb794141113111f988dd6787fffbd76a3c90128efbe30a41d12796921ce : setup.py
5b3935940a103cf10b6c62a064772b3edc767aad8c319c976989c90e5ea2edf8 : update_package.py
https://www.freeplane.org/info/history/history_en.txt
1.11.4-10
===
Java now included