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