Skip to content

Commit b3a08df

Browse files
committed
release: release 0.8.0
1 parent c422cb1 commit b3a08df

File tree

4 files changed

+77
-2
lines changed

4 files changed

+77
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## Changes in v0.8.0
2+
3+
### Feature changes
4+
5+
- (gxi-config-storage): add try_* functions for panic-safe access to GSettings
6+
- (editview): only draw number in linecount on actual line
7+
- (editview): add line&column to statusbar
8+
- (editview): redirect EventScroll from linecount to ev_scroll_window
9+
- (editview): use ScrolledWindow for overlay scrollbars
10+
- (po): Add nl
11+
- (gxi|config_storage): save window state
12+
- (edit_view): use symbolic close button for tabs
13+
- (macros): add setup_gtk_panic macro
14+
15+
### Bugfixes
16+
17+
- (editview): remove uneccesary event masks
18+
- (gxi): set default size instead of setting a size request on window state restoring
19+
- (editview): avoid rounding errors in cursor positioning
20+
- (editview): don't scroll down in scroll_to if vadj's page_size is 1
21+
- (i18n): update lang (Dutch)
22+
- (i18n): update lang (Norwegian Bokmål)
23+
- (editview): grab focus of ev_scrolled_window instead of edit_area
24+
- (edit_view): set Layout size instead of setting Scrollbar's upper
25+
- (i18n): update PO files
26+
- (gxi): log with timestamp when RUST_LOg sets a custom loglevel, makes for nicer debugging
27+
- (gxi): log for all crates in our workspace
28+
- (edit_view): don't warn on window-{height,maximized,width} GSettings key change
29+
- (gxi): allow PanicHandler::new to not return Self
30+
- (gxi-linecache|gxi-peer): derive Default if a new function is present
31+
- (data): set gettext domain in gschema
32+
- (main_win): don't include GLADE_SRC file twice
33+
- (i18n): update lang (German)
34+
- (i18n): update lang (German)
35+
136
## Changes in v0.7.0
237

338
### Feature changes

data/com.github.Cogitri.gxi.appdata.xml.in

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,46 @@
3232
</provides>
3333

3434
<releases>
35+
<release version="0.8.0" date="2019-05-29">
36+
<p>
37+
Please note that this release switches everything to the GSettings config backend!
38+
This means that everything in HOME/.config/gxi won't be read anymore. As such
39+
some settings have been reset, such as the font and wordwrapping.
40+
Sorry for the inconvenience.
41+
</p>
42+
<p>Feature changes in this release</p>
43+
<ul>
44+
<li>(gxi-config-storage): add try_* functions for panic-safe access to GSettings</li>
45+
<li>(editview): only draw number in linecount on actual line</li>
46+
<li>(editview): add line&amp;column to statusbar</li>
47+
<li>(editview): redirect EventScroll from linecount to ev_scroll_window</li>
48+
<li>(editview): use ScrolledWindow for overlay scrollbars</li>
49+
<li>(po): Add nl</li>
50+
<li>(gxi|config_storage): save window state</li>
51+
<li>(edit_view): use symbolic close button for tabs</li>
52+
<li>(macros): add setup_gtk_panic macro</li>
53+
</ul>
54+
<p>Bugfixes in this release</p>
55+
<ul>
56+
<li>(editview): remove uneccesary event masks</li>
57+
<li>(gxi): set default size instead of setting a size request on window state restoring</li>
58+
<li>(editview): avoid rounding errors in cursor positioning</li>
59+
<li>(editview): don't scroll down in scroll_to if vadj' page_size is 1</li>
60+
<li>(i18n): update lang (Dutch)</li>
61+
<li>(i18n): update lang (Norwegian Bokmål)</li>
62+
<li>(editview): grab focus of ev_scrolled_window instead of edit_area</li>
63+
<li>(edit_view): set Layout size instead of setting Scrollbar&#39;s upper</li>
64+
<li>(i18n): update PO files</li>
65+
<li>(gxi): log with timestamp when RUST_LOg sets a custom loglevel, makes for nicer debugging</li>
66+
<li>(gxi): log for all crates in our workspace</li>
67+
<li>(edit_view): don&#39;t warn on window-{height,maximized,width} GSettings key change</li>
68+
<li>(gxi): allow PanicHandler::new to not return Self</li>
69+
<li>(gxi-linecache|gxi-peer): derive Default if a new function is present</li>
70+
<li>(data): set gettext domain in gschema</li>
71+
<li>(main_win): don't include GLADE_SRC file twice</li>
72+
<li>(i18n): update lang (German)</li>
73+
</ul>
74+
</release>
3575
<release version="0.7.0" date="2019-05-09">
3676
<description>
3777
<p>Changes in this release:</p>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(
22
'gxi', 'rust',
3-
version: '0.7.0',
3+
version: '0.8.0',
44
license: 'MIT',
55
)
66

0 commit comments

Comments
 (0)