Skip to content

Commit b47df7f

Browse files
committed
version 1.5.1 fixed
1 parent 15a0671 commit b47df7f

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SmallTextPad is a lightweight text editor written in Java (Swing). It includes b
1414
## Quick facts
1515

1616
- Project: SmallTextPad
17-
- Version: 1.5.0
17+
- Version: 1.5.1
1818
- Author: Ricardo Wagemaker
1919
- Main class: `wagemaker.co.uk.main.Launcher`
2020
- License: See `LICENSE` and `doc/SmallTextPadLicense.txt`

packaging/build-deb.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ fi
1515

1616
# SmallTextPad DEB Package Builder
1717
APP_NAME="smalltextpad"
18-
VERSION="1.5.0"
18+
VERSION="1.5.1"
1919
ARCH="amd64"
2020
MAINTAINER="Ricardo Wagemaker <[email protected]>"
2121
DESCRIPTION="SmallTextPad - Simple Java Text Editor with Encryption"
22-
HOMEPAGE="https://github.com/gcclinux/smalltextpad"
22+
HOMEPAGE="https://gcclinux.github.io/smalltextpad/"
2323

2424
# Create package structure
2525
DEB_DIR="${APP_NAME}_${VERSION}_${ARCH}"
@@ -36,7 +36,7 @@ Version: $VERSION
3636
Section: editors
3737
Priority: optional
3838
Architecture: $ARCH
39-
Depends: openjdk-21-jre | openjdk-17-jre | openjdk-11-jre
39+
Depends: openjdk-21-jre
4040
Maintainer: $MAINTAINER
4141
Description: $DESCRIPTION
4242
SmallTextPad is a lightweight Java text editor with optional file encryption

packaging/build-exe.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Create a Windows installer EXE using jpackage
2-
# Usage: .\jpackage.ps1
3-
# Requires a JDK 14+ with jpackage on PATH
2+
# Usage: .\jbuild-exe.ps1
3+
# Requires a JDK 21+ with jpackage on PATH
44
# Requires choco install wixtoolset -y
55

66
$ErrorActionPreference = 'Stop'

packaging/build-rpm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# RPM build script for SmallTextPad
33
# This script prepares the source tarball and builds the RPM package
44

55
set -euo pipefail
66

77
# Configuration
88
PACKAGE_NAME="smalltextpad"
9-
VERSION="1.5.0"
9+
VERSION="1.5.1"
1010
SPEC_FILE="smalltextpad.spec"
1111

1212
# Get script directory

packaging/smalltextpad.spec

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Name: smalltextpad
2-
Version: 1.5.0
3-
Release: 2%{?dist}
2+
Version: 1.5.1
3+
Release: 3%{?dist}
44
Summary: A lightweight Java text editor with encryption and multi-language support
55

66
License: Custom
@@ -133,7 +133,9 @@ fi
133133
%{_datadir}/icons/hicolor/1024x1024/apps/%{name}.png
134134

135135
%changelog
136-
* Fri Jan 10 2025 Ricardo Wagemaker <[email protected]> - 1.5.0-1
136+
* Sun Oct 12 2025 Ricardo Wagemaker <[email protected]> - 1.5.1-3
137+
- Fixed opening encrypted files by EasyEdit App
138+
* Fri Jan 10 2025 Ricardo Wagemaker <[email protected]> - 1.5.0-1
137139
- Initial RPM package for SmallTextPad
138140
- Lightweight Java text editor with encryption support
139141
- Multi-language support included

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: smalltextpad
22
base: core22
3-
version: '1.5.0'
3+
version: '1.5.1'
44
title: SmallTextPad
55
summary: SmallTextPad - Simple Java Text Editor with Encryption
66
description: |

src/wagemaker/co/uk/main/Launcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/******************************************************************************************************
44
* @author by Ricardo Wagemaker
55
* @title SmallTextPad
6-
* @version 1.5.0
6+
* @version 1.5.1
77
* @since 2010 - 2025
88
* @License MIT
99
******************************************************************************************************/

0 commit comments

Comments
 (0)