Skip to content

Commit dfb3cdf

Browse files
Fix old blog post HTML issues
1 parent f032828 commit dfb3cdf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

_posts/2017-11-26-new-release.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ For the interested ones, here is the list of the (major) changes:
161161
* [Minor AnyValue improvements](https://github.com/gtk-rs/glib/pull/258)
162162
* [Implement AnyValue, a wrapper around std::any::Any](https://github.com/gtk-rs/glib/pull/252)
163163
* [Implement SendValue and make Value not implement Send](https://github.com/gtk-rs/glib/pull/256)
164-
* [Mark the IsA<_> trait unsafe](https://github.com/gtk-rs/glib/pull/257)
164+
* [Mark the IsA&lt;_&gt; trait unsafe](https://github.com/gtk-rs/glib/pull/257)
165165
* [Don't implement DerefMut on TypedValue](https://github.com/gtk-rs/glib/pull/255)
166166
* [Useless version bumping to help @meh](https://github.com/gtk-rs/glib/pull/245)
167167
* [Allow specifying class struct to glib_wrapper!() macro](https://github.com/gtk-rs/glib/pull/234)
168168
* [Some fixes in the Signals handling](https://github.com/gtk-rs/glib/pull/240)
169169
* [Value usage improvements](https://github.com/gtk-rs/glib/pull/238)
170170
* [Dox](https://github.com/gtk-rs/glib/pull/237)
171171
* [Use a newtype wrapper around the signal handler IDs](https://github.com/gtk-rs/glib/pull/231)
172-
* [Implement FromGlibPtrBorrow for Option<FromGlibPtrBorrow>](https://github.com/gtk-rs/glib/pull/232)
172+
* [Implement FromGlibPtrBorrow for Option&lt;FromGlibPtrBorrow&gt;](https://github.com/gtk-rs/glib/pull/232)
173173
* [Add version for Sha384](https://github.com/gtk-rs/glib/pull/227)
174174
* [For the CallbackGuard, print something to stderr and use abort() inst…](https://github.com/gtk-rs/glib/pull/225)
175175
* [Fix versioning](https://github.com/gtk-rs/glib/pull/221)
@@ -288,7 +288,7 @@ For the interested ones, here is the list of the (major) changes:
288288
* [Apply last gir](https://github.com/gtk-rs/gdk/pull/130)
289289
* [Add getter for 'button' property of GdkEventButton](https://github.com/gtk-rs/gdk/pull/128)
290290
* [WindowAttr](https://github.com/gtk-rs/gdk/pull/127)
291-
* [Implement From<&str> on Atom](https://github.com/gtk-rs/gdk/pull/125)
291+
* [Implement From&lt;&str&gt; on Atom](https://github.com/gtk-rs/gdk/pull/125)
292292
* [Update sys crates version](https://github.com/gtk-rs/gdk/pull/124)
293293
* [Update authors](https://github.com/gtk-rs/gdk/pull/123)
294294
* [Update version](https://github.com/gtk-rs/gdk/pull/122)
@@ -357,7 +357,7 @@ For the interested ones, here is the list of the (major) changes:
357357
* [Generate IconSet](https://github.com/gtk-rs/gtk/pull/530)
358358
* [Update to bitflags 0.9](https://github.com/gtk-rs/gtk/pull/528)
359359
* [Update lgpl dependency version](https://github.com/gtk-rs/gtk/pull/527)
360-
* [Change gtk::Application::new parameter to use Into<Option<&str>>](https://github.com/gtk-rs/gtk/pull/525)
360+
* [Change gtk::Application::new parameter to use Into&lt;Option&lt;&str&gt;&gt;](https://github.com/gtk-rs/gtk/pull/525)
361361
* [Use glib::BoolError for gtk::init() and gtk::Application::new()](https://github.com/gtk-rs/gtk/pull/523)
362362
* [Update lgpl version](https://github.com/gtk-rs/gtk/pull/522)
363363
* [Update release_process.md](https://github.com/gtk-rs/gtk/pull/521)

_posts/2018-03-17-new-release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For the interested ones, here is the list of the (major) changes:
5959
* [Const override](https://github.com/gtk-rs/glib/pull/278)
6060
* [Char wrapper 2](https://github.com/gtk-rs/glib/pull/274)
6161
* [Allow FnOnce for MainContext::invoke()](https://github.com/gtk-rs/glib/pull/277)
62-
* [Allow creating Bytes from any AsRef<[u8]> by copying or taking ownership of it](https://github.com/gtk-rs/glib/pull/276)
62+
* [Allow creating Bytes from any AsRef&lt;[u8]&gt; by copying or taking ownership of it](https://github.com/gtk-rs/glib/pull/276)
6363
* [Add bindings for g_file_test() and make use of it in the Path transla…](https://github.com/gtk-rs/glib/pull/273)
6464
* [Add Char wrapper; implement KeyFile::set_list_separator() with it](https://github.com/gtk-rs/glib/pull/248)
6565
* [Don't call g_value_unset() on zeroed GValues](https://github.com/gtk-rs/glib/pull/272)
@@ -68,7 +68,7 @@ For the interested ones, here is the list of the (major) changes:
6868
* [Various Path FFI improvements](https://github.com/gtk-rs/glib/pull/269)
6969
* [bump lazy_static to 1.0](https://github.com/gtk-rs/glib/pull/268)
7070
* [Add Value::from_type() to initialize an empty value from a Type](https://github.com/gtk-rs/glib/pull/266)
71-
* [Implement Value traits for Vec<String> more consistently](https://github.com/gtk-rs/glib/pull/264)
71+
* [Implement Value traits for Vec&lt;String&gt; more consistently](https://github.com/gtk-rs/glib/pull/264)
7272
* [Add ToGlibContainerFromSlice impls for *const GList / GSList](https://github.com/gtk-rs/glib/pull/261)
7373

7474
[gio](https://github.com/gtk-rs/gio):
@@ -96,7 +96,7 @@ For the interested ones, here is the list of the (major) changes:
9696

9797
[pango](https://github.com/gtk-rs/pango):
9898

99-
* [Remove manual FromGlibPtrNone<*const implementations](https://github.com/gtk-rs/pango/pull/101)
99+
* [Remove manual FromGlibPtrNone&lt;*const&gt; implementations](https://github.com/gtk-rs/pango/pull/101)
100100

101101
[gdk-pixbuf](https://github.com/gtk-rs/gdk-pixbuf):
102102

0 commit comments

Comments
 (0)