Skip to content

Commit

Permalink
Version v2023.01.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jan 19, 2023
1 parent f24e014 commit 235f8e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion porcupine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 235f8e6

Please sign in to comment.