Skip to content

Commit 79e6331

Browse files
committed
release: v0.1.3
1 parent e284adb commit 79e6331

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div align="center">
44
<img src="src-tauri/icons/icon.png" alt="JSON Prettier Logo" width="128" height="128">
55

6-
[![Version](https://img.shields.io/badge/version-0.1.2-blue.svg)](https://github.com/rebase/json-prettier)
6+
[![Version](https://img.shields.io/badge/version-0.1.3-blue.svg)](https://github.com/rebase/json-prettier)
77
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
88
</div>
99

@@ -23,9 +23,9 @@
2323
<br>
2424
<strong>macOS</strong>
2525
<br>
26-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.2_aarch64.dmg">DMG (Apple Silicon)</a>
26+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.3_aarch64.dmg">DMG (Apple Silicon)</a>
2727
<br>
28-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.2_x64.dmg">DMG (Intel)</a>
28+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.3_x64.dmg">DMG (Intel)</a>
2929
<br>
3030
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_aarch64.app.tar.gz">App Bundle (Apple Silicon)</a>
3131
<br>
@@ -36,26 +36,26 @@
3636
<br>
3737
<strong>Windows</strong>
3838
<br>
39-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.2_x64-setup.exe">Installer (.exe, x64)</a>
39+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.3_x64-setup.exe">Installer (.exe, x64)</a>
4040
<br>
41-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.2_x64_en-US.msi">MSI Installer (x64, en-US)</a>
41+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.3_x64_en-US.msi">MSI Installer (x64, en-US)</a>
4242
</td>
4343
<td align="center" width="33%">
4444
<img src="https://upload.wikimedia.org/wikipedia/commons/3/35/Tux.svg" alt="Linux" width="60" height="60">
4545
<br>
4646
<strong>Linux</strong>
4747
<br>
48-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.2_amd64.AppImage">AppImage (amd64)</a>
48+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.3_amd64.AppImage">AppImage (amd64)</a>
4949
<br>
50-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.2_amd64.deb">Debian Package (.deb, amd64)</a>
50+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier_0.1.3_amd64.deb">Debian Package (.deb, amd64)</a>
5151
<br>
52-
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier-0.1.2-1.x86_64.rpm">RPM Package (x86_64)</a>
52+
<a href="https://github.com/rebase/json-prettier/releases/latest/download/JSON.Prettier-0.1.3-1.x86_64.rpm">RPM Package (x86_64)</a>
5353
</td>
5454
</tr>
5555
</table>
5656
</div>
5757

58-
> **IMPORTANT FOR macOS USERS**: macOS will show security warnings ("untrusted developer" or "app is damaged") on first launch.
58+
> **⚠️ IMPORTANT FOR macOS USERS**: macOS will show security warnings ("untrusted developer" or "app is damaged") on first launch.
5959
> Right-click the app and select "Open" to bypass this. For persistent issues, check our [Installation Guide](INSTALLATION.md).
6060
6161
---

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "json-prettier",
33
"private": true,
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "json-prettier"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "A simple desktop app that makes messy JSON data look clean and organized"
55
authors = ["rebase"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "JSON Prettier",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"identifier": "com.json-prettier.app",
66
"build": {
77
"beforeDevCommand": "npm run dev",
@@ -30,8 +30,7 @@
3030
"icons/128x128@2x.png",
3131
"icons/icon.icns",
3232
"icons/icon.ico"
33-
],
34-
"createUpdaterArtifacts": false
33+
]
3534
},
3635
"plugins": {
3736
"updater": {

src/components/Modals.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export const AboutModal: React.FC<AboutModalProps> = ({ isOpen, onClose, theme }
135135
<div className="about-content">
136136
<div className="app-info">
137137
<h3>JSON Prettier</h3>
138-
<p className="version">Version 0.1.2</p>
138+
<p className="version">Version 0.1.3</p>
139139
<p className="description compact">
140140
Transform messy JSON into beautifully organized format with customizable styling
141141
options.

0 commit comments

Comments
 (0)