1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-09-25 22:55:55 -04:00

🔖 Release v1.4.0

This commit is contained in:
makeworld 2020-07-28 19:33:00 -04:00
parent 2d81886dda
commit 346bde655c
4 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [1.4.0] - 2020-07-28
### Added ### Added
- **Themeing** - check out [default-config.toml](./default-config.toml) for details (#46) - **Themeing** - check out [default-config.toml](./default-config.toml) for details (#46)
- <kbd>Tab</kbd> now also enters link selecting mode, like <kbd>Enter</kbd> (#48) - <kbd>Tab</kbd> now also enters link selecting mode, like <kbd>Enter</kbd> (#48)
@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `.ansi` is also supported for `text/x-ansi` files, as well as the already supported `.ans` - `.ansi` is also supported for `text/x-ansi` files, as well as the already supported `.ans`
### Changed ### Changed
- Documented <kbd>Ctrl-C</kbd> has "Hard quit" - Documented <kbd>Ctrl-C</kbd> as "Hard quit"
- Updated [cview](https://gitlab.com/tslocum/cview/) to latest commit: `cc7796c4ca44e3908f80d93e92e73694562d936a` - Updated [cview](https://gitlab.com/tslocum/cview/) to latest commit: `cc7796c4ca44e3908f80d93e92e73694562d936a`
- The bottom bar label now uses the same color as the tabs at the top - The bottom bar label now uses the same color as the tabs at the top
- Tab and blue link colors were changed very slightly to be part of the 256 Xterm colors, for better terminal support - Tab and blue link colors were changed very slightly to be part of the 256 Xterm colors, for better terminal support

View File

@ -2,7 +2,7 @@
## Issues ## Issues
- URL for each tab should not be stored as a string - in the current code there's lots of reparsing the URL - URL for each tab should not be stored as a string - in the current code there's lots of reparsing the URL
- Can't go back or do other things while page is loading - need a way to stop `handleURL`
## Regressions ## Regressions

View File

@ -73,7 +73,7 @@ Features in *italics* are in the master branch, but not in the latest release.
- [x] Built-in search (uses GUS by default) - [x] Built-in search (uses GUS by default)
- [x] Bookmarks - [x] Bookmarks
- [x] Download pages and arbitrary data - [x] Download pages and arbitrary data
- [x] *Themeing* - [x] Themeing
- [ ] Search in pages with <kbd>Ctrl-F</kbd> - [ ] Search in pages with <kbd>Ctrl-F</kbd>
- [ ] Emoji favicons - [ ] Emoji favicons
- See `gemini://mozz.us/files/rfc_gemini_favicon.gmi` for details - See `gemini://mozz.us/files/rfc_gemini_favicon.gmi` for details

View File

@ -8,7 +8,7 @@ import (
"github.com/makeworld-the-better-one/amfora/display" "github.com/makeworld-the-better-one/amfora/display"
) )
var version = "1.4.0-unreleased" var version = "1.4.0"
func main() { func main() {
// err := logger.Init() // err := logger.Init()