Skip to content

Commit 5aa8fea

Browse files
authored
Merge pull request #27 from WebPlatformForEmbedded/development/METROL-949
Renaming WPEFramework to Thunder
2 parents c2382c7 + c639000 commit 5aa8fea

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Launcher.json
44
Makefile
55
cmake_install.cmake
66
install_manifest.txt
7-
libWPEFrameworkLauncher.so
7+
libThunderLauncher.so

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3)
22

33
project(Launcher)
44

5-
find_package(WPEFramework)
5+
find_package(Thunder)
66

77
set(MODULE_NAME ${NAMESPACE}${PROJECT_NAME})
88

Launcher.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "Launcher.h"
22
#include <inttypes.h>
33

4-
namespace WPEFramework {
4+
namespace Thunder {
55

66
ENUM_CONVERSION_BEGIN(Plugin::Launcher::mode)
77

@@ -192,4 +192,4 @@ bool Launcher::ScheduleParameters(const Config& config, string& message, Core::T
192192

193193
} //namespace Plugin
194194

195-
} // namespace WPEFramework
195+
} // namespace Thunder

Launcher.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <linux/cn_proc.h>
66
#include <vector>
77

8-
namespace WPEFramework {
8+
namespace Thunder {
99
namespace Plugin {
1010

1111
class Launcher : public PluginHost::IPlugin {
@@ -767,7 +767,7 @@ class Launcher : public PluginHost::IPlugin {
767767
// The lifetime of the Service object is guaranteed till the deinitialize method is called.
768768
const string Initialize(PluginHost::IShell* service) override;
769769

770-
// The plugin is unloaded from WPEFramework. This is call allows the module to notify clients
770+
// The plugin is unloaded from Thunder. This is call allows the module to notify clients
771771
// or to persist information if needed. After this call the plugin will unlink from the service path
772772
// and be deactivated. The Service object is the same as passed in during the Initialize.
773773
// After theis call, the lifetime of the Service object ends.
@@ -792,5 +792,5 @@ class Launcher : public PluginHost::IPlugin {
792792
};
793793

794794
} //namespace Plugin
795-
} //namespace WPEFramework
795+
} //namespace Thunder
796796

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Plugin to "Launch" linux applications and scripts
66

77
### How to launch a script/application
88

9-
1. Build launcher plugin. It create /usr/lib/wpeframework/plugins/libWPEFrameworkLauncher.so and /root/etc/WPEFramework/plugins/Launcher.json
9+
1. Build launcher plugin. It create /usr/lib/thunder/plugins/libThunderLauncher.so and /root/etc/Thunder/plugins/Launcher.json
1010

1111
Generated Launcher.json contains,
1212
```
1313
{
14-
"locator":"libWPEFrameworkLauncher.so",
14+
"locator":"libThunderLauncher.so",
1515
"classname":"Launcher",
1616
"precondition":[
1717
"Platform"
@@ -25,7 +25,7 @@ Plugin to "Launch" linux applications and scripts
2525
E.g. to run command < `du -a /etc` >
2626
```
2727
{
28-
"locator":"libWPEFrameworkLauncher.so",
28+
"locator":"libThunderLauncher.so",
2929
"classname":"Launcher",
3030
"precondition":[
3131
"Platform"
@@ -42,7 +42,7 @@ Plugin to "Launch" linux applications and scripts
4242
E.g. to run < `du -a /etc -h` >
4343
```
4444
{
45-
"locator":"libWPEFrameworkLauncher.so",
45+
"locator":"libThunderLauncher.so",
4646
"classname":"Launcher",
4747
"precondition":[
4848
"Platform"
@@ -139,7 +139,7 @@ Note:
139139

140140
```
141141
{
142-
"locator":"libWPEFrameworkLauncher.so",
142+
"locator":"libThunderLauncher.so",
143143
"classname":"Launcher",
144144
"precondition":[
145145
"Platform"
@@ -162,5 +162,5 @@ E.g.
162162

163163
3. Create testapp3.json by copying Launcher.json (cp Launcher.json testapp3.json) and update with proper commands and options/values
164164

165-
4. Run WPEFramework
165+
4. Run Thunder
166166

0 commit comments

Comments
 (0)