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