author | mickeyl <mickeyl> | 2004-04-23 22:39:17 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-23 22:39:17 (UTC) |
commit | 29b610fa34e86e03b343cc3026041adb9530f7d8 (patch) (unidiff) | |
tree | 6e72d289c6058c60b6a688de405015c1c954d15b | |
parent | 24c318a1650bf6f42278219d3cd377013c559a56 (diff) | |
download | opie-29b610fa34e86e03b343cc3026041adb9530f7d8.zip opie-29b610fa34e86e03b343cc3026041adb9530f7d8.tar.gz opie-29b610fa34e86e03b343cc3026041adb9530f7d8.tar.bz2 |
rename library and executable name for more consistency
-rw-r--r-- | noncore/multimedia/camera/ChangeLog | 4 | ||||
-rw-r--r-- | noncore/multimedia/camera/gui/gui.pro | 4 | ||||
-rw-r--r-- | noncore/multimedia/camera/lib/lib.pro | 4 | ||||
-rw-r--r-- | noncore/multimedia/camera/opie-camera.control | 4 |
4 files changed, 10 insertions, 6 deletions
diff --git a/noncore/multimedia/camera/ChangeLog b/noncore/multimedia/camera/ChangeLog index d8b342d..37c03e5 100644 --- a/noncore/multimedia/camera/ChangeLog +++ b/noncore/multimedia/camera/ChangeLog | |||
@@ -1,27 +1,31 @@ | |||
1 | 2004-04-24 Michael Lauer <mickey@Vanille.de> | ||
2 | |||
3 | * Rename binary and library for more consitency | ||
4 | |||
1 | 2003-12-18 Michael Lauer <mickey@Vanille.de> | 5 | 2003-12-18 Michael Lauer <mickey@Vanille.de> |
2 | 6 | ||
3 | * Released as Version 1.0.1 (Stable) | 7 | * Released as Version 1.0.1 (Stable) |
4 | * Added persistant configuration settings | 8 | * Added persistant configuration settings |
5 | * Refactored the camera API into a library | 9 | * Refactored the camera API into a library |
6 | * Added a command line capturing application (e.g. for web-cam) | 10 | * Added a command line capturing application (e.g. for web-cam) |
7 | 11 | ||
8 | 2003-04-25 Michael Lauer <mickey@Vanille.de> | 12 | 2003-04-25 Michael Lauer <mickey@Vanille.de> |
9 | 13 | ||
10 | * Released as Version 1.0 (Stable) | 14 | * Released as Version 1.0 (Stable) |
11 | * Added video capturing | 15 | * Added video capturing |
12 | 16 | ||
13 | 2003-04-08 Michael Lauer <mickey@Vanille.de> | 17 | 2003-04-08 Michael Lauer <mickey@Vanille.de> |
14 | 18 | ||
15 | * Released as Version 0.2 (Beta) | 19 | * Released as Version 0.2 (Beta) |
16 | * Added photo capturing | 20 | * Added photo capturing |
17 | * Made the main layout a full preview window | 21 | * Made the main layout a full preview window |
18 | * Implemented portrait/landscape switching based on OpenZaurus life-rotation | 22 | * Implemented portrait/landscape switching based on OpenZaurus life-rotation |
19 | 23 | ||
20 | 2003-04-06 Michael Lauer <mickey@Vanille.de> | 24 | 2003-04-06 Michael Lauer <mickey@Vanille.de> |
21 | 25 | ||
22 | * Released as Version 0.1 (Alpha) | 26 | * Released as Version 0.1 (Alpha) |
23 | * Added picture preview widget | 27 | * Added picture preview widget |
24 | 28 | ||
25 | 2003-04-01 Michael Lauer <mickey@Vanille.de> | 29 | 2003-04-01 Michael Lauer <mickey@Vanille.de> |
26 | 30 | ||
27 | * Started with Opie-Camera application by implementing the core camera API | 31 | * Started with Opie-Camera application by implementing the core camera API |
diff --git a/noncore/multimedia/camera/gui/gui.pro b/noncore/multimedia/camera/gui/gui.pro index 9503862..cb7c4ca 100644 --- a/noncore/multimedia/camera/gui/gui.pro +++ b/noncore/multimedia/camera/gui/gui.pro | |||
@@ -1,19 +1,19 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE = app | 2 | TEMPLATE = app |
3 | CONFIG += qt warn_on | 3 | CONFIG += qt warn_on |
4 | 4 | ||
5 | HEADERS = previewwidget.h \ | 5 | HEADERS = previewwidget.h \ |
6 | mainwindow.h | 6 | mainwindow.h |
7 | 7 | ||
8 | SOURCES = previewwidget.cpp \ | 8 | SOURCES = previewwidget.cpp \ |
9 | mainwindow.cpp \ | 9 | mainwindow.cpp \ |
10 | main.cpp | 10 | main.cpp |
11 | 11 | ||
12 | INCLUDEPATH += $(OPIEDIR)/include ../lib | 12 | INCLUDEPATH += $(OPIEDIR)/include ../lib |
13 | DEPENDPATH += $(OPIEDIR)/include ../lib | 13 | DEPENDPATH += $(OPIEDIR)/include ../lib |
14 | LIBS += -lopiecore2 -lopieui2 -lopiecam | 14 | LIBS += -lopiecore2 -lopieui2 -lcamera |
15 | INTERFACES = | 15 | INTERFACES = |
16 | TARGET = opiecam | 16 | TARGET = camera |
17 | 17 | ||
18 | include ( $(OPIEDIR)/include.pro ) | 18 | include ( $(OPIEDIR)/include.pro ) |
19 | 19 | ||
diff --git a/noncore/multimedia/camera/lib/lib.pro b/noncore/multimedia/camera/lib/lib.pro index f3c25ec..b7a13c9 100644 --- a/noncore/multimedia/camera/lib/lib.pro +++ b/noncore/multimedia/camera/lib/lib.pro | |||
@@ -1,22 +1,22 @@ | |||
1 | DESTDIR = $(OPIEDIR)/lib | 1 | DESTDIR = $(OPIEDIR)/lib |
2 | TEMPLATE = lib | 2 | TEMPLATE = lib |
3 | CONFIG += qt warn_on | 3 | CONFIG += qt warn_on |
4 | 4 | ||
5 | HEADERS = avi.h \ | 5 | HEADERS = avi.h \ |
6 | imageio.h \ | 6 | imageio.h \ |
7 | zcameraio.h \ | 7 | zcameraio.h \ |
8 | 8 | ||
9 | SOURCES = avi.c \ | 9 | SOURCES = avi.c \ |
10 | imageio.cpp \ | 10 | imageio.cpp \ |
11 | zcameraio.cpp \ | 11 | zcameraio.cpp \ |
12 | 12 | ||
13 | INCLUDEPATH += $(OPIEDIR)/include | 13 | INCLUDEPATH += $(OPIEDIR)/include |
14 | DEPENDPATH += $(OPIEDIR)/include | 14 | DEPENDPATH += $(OPIEDIR)/include |
15 | LIBS += -lopiecore2 | 15 | LIBS += -lopiecore2 |
16 | INTERFACES = | 16 | INTERFACES = |
17 | VERSION = 1.0.0 | 17 | VERSION = 1.0.1 |
18 | TARGET = opiecam | 18 | TARGET = camera |
19 | 19 | ||
20 | 20 | ||
21 | include ( $(OPIEDIR)/include.pro ) | 21 | include ( $(OPIEDIR)/include.pro ) |
22 | 22 | ||
diff --git a/noncore/multimedia/camera/opie-camera.control b/noncore/multimedia/camera/opie-camera.control index 80647e6..d9eaab8 100644 --- a/noncore/multimedia/camera/opie-camera.control +++ b/noncore/multimedia/camera/opie-camera.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-camera | 1 | Package: opie-camera |
2 | Files: lib/libopiecam.* bin/opiecam bin/capture pics/camera apps/Applications/camera.desktop | 2 | Files: lib/libcamera.* bin/camera bin/capture pics/camera apps/Applications/camera.desktop |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/multimedia | 4 | Section: opie/multimedia |
5 | Maintainer: Michael 'Mickey' Lauer <mickeyl@Vanille.de> | 5 | Maintainer: Michael 'Mickey' Lauer <mickeyl@Vanille.de> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: 1.0.1 | 7 | Version: 1.0.1 |
8 | Depends: libqpe1, libopiecore2 | 8 | Depends: libqpe1, libopiecore2, libopieui2 |
9 | Description: A Camera Application | 9 | Description: A Camera Application |
10 | A Camera Application to use with the Sharp CE-AG06. | 10 | A Camera Application to use with the Sharp CE-AG06. |