Skip to content

Commit 0c9df4a

Browse files
committed
Released version 3.4.0.
1 parent d18c51f commit 0c9df4a

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111
### Fixed
1212
### Removed
1313

14+
## [3.4.0] - 2019-03-26
15+
### Added
16+
* Allow to show video in fullscreen, without statusbar and inputbox, if requested.
17+
* Added option `--no-maximize` to no start with maximized window #483.
18+
* New setting `prevent-newwindow` to enforce opening links into same window
19+
even if they are crafted by `target="_blank"` or using `window.open(...)` #544.
20+
### Changed
21+
* Increased min required webkit version to 2.20.x.
22+
* Use man page date instead of build date ot make reproducible builds.
23+
* URLs shown on statusbar and title are now shown as punicode if they contain
24+
homographs.
25+
### Fixed
26+
* Fix out-of-bounds buffer access in parse_command (Thanks to Sören Tempel) #529.
27+
* Fixed none shown hint labels by Content-Security-Policy headers #531.
28+
* Fixed segfault on JavaScript `window.close()` call #537.
29+
* Fixed no char inserted in input mode after timeout and imap/inoremap
30+
candidate #546.
31+
1432
## [3.3.0] - 2018-11-06
1533

1634
### Added
@@ -224,6 +242,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
224242
* Fixed none POSIX `echo -n` call
225243

226244
[Unreleased]: https://github.com/fanglingsu/vimb/compare/3.3.0...master
245+
[3.4.0]: https://github.com/fanglingsu/vimb/compare/3.3.0...3.4.0
227246
[3.3.0]: https://github.com/fanglingsu/vimb/compare/3.2.0...3.3.0
228247
[3.2.0]: https://github.com/fanglingsu/vimb/compare/3.1.0...3.2.0
229248
[3.1.0]: https://github.com/fanglingsu/vimb/compare/3.0-alpha...3.1.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.3.0
1+
version = 3.4.0
22
include config.mk
33

44
all: version.h src.subdir-all

src/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ vimb.so: $(OBJ)
1919

2020
$(OBJ): config.h ../config.mk
2121

22+
main.o: ../version.h
23+
2224
input.o: scripts/scripts.h
2325

2426
normal.o: scripts/scripts.h

0 commit comments

Comments
 (0)