<feed xmlns='http://www.w3.org/2005/Atom'>
<title>systray, branch test-pr-78</title>
<subtitle>a cross platfrom Go library to place an icon and menu in the notification area</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/'/>
<entry>
<title>try PR #78</title>
<updated>2019-01-31T07:21:42+00:00</updated>
<author>
<name>Joesis</name>
</author>
<published>2019-01-31T07:21:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=d134bdd4d8106f599ff44fbad0053db7cf4d3d74'/>
<id>d134bdd4d8106f599ff44fbad0053db7cf4d3d74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #81 from michaelsanford/master</title>
<updated>2019-01-30T01:48:07+00:00</updated>
<author>
<name>joesis</name>
</author>
<published>2019-01-30T01:48:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=0daad7b8e5bd9533578e674141123f6a264a7454'/>
<id>0daad7b8e5bd9533578e674141123f6a264a7454</id>
<content type='text'>
Document cross-platform console window details</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Document cross-platform console window details</pre>
</div>
</content>
</entry>
<entry>
<title>Document cross-platform console window details</title>
<updated>2019-01-29T15:39:24+00:00</updated>
<author>
<name>Michael Sanford</name>
</author>
<published>2019-01-29T15:39:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=c7802de1542f2014d9fd6a3f1a1d4701b6f7ebba'/>
<id>c7802de1542f2014d9fd6a3f1a1d4701b6f7ebba</id>
<content type='text'>
Fixes #55. Explain how to hide the console window when running on Windows / macOS.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #55. Explain how to hide the console window when running on Windows / macOS.</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #76 from meskio/separator_windows</title>
<updated>2018-12-06T01:05:16+00:00</updated>
<author>
<name>thistle</name>
</author>
<published>2018-12-06T01:05:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=eaad7114094d8a1b1b7188c062fa7f0fe21ac9b0'/>
<id>eaad7114094d8a1b1b7188c062fa7f0fe21ac9b0</id>
<content type='text'>
Add the separator to the visible items</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the separator to the visible items</pre>
</div>
</content>
</entry>
<entry>
<title>Add the separator to the visible items</title>
<updated>2018-11-29T12:15:45+00:00</updated>
<author>
<name>Ruben Pollan</name>
</author>
<published>2018-11-29T12:15:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=d9b331bdaef5414aa3ff368d25960b65a5d3abfc'/>
<id>d9b331bdaef5414aa3ff368d25960b65a5d3abfc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #74 from kalikaneko/bug/keep-track-of-hidden-items-win</title>
<updated>2018-11-25T06:33:48+00:00</updated>
<author>
<name>joesis</name>
</author>
<published>2018-11-25T06:33:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=6fa49abe8bee085d84e1d5aae1104c1ec88a97db'/>
<id>6fa49abe8bee085d84e1d5aae1104c1ec88a97db</id>
<content type='text'>
keep track of hidden items</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
keep track of hidden items</pre>
</div>
</content>
</entry>
<entry>
<title>keep a slice with the visible items to fix positioning bug</title>
<updated>2018-11-14T19:42:10+00:00</updated>
<author>
<name>kali</name>
</author>
<published>2018-11-08T19:36:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=f5df9ef609c410eddc16af7681008f4ea58fe49c'/>
<id>f5df9ef609c410eddc16af7681008f4ea58fe49c</id>
<content type='text'>
in windows, Hide() destroys a menuItem. this has problems when later we
try to Show() it and end up using the original menuID, for instance if
we did hide several elements in a row: if we insert the element in the
original position, it will end up inserted past some other elements that
were intended to be placed after the items that were hidden.

by keeping a slice where we insert and delete the id of the elements
that are shown, we can sort this slice and take the index of a given
element as the correct index in which we want to insert the menuItem
when calling Show() again.

- Resolves: #72
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in windows, Hide() destroys a menuItem. this has problems when later we
try to Show() it and end up using the original menuID, for instance if
we did hide several elements in a row: if we insert the element in the
original position, it will end up inserted past some other elements that
were intended to be placed after the items that were hidden.

by keeping a slice where we insert and delete the id of the elements
that are shown, we can sort this slice and take the index of a given
element as the correct index in which we want to insert the menuItem
when calling Show() again.

- Resolves: #72
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #73 from swznd/patch-1</title>
<updated>2018-11-03T02:00:48+00:00</updated>
<author>
<name>joesis</name>
</author>
<published>2018-11-03T02:00:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=19c034af4717bf1737fc722e1804f5eb57e3bec5'/>
<id>19c034af4717bf1737fc722e1804f5eb57e3bec5</id>
<content type='text'>
Support macOS older than 10.13</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Support macOS older than 10.13</pre>
</div>
</content>
</entry>
<entry>
<title>Support macOS older than 10.13</title>
<updated>2018-11-02T12:50:28+00:00</updated>
<author>
<name>Muhammad Fikri</name>
</author>
<published>2018-11-02T12:50:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=ba607cc0be7a766afd10f4bc6d83c6e925e8b3a9'/>
<id>ba607cc0be7a766afd10f4bc6d83c6e925e8b3a9</id>
<content type='text'>
`NSControlStateValueOff` and `NSControlStateValueOn` available since 10.13</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`NSControlStateValueOff` and `NSControlStateValueOn` available since 10.13</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #69 from getlantern/pull-68</title>
<updated>2018-10-20T01:37:54+00:00</updated>
<author>
<name>joesis</name>
</author>
<published>2018-10-20T01:37:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/systray/commit/?id=e31397f8c6928d98a8a9a7e80087aebcf0090beb'/>
<id>e31397f8c6928d98a8a9a7e80087aebcf0090beb</id>
<content type='text'>
define ERROR_SUCCESS as syscall.Errno</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
define ERROR_SUCCESS as syscall.Errno</pre>
</div>
</content>
</entry>
</feed>
