Skip to content

Commit 11792ef

Browse files
author
David Gräff
committed
Move most anel specific stuff to anel. Add assets. Icons for widgets, scenes.
1 parent 45079fc commit 11792ef

File tree

88 files changed

+1777
-2018
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1777
-2018
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# netpowerctrl
2-
netpowerctrl is an Android App for controlling ANEL NET-PwrCtrl's (http://www.anel-elektronik.de)
2+
netpowerctrl is an Android App for controlling ANEL (http://www.anel-elektronik.de)
33
switchable network outlets.
44

55
You can find a ready to install apk at [Github Releases](https://github.com/davidgraeff/Android-NetPowerctrl/releases)
@@ -28,12 +28,12 @@ For bugs and feature requests please use [Github Issues](https://github.com/davi
2828
### Automatic device detection
2929
Devices are detected automatically if they are configured for UDP communication.
3030
Default send port 1077 / receive port 1075 (can be configured). Please be aware
31-
that you cannot use port numbers < 1024 because of android restrictions!
31+
that you cannot use port numbers < 1024!
3232

3333
### Support for automation apps like Tasker/Llama
3434
Most of the automation apps support shortcuts of other applications.
3535
Because a shortcut of this app refers to a scene, you may easily switch multiple
36-
outlets as an action within the automation app.
36+
outlets as an action within an automation app.
3737

3838
Cool examples:
3939
* This way you can for instance switch on lights if your mobile gets in range of your wifi network.
@@ -47,7 +47,6 @@ support libraries (v13) and need at least android 4.0 (sdk version 14, released
4747

4848
### Authors
4949
* david.graeff(at)web_de
50-
* Based on http://sourceforge.net/projects/netpowerctrl/ (oly(at)nittka_com)
5150

5251
### License
53-
GPLv2
52+
Dual licensed: GPLv2+GPLv3

app/src/main/AndroidManifest.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="oly.netpowerctrl"
4-
android:versionCode="25"
5-
android:versionName="2.4">
4+
android:versionCode="26"
5+
android:versionName="2.5">
66

77
<!-- Api level 14: Android 4.0 15. Dezember 2011 -->
88
<!-- Api level 16: Android 4.1 27. Juni 2012 -->
@@ -49,7 +49,7 @@
4949
</activity>
5050

5151
<activity
52-
android:name=".shortcut.ShortcutExecutionActivity"
52+
android:name=".shortcut.ExecutionActivity"
5353
android:label="@string/app_name"
5454
android:icon="@drawable/netpowerctrl"
5555
android:launchMode="singleInstance"
@@ -71,7 +71,7 @@
7171
</activity>
7272

7373
<activity
74-
android:name="oly.netpowerctrl.shortcut.ShortcutCreatorActivity"
74+
android:name=".shortcut.EditShortcutActivity"
7575
android:icon="@drawable/netpowerctrl"
7676
android:label="@string/app_name_shortcut"
7777
android:description="@string/app_name_shortcut_desc"
@@ -101,7 +101,7 @@
101101
</receiver>
102102

103103
<service
104-
android:name="oly.netpowerctrl.anelservice.NetpowerctrlService"
104+
android:name="oly.netpowerctrl.network.NetpowerctrlService"
105105
android:permission="android.permission.INTERNET" />
106106

107107
<service android:name="oly.netpowerctrl.widget.WidgetUpdateService" />
4.57 KB
Loading
2.85 KB
Loading
14.4 KB
Loading
4.73 KB
Loading
6.15 KB
Loading
14.4 KB
Loading
Loading
Loading

0 commit comments

Comments
 (0)