Release under Apache 2.0 license

This commit is contained in:
Sebastián Katzer 2013-12-09 13:36:43 +01:00
parent a85644a75c
commit 3d98c0f07f
6 changed files with 271 additions and 533 deletions

704
LICENSE

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,8 @@ cordova plugin rm de.appplant.cordova.plugin.background-mode
## Release Notes
#### Version 0.4.1 (not yet released)
- Release under the LGPL 2.1 license.
- Release under the Apache 2.0 license.
- [enhancement:] Location tracking is only activated on WP8 if the location service is available.
#### Version 0.4.0 (10.10.2013)
- Added WP8 support<br>
@ -139,4 +140,4 @@ ren platforms\wp8\cordova\version.bat platforms\wp8\cordova\version
## License
This software is released under the [LGPL 2.1 License](http://opensource.org/licenses/LGPL-2.1).
This software is released under the [Apache 2.0 License](http://opensource.org/licenses/Apache-2.0).

View File

@ -1,17 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="de.appplant.cordova.plugin.background-mode"
version="0.4.1dev">
xmlns:android="http://schemas.android.com/apk/res/android"
id="de.appplant.cordova.plugin.background-mode"
version="0.4.1dev">
<name>BackgroundMode</name>
<description>A bunch of background mode plugins for Cordova 3.x.x</description>
<repo>https://github.com/katzer/cordova-plugin-background-mode.git</repo>
<keywords>background, ios, windows phone 8, wp8</keywords>
<license>LGPL v2.1 License</license>
<license>Apache 2.0</license>
<author>Sebastián Katzer (github.com/katzer)</author>
<author>Sebastián Katzer</author>
<engines>
<engine name="cordova" version=">=3.0.0" />

View File

@ -1,11 +1,23 @@
/**
* APPBackgroundMode.h
* Cordova BackgroundMode Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 08/10/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
/*
Copyright 2013 appPlant UG
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>

View File

@ -1,11 +1,23 @@
/**
* APPBackgroundMode.m
* Cordova BackgroundMode Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 08/10/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
/*
Copyright 2013 appPlant UG
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#import "APPBackgroundMode.h"

View File

@ -1,11 +1,23 @@
/**
* BackgroundMode.cs
* Cordova Background-Mode Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 08/10/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
/*
Copyright 2013 appPlant UG
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
using WPCordovaClassLib.Cordova.Commands;
using Windows.Devices.Geolocation;