mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
prepare v2.0.2
This commit is contained in:
parent
6b37ce96f6
commit
0137b042dc
5 changed files with 18 additions and 4 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 2.0.2 - 2024-06-01
|
||||
|
||||
### Fixed
|
||||
|
||||
- [#257](https://github.com/thatmattlove/hyperglass/issues/257): Fix issue where if `web.location_display_mode` is set to `dropdown` (automatically or otherwise), the menu would remain open but become detached from the main element because the Query Type element came into view.
|
||||
- [#253](https://github.com/thatmattlove/hyperglass/issues/253): _Actually_ fix issue where configuration values were improperly prepended with the `HYPERGLASS_APP_PATH` value.
|
||||
- [#258](https://github.com/thatmattlove/hyperglass/issues/258): Center logo alignment on small screens.
|
||||
- Fix broken license link in default credit menu.
|
||||
|
||||
### Added
|
||||
|
||||
- Added license to docs.
|
||||
- [#254](https://github.com/thatmattlove/hyperglass/issues/254): Users may specify their own DNS over HTTPS provider if desired.
|
||||
|
||||
## 2.0.1 - 2024-05-31
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ cd /opt/hyperglass
|
|||
docker compose down
|
||||
docker compose rm -f
|
||||
git fetch
|
||||
git checkout v2.0.1
|
||||
git checkout v2.0.2
|
||||
docker compose build
|
||||
docker compose up
|
||||
```
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
from datetime import datetime
|
||||
|
||||
__name__ = "hyperglass"
|
||||
__version__ = "2.0.1"
|
||||
__version__ = "2.0.2"
|
||||
__author__ = "Matt Love"
|
||||
__copyright__ = f"Copyright {datetime.now().year} Matthew Love"
|
||||
__license__ = "BSD 3-Clause Clear License"
|
||||
|
|
|
|||
2
hyperglass/ui/package.json
vendored
2
hyperglass/ui/package.json
vendored
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.2",
|
||||
"name": "ui",
|
||||
"description": "UI for hyperglass, the modern network looking glass",
|
||||
"author": "Matt Love",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "hyperglass"
|
||||
version = "2.0.1"
|
||||
version = "2.0.2"
|
||||
description = "hyperglass is the modern network looking glass that tries to make the internet better."
|
||||
authors = [
|
||||
{ name = "thatmattlove", email = "matt@hyperglass.dev" }
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue