Skip to content

Commit 973f8a4

Browse files
committed
Release 2.3.2
1 parent 8600685 commit 973f8a4

File tree

6 files changed

+11
-110
lines changed

6 files changed

+11
-110
lines changed

README.html

Lines changed: 0 additions & 100 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# SSPlot
22
A simple plotting utility for plotting CSV datafiles, equations and dynamical systems (differential and difference equations).
33

4-
[![License: LGPL v2.1](https://img.shields.io/badge/License-LGPL%20v2.1-orange.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) [![CI](https://github.com/babaissarkar/ssplot/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/babaissarkar/ssplot/actions/workflows/maven-publish.yml?query=branch%3Amaster) [![GitHub Release](https://img.shields.io/github/v/release/babaissarkar/ssplot?display_name=release&labelColor=orange&color=black)](https://github.com/babaissarkar/ssplot/releases/tag/v2.3.1) ![Ask DeepWiki](https://deepwiki.com/badge.svg) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.16777601.svg)](https://doi.org/10.5281/zenodo.16777601)
4+
[![License: LGPL v2.1](https://img.shields.io/badge/License-LGPL%20v2.1-orange.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html) [![CI](https://github.com/babaissarkar/ssplot/actions/workflows/maven-publish.yml/badge.svg)](https://github.com/babaissarkar/ssplot/actions/workflows/maven-publish.yml?query=branch%3Amaster) [![GitHub Release](https://img.shields.io/github/v/release/babaissarkar/ssplot?display_name=release&labelColor=orange&color=black)](https://github.com/babaissarkar/ssplot/releases/tag/v2.3.2) ![Ask DeepWiki](https://deepwiki.com/badge.svg) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.16777601.svg)](https://doi.org/10.5281/zenodo.16777601)
55

6-
![Main Screen of SSPlot, version 2.3.1](https://babaissarkar.github.io/images/ssplot_screenshot.png)
6+
![Main Screen of SSPlot, version 2.3.2](https://babaissarkar.github.io/images/ssplot_screenshot.png)
77

88
# Requirements
99
Any Java version >= 17. (Use latest version if possible)
@@ -13,18 +13,16 @@ Any Java version >= 17. (Use latest version if possible)
1313
## Windows
1414
An `MSI` installer is available (has bundled java runtime).
1515

16-
<a href='https://github.com/babaissarkar/ssplot/releases/download/v2.3.1/SSPlot-2.3.1.msi'><img width='240' alt='Download as MSI Installer' src='src/main/resources/download_msi.svg'/></a>
16+
<a href='https://github.com/babaissarkar/ssplot/releases/download/v2.3.2/SSPlot-2.3.2.msi'><img width='240' alt='Download as MSI Installer' src='src/main/resources/download_msi.svg'/></a>
1717

1818
For latest dev version, use the generated MSI from the latest workflow run from the Actions tab.
1919

2020
## Linux
2121
A `DEB` package (Actions tab), a flatpak from flathub and an `AppImage` with bundled AdoptOpenJDK java runtime is available.
2222

2323
<a href='https://flathub.org/apps/io.github.babaissarkar.ssplot'><img width='240' alt='Download on Flathub' src='https://flathub.org/api/badge?locale=en'/></a>
24-
<a href='https://github.com/babaissarkar/ssplot/releases/download/v2.3.1/SSPlot-x86_64.AppImage'><img width='240' alt='Download as AppImage' src='https://docs.appimage.org/_images/download-appimage-banner.svg'/></a>
25-
<a href="https://snapcraft.io/ssplot">
26-
<img alt="Get it from the Snap Store" src=https://snapcraft.io/en/dark/install.svg width='240'/>
27-
</a>
24+
<a href='https://github.com/babaissarkar/ssplot/releases/download/v2.3.2/SSPlot-x86_64.AppImage'><img width='240' alt='Download as AppImage' src='https://docs.appimage.org/_images/download-appimage-banner.svg'/></a>
25+
<a href="https://snapcraft.io/ssplot"><img alt="Get it from the Snap Store" src=https://snapcraft.io/en/dark/install.svg width='240'/></a>
2826

2927
## Manual Installation
3028
1. Install Java runtime (JRE).

generate_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# AppImageTool and any other required build programs
44
# should exist on PATH
55
# build-deps : markdown
6-
VERSION=2.3.1
6+
VERSION=2.3.2
77
echo "Running Maven: Compile and generate packages"
88
./mvnw -B -X clean package jpackage:jpackage@linux
99
echo "Generating Docs"

io.github.babaissarkar.ssplot.metainfo.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
<keyword>Dynamical Systems</keyword>
4242
</keywords>
4343
<releases>
44+
<release version="2.3.2" date="2025-12-30" type="stable">
45+
<url>https://github.com/babaissarkar/ssplot/releases/tag/v2.3.2</url>
46+
</release>
4447
<release version="2.3.1" date="2025-08-10" type="stable">
4548
<url>https://github.com/babaissarkar/ssplot/releases/tag/v2.3.1</url>
4649
</release>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>com.babai.ssplot</groupId>
1010
<artifactId>ssplot</artifactId>
11-
<version>2.3.1</version>
11+
<version>2.3.2</version>
1212

1313
<name>SSPlot</name>
1414
<url>http://www.github.com/babaissarkar/ssplot</url>

snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ssplot
2-
version: '2.3.1'
2+
version: '2.3.2'
33
adopt-info: ssplot
44

55
base: core22

0 commit comments

Comments
 (0)