Compare commits
2 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 74879e2b49 | |||
| 85d64c9e01 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:14099855d6dd3b80677b2a044a9e224b8b239945a1b9cd0837e83993aabfec4e
|
|
||||||
size 8054917
|
|
||||||
3
mathmod-12.0-source.zip
Normal file
3
mathmod-12.0-source.zip
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4849a16be9b7f2632c903b7e3b7b432aa6a016589b231dc929f4b765fe155056
|
||||||
|
size 9519469
|
||||||
@@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 20 07:55:13 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 12.0:
|
||||||
|
* GUI improvement to support small screen formats
|
||||||
|
- Merged MathMod's two main windows into one
|
||||||
|
- Added touch gestures support
|
||||||
|
- Multi cores calculations optimization for embedded systems
|
||||||
|
* Mandelbrot and Julia fractal functions support
|
||||||
|
* New scripts: "Noids", "k_Noids", "Riemann_Minimal_Surface",
|
||||||
|
"MandelBulb", "MandelTemple", "JuliaFractal",
|
||||||
|
"MandelbrotTorus", "MandelbrotIsoSpheres", "MandelbrotSphere",
|
||||||
|
"Mandelbrot", "Spherical_Harmonics"
|
||||||
|
* Bug-fixes, code optimization and documentation update.
|
||||||
|
- Drop use of deprecated %suse_update_desktop_files macro.
|
||||||
|
- Add mathmod.desktop file as additional source in lieu of the
|
||||||
|
dropped %suse_update_desktop_files macro.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 8 18:22:08 UTC 2022 - Atri Bhattacharya <badshah400@gmail.com>
|
Tue Feb 8 18:22:08 UTC 2022 - Atri Bhattacharya <badshah400@gmail.com>
|
||||||
|
|
||||||
|
|||||||
7
mathmod.desktop
Normal file
7
mathmod.desktop
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Categories=Education;Math;
|
||||||
|
Name=mathmod
|
||||||
|
GenericName=Mathematical modeling
|
||||||
|
Type=Application
|
||||||
|
Exec=mathmod
|
||||||
|
Icon=mathmod
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package mathmod
|
# spec file for package mathmod
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,20 +18,20 @@
|
|||||||
|
|
||||||
%define binname MathMod
|
%define binname MathMod
|
||||||
Name: mathmod
|
Name: mathmod
|
||||||
Version: 11.1
|
Version: 12.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Mathematical modelling to visualise implicit and parametric surfaces
|
Summary: Mathematical modelling to visualise implicit and parametric surfaces
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: Productivity/Scientific/Math
|
Group: Productivity/Scientific/Math
|
||||||
URL: https://sourceforge.net/projects/mathmod/
|
URL: https://sourceforge.net/projects/mathmod/
|
||||||
Source0: http://sourceforge.net/projects/mathmod/files/MathMod-%{version}/%{name}-%{version}-source.zip
|
Source0: http://sourceforge.net/projects/mathmod/files/MathMod-%{version}/%{name}-%{version}-source.zip
|
||||||
|
Source1: %{name}.desktop
|
||||||
BuildRequires: ImageMagick
|
BuildRequires: ImageMagick
|
||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: hicolor-icon-theme
|
BuildRequires: hicolor-icon-theme
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: unzip
|
BuildRequires: unzip
|
||||||
BuildRequires: update-desktop-files
|
|
||||||
BuildRequires: pkgconfig(Qt5Core) >= 5.12.0
|
BuildRequires: pkgconfig(Qt5Core) >= 5.12.0
|
||||||
BuildRequires: pkgconfig(Qt5Gui)
|
BuildRequires: pkgconfig(Qt5Gui)
|
||||||
BuildRequires: pkgconfig(Qt5OpenGL)
|
BuildRequires: pkgconfig(Qt5OpenGL)
|
||||||
@@ -77,7 +77,8 @@ done
|
|||||||
convert -monitor images/icon/catenoid_mini_64x64.ico %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
|
convert -monitor images/icon/catenoid_mini_64x64.ico %{buildroot}%{_datadir}/pixmaps/%{name}.xpm
|
||||||
# Remove spurious icon file
|
# Remove spurious icon file
|
||||||
rm %{buildroot}%{_datadir}/icons/hicolor/apps/mathmod.png
|
rm %{buildroot}%{_datadir}/icons/hicolor/apps/mathmod.png
|
||||||
%suse_update_desktop_file -c %{name} %{name} "Mathematical modeling" %{name} %{name} Education Science Math
|
|
||||||
|
install -Dm 0644 %{SOURCE1} %{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license Licence.txt
|
%license Licence.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user