]> git.armaanb.net Git - chorizo.git/blob - CHANGES
Scroll tabs using mouse wheel
[chorizo.git] / CHANGES
1 Release history for lariza
2
3 next
4   [Changed]
5   - lariza now uses native GTK tabs instead of relying on suckless
6     tabbed. More background:
7     https://www.uninformativ.de/blog/postings/2020-04-26/0/POSTING-en.html
8   - Keyword searches have been removed, as these code paths were
9     unmaintained.
10
11 v20.04  2020-04-22
12   [Fixed]
13   - Minor fixes to manpages.
14
15 v20.03  2020-03-28
16   [Changed]
17   - Makefile: Web extensions and user scripts will be installed.
18   - "enable-developer-extras" is now always set to "TRUE". This enables
19     the Web Inspector.
20   - WebGL is enabled in WebKit by default these days. lariza's
21     environment variable $LARIZA_ENABLE_EXPERIMENTAL_WEBGL is gone.
22
23   [Added]
24   - User-supplied JavaScript files can be put into
25     ~/.config/lariza/user-scripts. "hints.js" is one such script, it's
26     bundled with the main application, but must be activated manually by
27     copying or linking it to said directory.
28
29 v19.05  2019-05-05
30   [Fixed]
31   - We no longer use WebKit's deprecated JavaScript API.
32
33 v18.07  2018-07-29
34   [Added]
35   - The input bar now shows an indicator for web feeds.
36
37     The icon used for this purpose is the stock icon called
38     "application-rss+xml-symbolic". It is somewhat "non-standard", i.e.
39     not defined by [0], but appears to be present in many icon themes.
40     Let me know if it doesn't work for you.
41
42     [0]: https://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
43
44 v18.06  2018-06-24
45   - This is a maintenance release, due to the project moving away from
46     GitHub. No code changes.
47
48 v18.03  2018-03-17
49   [Fixed]
50   - Accidentally opening a context menu and then issuing a middle click
51     to open a new tab no longer changes the location of the original tab
52     (fixes #56). (This only happened under certain circumstances.)
53
54 v18.01  2018-01-27
55   [Fixed]
56   - Compilation warnings regarding deprecated API calls (GtkAction) have
57     been addressed. Thanks to @jun7 on GitHub!
58
59 v17.11  2017-11-16
60   [Added]
61   - You can now set the following environment variable to have console
62     output printed to STDOUT: LARIZA_ENABLE_CONSOLE_TO_STDOUT.
63
64 v17.10  2017-10-18
65   [LICENSING]
66   - The project has been relicensed under the MIT license (more
67     precisely called "Expat License", but everyone calls it "MIT
68     license" these days).
69
70 v17.07  2017-07-02
71   [Fixed]
72   - User input is now properly escaped when used for keyword based
73     searching (fixes #47).
74
75 v17.05  2017-05-21
76   [Fixed]
77   - Automatically adding the "file://" prefix didn't work (reliably) if
78     a message was sent to an already running instance.
79
80   [Changed]
81   - Autoreloading of crashed web processes has been removed. It doesn't
82     make sense anymore since the switch to webkit's multi-process model.
83     Instead, we now simply announce the crash in the location bar.
84   - Refuse to quit if there are active downloads. The user has to cancel
85     them explicitly. (To improve workflow a little bit, the download
86     manager now also knows a "Mod1 + q" hotkey.)
87
88   [Added]
89   - WebGL can now be enabled by setting an environment variable. This is
90     an experimental feature, though.
91
92 v17.02  2017-02-16
93   [Fixed]
94   - As requested by WebKit's API documentation, we now wait for the
95     "ready-to-show" signal after a "create" signal. This fixes crashes
96     after you chose "Open link in new window" from a context menu.
97
98   [Changed]
99   - The "search prefix" has been changed from "/" to ":/". This means,
100     in order to search for text in a web page, you now have to enter
101     something like ":/your search term" into the input box.
102   - Lariza now uses WebKit's multi-process model. This means that (most)
103     tabs run as independent processes. If one tab crashes, it should not
104     affect the others.
105   - The GtkLevelBar to show page loading progress has been removed.
106     Instead, we now use the progress bar which is already included in
107     GtkEntry (the input box). This is mostly a cosmetic change, but it
108     also eliminates some GTK warnings.
109
110   [Added]
111   - An external user-supplied program can be called for the current URI
112     or for hyperlinks/images/videos/audio files.
113   - Lariza will now automatically add a "file://" prefix for local
114     files.
115   - Hotkeys have been unified. It is now largely irrelevant whether the
116     location bar or the web view has focus.
117   - Lariza can be instructed to write each visited URI to a file.
118
119 v16.12  2016-12-24
120   [Fixed]
121   - Lariza no longer reports download progress below 0% or above 100%.
122     (Workaround for what appears to be a WebKit2GTK+ bug.)
123
124   [Changed]
125   - We no longer explicitly set the X11 window's class and name. Let
126     GTK+ do this job. The actual class and name should be unchanged,
127     though (WM_CLASS(STRING) = "lariza", "Lariza").
128
129     This does not affect tabbed which is still run with "-n lariza".
130
131     This change fixes a GTK+ deprecation warning.
132
133 v16.09  2016-09-03
134   [Changed]
135   - Web extensions are now looked for in ~/.config/lariza/web_extensions.
136
137 v16.06  2016-06-26
138   [Fixed]
139   - Gtk warnings.
140
141   [Changed]
142   - Except for the default window size, there are no hardcoded pixel
143     values anymore. Should make it a little easier to run lariza on
144     HiDPI screens. (Sorry, not tested, I don't have one.)
145
146   [Added]
147   - New key bindings F2 and F3: Go backward and forward, just like the
148     existing mouse key binds do.
149
150 v16.01  2016-01-05
151   [Fixed]
152   - Issue #14: "Keypad enter" now registers as "commit", i.e. "start
153     loading the URL" or "begin searching for search term".
154   - Issue #15: lariza no longer tries to create local file names with
155     directory separators in them when downloading files.
156   - lariza no longer sets the window title to an empty string.
157
158   [Changed]
159   - For the sake of consistency, $LARIZA_WEB_EXTENSIONS_DIR has been
160     removed.
161
162   [Added]
163   - Manpages are now available.
164
165 v15.09 and earlier releases
166   - Sorry, the CHANGES file did not exist back then. Please refer to the
167     Git log.