Skip to content

Commit

Permalink
release: release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cogitri committed May 29, 2019
1 parent c422cb1 commit b3a08df
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## Changes in v0.8.0

### Feature changes

- (gxi-config-storage): add try_* functions for panic-safe access to GSettings
- (editview): only draw number in linecount on actual line
- (editview): add line&column to statusbar
- (editview): redirect EventScroll from linecount to ev_scroll_window
- (editview): use ScrolledWindow for overlay scrollbars
- (po): Add nl
- (gxi|config_storage): save window state
- (edit_view): use symbolic close button for tabs
- (macros): add setup_gtk_panic macro

### Bugfixes

- (editview): remove uneccesary event masks
- (gxi): set default size instead of setting a size request on window state restoring
- (editview): avoid rounding errors in cursor positioning
- (editview): don't scroll down in scroll_to if vadj's page_size is 1
- (i18n): update lang (Dutch)
- (i18n): update lang (Norwegian Bokmål)
- (editview): grab focus of ev_scrolled_window instead of edit_area
- (edit_view): set Layout size instead of setting Scrollbar's upper
- (i18n): update PO files
- (gxi): log with timestamp when RUST_LOg sets a custom loglevel, makes for nicer debugging
- (gxi): log for all crates in our workspace
- (edit_view): don't warn on window-{height,maximized,width} GSettings key change
- (gxi): allow PanicHandler::new to not return Self
- (gxi-linecache|gxi-peer): derive Default if a new function is present
- (data): set gettext domain in gschema
- (main_win): don't include GLADE_SRC file twice
- (i18n): update lang (German)
- (i18n): update lang (German)

## Changes in v0.7.0

### Feature changes
Expand Down
40 changes: 40 additions & 0 deletions data/com.github.Cogitri.gxi.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,46 @@
</provides>

<releases>
<release version="0.8.0" date="2019-05-29">
<p>
Please note that this release switches everything to the GSettings config backend!
This means that everything in HOME/.config/gxi won't be read anymore. As such
some settings have been reset, such as the font and wordwrapping.
Sorry for the inconvenience.
</p>
<p>Feature changes in this release</p>
<ul>
<li>(gxi-config-storage): add try_* functions for panic-safe access to GSettings</li>
<li>(editview): only draw number in linecount on actual line</li>
<li>(editview): add line&amp;column to statusbar</li>
<li>(editview): redirect EventScroll from linecount to ev_scroll_window</li>
<li>(editview): use ScrolledWindow for overlay scrollbars</li>
<li>(po): Add nl</li>
<li>(gxi|config_storage): save window state</li>
<li>(edit_view): use symbolic close button for tabs</li>
<li>(macros): add setup_gtk_panic macro</li>
</ul>
<p>Bugfixes in this release</p>
<ul>
<li>(editview): remove uneccesary event masks</li>
<li>(gxi): set default size instead of setting a size request on window state restoring</li>
<li>(editview): avoid rounding errors in cursor positioning</li>
<li>(editview): don't scroll down in scroll_to if vadj' page_size is 1</li>
<li>(i18n): update lang (Dutch)</li>
<li>(i18n): update lang (Norwegian Bokmål)</li>
<li>(editview): grab focus of ev_scrolled_window instead of edit_area</li>
<li>(edit_view): set Layout size instead of setting Scrollbar&#39;s upper</li>
<li>(i18n): update PO files</li>
<li>(gxi): log with timestamp when RUST_LOg sets a custom loglevel, makes for nicer debugging</li>
<li>(gxi): log for all crates in our workspace</li>
<li>(edit_view): don&#39;t warn on window-{height,maximized,width} GSettings key change</li>
<li>(gxi): allow PanicHandler::new to not return Self</li>
<li>(gxi-linecache|gxi-peer): derive Default if a new function is present</li>
<li>(data): set gettext domain in gschema</li>
<li>(main_win): don't include GLADE_SRC file twice</li>
<li>(i18n): update lang (German)</li>
</ul>
</release>
<release version="0.7.0" date="2019-05-09">
<description>
<p>Changes in this release:</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'gxi', 'rust',
version: '0.7.0',
version: '0.8.0',
license: 'MIT',
)

Expand Down

0 comments on commit b3a08df

Please sign in to comment.