Rename kioslaves

pull/1/head
Timothy Pearson 11 years ago
parent 3fc473bacc
commit 087cd36e84

@ -8,7 +8,7 @@
0.7.2 (KDE 3.3.2) 0.7.2 (KDE 3.3.2)
----- -----
- Proper use of host and port in kio_atlantik: fixes problems with - Proper use of host and port in tdeio_atlantik: fixes problems with
invitations sent by newer clients. invitations sent by newer clients.
- bugfix: scroll player views when they get too big. (#69043) - bugfix: scroll player views when they get too big. (#69043)
- bugfix: show correct amount of players in trade widget. - bugfix: show correct amount of players in trade widget.
@ -106,7 +106,7 @@
- fixed potential double initialization of gameboard - fixed potential double initialization of gameboard
- don't crash when removing money from a trade - don't crash when removing money from a trade
- properly quote arguments given to TDEProcess in kio_atlantik - properly quote arguments given to TDEProcess in tdeio_atlantik
- valgrind leak and unitialised memory access fixes - valgrind leak and unitialised memory access fixes
0.5.0 0.5.0
@ -125,7 +125,7 @@
- fix buttons, they have specific targets, not just the current widget - fix buttons, they have specific targets, not just the current widget
- delete buttons in EstateDetails::newUpdate() - delete buttons in EstateDetails::newUpdate()
- commandline parameters host, port and game supported (for auto-join) - commandline parameters host, port and game supported (for auto-join)
- kio_atlantik allows for easy connecting from other applications - tdeio_atlantik allows for easy connecting from other applications
(kopete/kmail) (kopete/kmail)
- leave game and leave server options - leave game and leave server options
- pre-game configuration - pre-game configuration

@ -1,5 +1,5 @@
SUBDIRS = libatlantic libatlantikclient libatlantikui client \ SUBDIRS = libatlantic libatlantikclient libatlantikui client \
kio_atlantik pics themes tdeio_atlantik pics themes
EXTRA_DIST = atlantik.desktop EXTRA_DIST = atlantik.desktop

@ -1,15 +0,0 @@
INCLUDES = -I$(top_srcdir)/atlantik/libatlantic $(all_includes)
METASOURCES = AUTO
kde_module_LTLIBRARIES = kio_atlantik.la
kio_atlantik_la_SOURCES = kio_atlantik.cpp
kio_atlantik_la_LIBADD = $(LIB_KIO)
kio_atlantik_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
noinst_HEADERS = kio_atlantik.h
kdelnk_DATA = atlantik.protocol
kdelnkdir = $(kde_servicesdir)
messages:
$(XGETTEXT) *.cpp -o $(podir)/tdeio_atlantik.pot

@ -0,0 +1,15 @@
INCLUDES = -I$(top_srcdir)/atlantik/libatlantic $(all_includes)
METASOURCES = AUTO
kde_module_LTLIBRARIES = tdeio_atlantik.la
tdeio_atlantik_la_SOURCES = tdeio_atlantik.cpp
tdeio_atlantik_la_LIBADD = $(LIB_KIO)
tdeio_atlantik_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN)
noinst_HEADERS = tdeio_atlantik.h
kdelnk_DATA = atlantik.protocol
kdelnkdir = $(kde_servicesdir)
messages:
$(XGETTEXT) *.cpp -o $(podir)/tdeio_atlantik.pot

@ -1,5 +1,5 @@
[Protocol] [Protocol]
exec=kio_atlantik exec=tdeio_atlantik
protocol=atlantik protocol=atlantik
input=none input=none
output=none output=none

@ -29,14 +29,14 @@
#include <kinstance.h> #include <kinstance.h>
#include <kprocess.h> #include <kprocess.h>
#include "kio_atlantik.h" #include "tdeio_atlantik.h"
#include "libatlantic_export.h" #include "libatlantic_export.h"
extern "C" extern "C"
{ {
int LIBATLANTIC_EXPORT kdemain( int, char **argv ) int LIBATLANTIC_EXPORT kdemain( int, char **argv )
{ {
TDEInstance instance( "kio_atlantik" ); TDEInstance instance( "tdeio_atlantik" );
AtlantikProtocol slave(argv[2], argv[3]); AtlantikProtocol slave(argv[2], argv[3]);
slave.dispatchLoop(); slave.dispatchLoop();
return 0; return 0;

@ -1 +1 @@
Subproject commit 9a217903f9fa35ca12213a6e9ee3d2cb87d1131d Subproject commit 274366fb8b90704586d7beef216b765cc0688b08

@ -6,7 +6,7 @@ knetwalk_sources = [
] ]
myenv.KDEprogram( "knetwalk", knetwalk_sources) myenv.KDEprogram( "knetwalk", knetwalk_sources)
myenv.KDEaddpaths_includes( ['./', '#./']) myenv.KDEaddpaths_includes( ['./', '#./'])
myenv.KDEaddlibs( ['qt-mt', 'kio', 'tdecore', 'tdegames']) myenv.KDEaddlibs( ['qt-mt', 'tdeio', 'tdecore', 'tdegames'])
myenv.KDEinstall('KDEDATA', 'knetwalk', 'knetwalkui.rc') myenv.KDEinstall('KDEDATA', 'knetwalk', 'knetwalkui.rc')
myenv.KDEinstall('KDEDATA', 'knetwalk', 'eventsrc') myenv.KDEinstall('KDEDATA', 'knetwalk', 'eventsrc')
myenv.KDEinstall('KDEXDG', '', 'knetwalk.desktop') myenv.KDEinstall('KDEXDG', '', 'knetwalk.desktop')

Loading…
Cancel
Save