The search returned 6 results

by vnatton
April 18, 2024 - 5:17 PM
Forum: WAPT Packages
Subject: [SOLVED] Update Package Paraview
Answers: 1
Views : 4217

[SOLVED] Update Package Paraview

Hello,

I just created a package update function for ParaView (https://www.paraview.org/).
It was a bit of a struggle, so if it might be useful for other users...

The update is based on the 64-bit "non-MPI" version (see: https://learn.microsoft.com/en-us/message-passing-interface/microsoft-mpi...).
by vnatton
April 2, 2024 - 11:41
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: Application of packets from one point to another
Answers: 3
Views : 5463

Re: Application of packets from near to far

Hello Denis,

I completely understand that a modification like this wouldn't be insignificant.
Couldn't it be "enabled" (this doesn't eliminate the "sensitive" aspect of such a modification)?

I'm already working with a "core application" meta-package which contains...
by vnatton
March 13, 2024 - 12:01
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: Application of packets from one point to another
Answers: 3
Views : 5463

Application of packets from near to far

Hello,

yes, the title isn't clear, but I didn't know how to phrase it concisely.

I was wondering if it's possible to apply packages with a "from near to far" priority order without the far-flung configuration overwriting the nearby one?

Since it's still not clear...
by vnatton
February 26, 2024 - 2:56 PM
Forum: WAPT Packages
Subject: [RESOLVED] Zulip Desktop Client Package
Answers: 2
Views : 3587

[RESOLVED] Zulip Desktop Client Package

Hi everyone,
here's a little bit of code to clean up for installing and updating the Zulip Desktop Client for Windows 64-bit.

Have a good day,
Vianney.


# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
bin = "Zulip-%s-x64.msi" % control.get_software_version()
install_msi_if_needed ...
by vnatton
February 14, 2024 - 10:30
Forum: WAPT Packages
Subject: [SOLVED] Update Package Miktex
Answers: 1
Views : 2291

[SOLVED] Update Package Miktex

Hi everyone,
I noticed that the MikTeX package for Windows is still at version 22.10 even though version 24.1 is out.

I created this `update_package` which returns the latest version if you're interested, and then you can download it here


: `def update_package():
import requests
from bs4 import BeautifulSoup ...`
by vnatton
January 9, 2024 - 1:58 PM
Forum: WAPT Packages
Subject: [RESOLVED] digiKam Package
Answers: 2
Views : 3007

[RESOLVED] digiKam package

Hello,
Following a user request, I created the DigiKam package (Win 10 64-bit). It's not very polished, but it's definitely worth improving.
I haven't found an easy way to check for updates, so I'm parsing the RSS feed to find the latest version and then...