- package: tis-openboard
- name: OpenBoard
- version: 1.7.0-5
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: Open Education Foundation
- licence: GPLv3
- locale: all
- target_os: windows
- impacted_process: OpenBoard,OpenBoardImporter
- architecture: all
- signature_date:
- size: 149.15 Mo
- installed_size: 210.79 Mo
- homepage : https://openboard.ch/
- depends:
package : tis-openboard
version : 1.7.0-5
architecture : all
section : base
priority : optional
name : OpenBoard
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : OpenBoard is a free and open-source interactive whiteboard software compatible with any projector and pointing device.
depends : tis-vcredist2013,tis-vcredist,tis-lavfilters
conflicts :
maturity : PROD
locale : all
target_os : windows
min_wapt_version : 2.0
sources : https://github.com/OpenBoard-org/OpenBoard/releases
installed_size : 210786048
impacted_process : OpenBoard,OpenBoardImporter
description_fr : OpenBoard est un logiciel libre, gratuit et multiplateforme de tableau blanc interactif compatible avec n'importe quel projecteur et dispositif de pointage.
description_pl : OpenBoard to darmowe i open-source'owe oprogramowanie do tablic interaktywnych kompatybilne z dowolnym projektorem i urządzeniem wskazującym
description_de : OpenBoard ist eine kostenlose und quelloffene interaktive Whiteboard-Software, die mit jedem Projektor und Zeigegerät kompatibel ist
description_es : OpenBoard es un software de pizarra interactiva gratuito y de código abierto compatible con cualquier proyector y dispositivo señalador
description_pt : OpenBoard é um software de quadro branco interactivo gratuito e de código aberto compatível com qualquer projector e dispositivo apontador
description_it : OpenBoard è un software per lavagne interattive gratuito e open-source compatibile con qualsiasi proiettore e dispositivo di puntamento
description_nl : OpenBoard is een gratis en open-source interactieve whiteboard software die compatibel is met elke projector en aanwijsapparaat
description_ru : OpenBoard - это бесплатное программное обеспечение с открытым исходным кодом для интерактивных досок, совместимое с любым проектором и указывающим устройством
audit_schedule :
editor : Open Education Foundation
keywords :
licence : GPLv3
homepage : https://openboard.ch/
package_uuid : 9a74d070-3646-4096-97c6-53a4ecfce23e
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/OpenBoard-org/OpenBoard/wiki/Changelog
min_os_version : 6.1
max_os_version :
icon_sha256sum : 627fa55c75172db6ed7c50bf899e40a5c4ea04d042f7372d40b81fc613cf5bae
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : So+iGaUEQsXG/JLdiwDOqAoI4Qz3Z2zYv/QYPU988LN8R0v/vawaA2XxLyUWElUXMr5IQ2cHN7DoDW6ZSm1u5FOI53rGbf2iCcmnYUAoUCS52XBv/Kk0Nl+fO2DgClyODWMGy9HyQMpjbuVk6kZnSw49itaFGc/lIUxxwXr6FxTEcNfRiFCKC99tMqL/6NgSA3JOmm6K+FgqVQh2iISRN+uQwhlyOdtUcJuM/k0YQxuffH7CKu8f6sGphae5U4CnqnOuJC09xxtZ1/BtPAKXcNcBWQN4HmZl8aAlZc4sh8qRCbl8mEWvOPpq4Lfty4r2J5GkDwkHpbVFHWADDtncWg==
signature_date : 2023-12-16T14:00:08.241106
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
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("OpenBoard_Installer_*.exe")[0]
install_exe_if_needed(
bin_name,
silentflags="/VERYSILENT /SUPPRESSMSGBOXES /NORESTART",
key="{8CCA6AC7-BBF9-4DD2-8E70-A907E0FCA38F}}_is1",
min_version=control.get_software_version(),
)
def session_setup():
# "C:\Users\username\AppData\Local\OpenBoard\OpenBoardUser.config"
user_conf_dir = makepath(user_local_appdata, "OpenBoard")
user_conf_path = makepath(user_conf_dir, "OpenBoardUser.config")
if not isdir(user_conf_dir):
mkdirs(user_conf_dir)
if isfile(user_conf_dir):
if inifile_readstring(user_conf_path, "App", "EnableAutomaticSoftwareUpdates").lower() != "false":
print("Disabling: automatic updates")
killalltasks(control.get_impacted_process_list())
inifile_writestring(user_conf_path, "App", "EnableAutomaticSoftwareUpdates", "false")
else:
print("Disabling: automatic update check")
killalltasks(control.get_impacted_process_list())
inifile_writestring(user_conf_path, "App", "EnableAutomaticSoftwareUpdates", "false")
# -*- 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://api.github.com/repos/OpenBoard-org/OpenBoard/releases/latest"
# 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["assets"]:
if "OpenBoard_Installer_" in download["name"]:
download_url = download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = download["name"]
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).split("-")[0]
if not version_from_file.startswith(version) 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) > Version(control.get_software_version()):
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(version)
# Validating update-package-sources
return package_updated
745b1926f641bb18b314ff8215dc95dfa7daba90aa89cbd449920e39c56edcc7 : setup.py
f11f22abd1bbb033c32ba57eb967deefb0646ecf14b5d78758eb13513d25644a : OpenBoard_Installer_1.7.0.exe
5d156d0b4302b1bde91562bf5acee55a8a487a347e4393f2595b57047679bac3 : update_package.py
e219a6f46440a2fc705797bd8b17d5b5cf6af1760726152cf200cd0ced0141a0 : .env
627fa55c75172db6ed7c50bf899e40a5c4ea04d042f7372d40b81fc613cf5bae : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
34a3a4f93cbe5c675069ec7f1afe6af7d7753b27479772faee64ed445931a2ff : WAPT/changelog.txt
228b3a7d90ffe75427c03d00f1d4948f525ffe95d53cb34d09d4706fa5aac2fd : luti.json
bb4121a7edd6fe6e00b2658e246b3a328780b23ec11a40cdd89e8f354b9a0b61 : WAPT/control
https://github.com/OpenBoard-org/OpenBoard/wiki/Changelog
1.6.3-5
Adding dependencies (tis-vcredist2013,tis-vcredist,tis-lavfilters)
Improving code
fix session-setup