Skip to content

Commit 06211ef

Browse files
committed
prepare release 0.1.0
1 parent 03ae5e3 commit 06211ef

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Or use the build script:
106106
### Running with a specific language
107107

108108
```bash
109-
java -Duser.language=en -Duser.country=US --module-path target/build/libs --add-modules javafx.base,javafx.graphics,javafx.controls,javafx.fxml,javafx.media,javafx.web -cp "target/build/MarkNote-0.1.0-snapshot.jar:target/build/libs/*" Main
109+
java -Duser.language=en -Duser.country=US --module-path target/build/libs --add-modules javafx.base,javafx.graphics,javafx.controls,javafx.fxml,javafx.media,javafx.web -cp "target/build/MarkNote-0.1.0.jar:target/build/libs/*" Main
110110
```
111111

112112
## Packaging
@@ -164,8 +164,8 @@ Where `{platform}` is:
164164
1. Download or build the package for your platform
165165
2. Extract the ZIP archive:
166166
```bash
167-
unzip MarkNote-0.1.0-snapshot-linux.zip
168-
cd MarkNote-0.1.0-snapshot-linux
167+
unzip MarkNote-0.1.0-linux.zip
168+
cd MarkNote-0.1.0-linux
169169
```
170170
3. Run the application:
171171
- **Linux/macOS:** `./MarkNote.sh`

build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
#---- project parameters
33
project_name=MarkNote
4-
project_version=0.1.0-snapshot
4+
project_version=0.1.0
55
main_class=Main
66
JARS=
77
JFX_VERSION=25

src/docs/user-guide-en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "MarkNote User Guide"
33
date: 2026-02-25
4-
version: "0.1.0-snapshot"
4+
version: "0.1.0"
55
author: "Frédéric Delorme"
66
description: "Official user guide for MarkNote, a lightweight Markdown editor built with JavaFX."
77
summary: "Welcome to MarkNote, a lightweight and modern Markdown editor built with JavaFX. This guide will help you get started and make the most of MarkNote's features."
@@ -12,7 +12,7 @@ status: draft
1212

1313
# MarkNote User Guide
1414

15-
Version 0.1.0-snapshot
15+
Version 0.1.0
1616

1717
Welcome to MarkNote, a lightweight and modern Markdown editor built with JavaFX. This guide will help you get started and make the most of MarkNote's features.
1818

src/main/java/ui/SplashScreen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public class SplashScreen {
3939

4040
/** Version de l'application affichée dans le splash / about. */
41-
public static final String APP_VERSION = "0.1.0-snapshot";
41+
public static final String APP_VERSION = "0.1.0";
4242

4343
/** Durée d'affichage automatique du splash en secondes. */
4444
private static final double SPLASH_DURATION = 3.0;

0 commit comments

Comments
 (0)