Skip to content

Commit

Permalink
v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
paulopreto committed Aug 6, 2024
1 parent d760214 commit 14e501c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions vaila.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
a Tkinter-based GUI to access various tools and functionalities for multimodal
analysis, including file management, data analysis, and visualization.
Version: 0.2
Version: 0.0.1
Changelog:
v0.2 - Added Plot 2D button for 2D plotting of CSV or C3D files using Matplotlib.
Expand All @@ -20,13 +20,13 @@

import os
import signal
import sys
import platform
from rich import print
import tkinter as tk
from tkinter import messagebox, filedialog
from tkinter import ttk
from PIL import Image, ImageTk

from vaila import (
cluster_analysis,
imu_analysis,
Expand Down
11 changes: 11 additions & 0 deletions vaila/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import sys
import os

# Adiciona o diretório raiz ao sys.path
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from vaila import Vaila

if __name__ == "__main__":
app = Vaila()
app.mainloop()
2 changes: 1 addition & 1 deletion vaila/vaila_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def show_vaila_message():
window.geometry("800x720")

# Load the image
image_path = os.path.join("multimodal_mocap_coord_toolbox", "images", "vaila_logo.png")
image_path = os.path.join("vaila", "images", "vaila_logo.png")
image = Image.open(image_path)
image = image.resize((150, 150), Image.LANCZOS)
photo = ImageTk.PhotoImage(image)
Expand Down

0 comments on commit 14e501c

Please sign in to comment.