mirror of
https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background
synced 2024-11-14 11:34:54 +00:00
Release under Apache 2.0 license
This commit is contained in:
parent
a85644a75c
commit
3d98c0f07f
@ -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).
|
||||
|
@ -8,10 +8,11 @@
|
||||
<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" />
|
||||
|
@ -1,10 +1,22 @@
|
||||
/**
|
||||
* 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>
|
||||
|
@ -1,10 +1,22 @@
|
||||
/**
|
||||
* 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"
|
||||
|
@ -1,10 +1,22 @@
|
||||
/**
|
||||
* 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;
|
||||
|
Loading…
Reference in New Issue
Block a user