From 235f8e67782ccf1a43de5f9cd08c5d022142adb5 Mon Sep 17 00:00:00 2001 From: Akuli Date: Thu, 19 Jan 2023 23:14:14 +0200 Subject: [PATCH] Version v2023.01.19 --- CHANGELOG.md | 2 +- README.md | 4 ++-- porcupine/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a19c72e3..3fbee37bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Unlike the Git commit history, this changelog does not include code cleanups and other details that don't affect using Porcupine. -## Unreleased +## v2023.01.19 Fixes a bug where on some computers, the minimap would show keywords and other highlighted parts of the code with a ridiculously large font (see [#](https://github.com/Akuli/porcupine/issues/1171)). The minimap is the narrow view of the file being edited on the side. diff --git a/README.md b/README.md index 280c1383f..2cfb1d8bc 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Open a terminal and run these commands: python3 -m pip install --user --upgrade pip wheel python3 -m venv porcupine-venv source porcupine-venv/bin/activate - python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.11.25.zip + python3 -m pip install https://github.com/Akuli/porcupine/archive/v2023.01.19.zip porcu If you want to leave Porcupine running and use the same terminal for something else, @@ -74,7 +74,7 @@ Then run these commands: python3 -m pip install --user --upgrade pip wheel python3 -m venv porcupine-venv source porcupine-venv/bin/activate - python3 -m pip install https://github.com/Akuli/porcupine/archive/v2022.11.25.zip + python3 -m pip install https://github.com/Akuli/porcupine/archive/v2023.01.19.zip porcu If you want to leave Porcupine running and use the same terminal for something else, diff --git a/porcupine/__init__.py b/porcupine/__init__.py index 59eb037ca..9f84d319f 100644 --- a/porcupine/__init__.py +++ b/porcupine/__init__.py @@ -11,7 +11,7 @@ import appdirs -version_info = (2022, 11, 25) # this is updated with scripts/release.py +version_info = (2023, 1, 19) # this is updated with scripts/release.py __version__ = "%d.%02d.%02d" % version_info __author__ = "Akuli" __copyright__ = "Copyright (c) 2017-2022 Akuli"