2023-08-31 22:07:52 +01:00
|
|
|
from CTkMessagebox import CTkMessagebox
|
|
|
|
from tkinter import Menu, END, Event
|
|
|
|
from bs4 import BeautifulSoup
|
|
|
|
import customtkinter as ctk
|
|
|
|
from CTkToolTip import *
|
2023-09-07 14:58:08 +01:00
|
|
|
from pathlib import Path
|
2023-08-31 22:07:52 +01:00
|
|
|
from PIL import Image
|
|
|
|
import configparser
|
|
|
|
import webbrowser
|
|
|
|
import subprocess
|
|
|
|
import threading
|
|
|
|
import datetime
|
|
|
|
import requests
|
|
|
|
import zipfile
|
|
|
|
import shutil
|
|
|
|
import psutil
|
|
|
|
import json
|
|
|
|
import math
|
|
|
|
import time
|
|
|
|
import sys
|
|
|
|
import io
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
2023-09-07 14:58:08 +01:00
|
|
|
VERSION = "v0.2.9"
|
2023-08-31 22:07:52 +01:00
|
|
|
GITHUB_REPO = "faroukbmiled/BOIIIWD"
|
|
|
|
LATEST_RELEASE_URL = "https://github.com/faroukbmiled/BOIIIWD/releases/latest/download/Release.zip"
|
|
|
|
UPDATER_FOLDER = "update"
|
|
|
|
CONFIG_FILE_PATH = "config.ini"
|
2023-09-01 20:32:33 +01:00
|
|
|
RESOURCES_DIR = os.path.join(os.path.dirname(__file__), 'resources')
|