Skip to content

Commit

Permalink
Release version 0.3.0 (#11)
Browse files Browse the repository at this point in the history
[NEW]
 * Add welcome view for onboarding
 * Show loading page if no smart home gadget is found
 * Show manufacturer and model of device
[IMPROVED]
 * Save and load window settings
[FIXED]
 * Remove mention of elementary OS in app description
 * Suffix symbolic icon names with -symbolic
 * Install all available icon sizes
[NEW]
 * Add new UI
 * Add initial support for Philips Hue devices
 * Add discovery for Philips Hue bridges
 * Add page to configure Philips Hue bridges
 * Add service to save configurations
[IMPROVED]
 * Update welcome view
 * Add mode switch for dark theme if freedesktop schema is not available
[FIXED]
[TRANSLATIONS]
 * French (by NathanBnm)
 * German
 * Russian (by camellan)
  • Loading branch information
meisenzahl authored Jul 4, 2019
1 parent 3655a81 commit cc08979
Show file tree
Hide file tree
Showing 448 changed files with 3,194 additions and 33,199 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,20 @@
<td>
<img src="data/screenshots/004.png">
</td>
<td>
<img src="data/screenshots/005.png">
</td>
</tr>
</table>
</p>

## Supported devices

<ul>
<li>LIFX</li>
<li>Philips Hue</li>
</ul>

## Installation

### Dependencies
Expand Down
31 changes: 31 additions & 0 deletions data/com.github.manexim.home.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<p>Supported devices:</p>
<ul>
<li>LIFX</li>
<li>Philips Hue</li>
</ul>
</description>
<categories>
Expand All @@ -20,6 +21,32 @@
<binary>com.github.manexim.home</binary>
</provides>
​<releases>
<release date="2019-07-04" version="0.3.0">
<description>
<p>New:</p>
<ul>
<li>Add new UI</li>
<li>Add initial support for Philips Hue devices</li>
<li>Add discovery for Philips Hue bridges</li>
<li>Add page to configure Philips Hue bridges</li>
<li>Add service to save configurations</li>
</ul>
<p>Improved:</p>
<ul>
<li>Update welcome view</li>
<li>Add mode switch for dark theme if freedesktop schema is not available</li>
</ul>
<p>Fixed:</p>
<ul>
</ul>
<p>Translations:</p>
<ul>
<li>French (by NathanBnm)</li>
<li>German</li>
<li>Russian (by camellan)</li>
</ul>
</description>
</release>
<release date="2019-06-14" version="0.2.0">
<description>
<p>New:</p>
Expand Down Expand Up @@ -67,6 +94,10 @@
<caption></caption>
<image>https://raw.githubusercontent.com/manexim/home/master/data/screenshots/004.png</image>
</screenshot>
<screenshot>
<caption></caption>
<image>https://raw.githubusercontent.com/manexim/home/master/data/screenshots/005.png</image>
</screenshot>
</screenshots>
<developer_name>Manexim</developer_name>
<url type="homepage">https://github.com/manexim</url>
Expand Down
13 changes: 9 additions & 4 deletions data/com.github.manexim.home.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@
<summary>Lasted started app version</summary>
<description>Last started app version to check if new features should be explained to user.</description>
</key>
<key name="philips-hue-bridges" type="as">
<default>[]</default>
<summary>List of configured Philips Hue Bridges</summary>
<description>List of configured Philips Hue Bridges.</description>
<key name="configuration" type="s">
<default>"{}"</default>
<summary>Configuration</summary>
<description>Configuration</description>
</key>
<key name="prefer-dark-style" type="b">
<default>false</default>
<summary>If the dark Gtk stylesheet should be used</summary>
<description>If the dark Gtk stylesheet should be used</description>
</key>
<key name="window-width" type="i">
<default>900</default>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
182 changes: 182 additions & 0 deletions data/icons/symbolic/com.github.manexim.home.thing-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@ foreach i : icon_sizes
endforeach

symbolic_icons = [
'com.github.manexim.home.bridge.philips.hue-symbolic',
'com.github.manexim.home.lightbulb-symbolic',
'com.github.manexim.home.lightbulb.lifx-symbolic',
'com.github.manexim.home.lightbulb.philips.hue-symbolic',
'com.github.manexim.home.logo.lifx-symbolic',
'com.github.manexim.home.logo.philips.hue-symbolic'
'com.github.manexim.home.logo.philips.hue-symbolic',
'com.github.manexim.home.thing-symbolic'
]

foreach icon : symbolic_icons
Expand Down
Binary file modified data/screenshots/000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshots/001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshots/002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshots/003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshots/004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/screenshots/005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit cc08979

Please sign in to comment.