Skip to content

Commit 04ebb71

Browse files
committed
Merge branch 'master' into develop
2 parents 0eaac06 + 72bc6ba commit 04ebb71

8 files changed

+11
-9
lines changed

mod/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
DIVIDER = 1000
1212
LINE_END = "\n"
1313
PICKLE_PROTOCOL = 1 # Binary mode
14-
VERSION = "0.7.1 (25-11-2024)" # Version must be M.m.p (dd-mm-yyyy)
14+
VERSION = "0.7.1 (26-11-2024)" # Version must be M.m.p (dd-mm-yyyy)
1515
WIDTH_2D = 0.001
1616
MAX_PARTICLE_WARNING = 2000000
1717
DISK_DUMP_FILE_NAME = "designsphysics-{}.log".format(VERSION)

mod/executable_tools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
from sys import platform
99
import json
1010

11-
from PySide import QtCore
11+
# from PySide import QtCore
12+
from PySide2 import QtCore
1213

1314
import FreeCADGui
1415

mod/post_processing_tools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
import subprocess
66

7-
from PySide import QtCore
7+
# from PySide import QtCore
8+
from PySide2 import QtCore
89

910
from mod.translation_tools import __
1011
from mod.dialog_tools import error_dialog, info_dialog

mod/widgets/chrono/chrono_object_check_options.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# -*- coding: utf-8 -*-
33
"""DesignSPHysics Chrono Object Check Options widget."""
44

5-
from PySide import QtGui
65
from PySide2 import QtWidgets
76

87
from mod.translation_tools import __

mod/widgets/execution_parameters_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""DesignSPHysics Execution Parameters Configuration Dialog."""
44

55
# from PySide import QtCore, QtGui
6-
from PySide2 import QtCore, QtWidgets
6+
from PySide2 import QtCore, QtGui, QtWidgets
77

88
from mod.translation_tools import __
99
from mod.stdout_tools import log

mod/widgets/focusable_line_edit.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# -*- coding: utf-8 -*-
33
"""DesignSPHysics Focusable LineEdit implementation."""
44

5-
from PySide import QtCore, QtGui
5+
# from PySide import QtCore, QtGui
6+
from PySide2 import QtCore, QtGui
67

78

89
class FocusableLineEdit(QtGui.QLineEdit):

mod/widgets/properties_dock_widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import FreeCAD
66
import FreeCADGui
77

8-
#from PySide import QtCore, QtGui
8+
# from PySide import QtCore, QtGui
99
from PySide2 import QtCore, QtWidgets
1010

1111
from mod.translation_tools import __

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<package format="1" xmlns="https://wiki.freecad.org/Package_Metadata">
33
<name>DesignSPHysics</name>
44
<description>DesignSPHysics is a macro/addon for FreeCAD that provides a Graphical User Interface for fluid and multi-physics solver DualSPHysics</description>
5-
<version>0.7.1 (25-11-2024)</version>
6-
<date>25-11-2024</date>
5+
<version>0.7.1 (26-11-2024)</version>
6+
<date>26-11-2024</date>
77
<maintainer email="ivan.martinez.estevez@uvigo.es">Iván Martínez Estévez</maintainer>
88
<license file="LICENSE">GPL-3.0-or-later</license>
99
<url type="repository" branch="master">https://github.com/DualSPHysics/DesignSPHysics</url>

0 commit comments

Comments
 (0)