File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed
Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- version = 3.3 .0
1+ version = 3.4 .0
22include config.mk
33
44all : version.h src.subdir-all
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ vimb.so: $(OBJ)
1919
2020$(OBJ ) : config.h ../config.mk
2121
22+ main.o : ../version.h
23+
2224input.o : scripts/scripts.h
2325
2426normal.o : scripts/scripts.h
You can’t perform that action at this time.
0 commit comments