Update for AlephOne and the Marathon game files to the recent 1.3.1 release.
Major Changes: Uses SDL 2 for much-improved compatibility with new operating systems Better support for game controllers Better performance for the software renderer Improved mouse control options, with settings for Classic and Modern mouse control Better support for high-dpi displays New controls dialog, which allows simultaneous key, mouse, and controller bindings More authentic static effect when using OpenGL Adds a stash for sharing info between Lua states Better support for Unicode characters in Windows (should fix Rubicon X) Better support for original Marathon scenarios including Trojan, which now works fully A separate 64-bit Windows build is available Better master volume and music volume controls Video export bitrate depends on the video resolution, which leads to much improved export at 1080p with default settings Mac apps are now notarized by Apple Original games now default to more authentic settings on first install; high res plugins are still included but are not enabled by default Plays well for me on amd64 OK? Index: games/alephone/alephone/Makefile =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/Makefile,v retrieving revision 1.30 diff -u -p -u -p -r1.30 Makefile --- games/alephone/alephone/Makefile 12 Jul 2019 20:46:14 -0000 1.30 +++ games/alephone/alephone/Makefile 11 Sep 2020 18:06:10 -0000 @@ -1,12 +1,13 @@ # $OpenBSD: Makefile,v 1.30 2019/07/12 20:46:14 sthen Exp $ +DPB_PROPERTIES = parallel + DIST_SUBDIR ?= alephone COMMENT = open source game engine based on Marathon 2: Durandal -DATE = 20150620 +DATE = 20200904 DISTNAME = AlephOne-${DATE} -PKGNAME = alephone-1.2.1 -REVISION = 6 +PKGNAME = alephone-1.3.1 EXTRACT_SUFX = .tar.bz2 CATEGORIES = games x11 @@ -20,10 +21,10 @@ PERMIT_PACKAGE = Yes MASTER_SITES = https://github.com/Aleph-One-Marathon/alephone/releases/download/release-${DATE}/ -WANTLIB += GL GLU c m pthread ${COMPILER_LIBCXX} z -WANTLIB += SDL SDL_net SDL_image SDL_ttf mad png sndfile -WANTLIB += smpeg speex speexdsp vorbisfile zzip -WANTLIB += avcodec avformat avutil swscale boost_filesystem boost_system curl +WANTLIB += ${COMPILER_LIBCXX} GL GLU SDL2 SDL2_image SDL2_net +WANTLIB += SDL2_ttf avcodec avformat avutil boost_filesystem boost_system +WANTLIB += c curl expat m mad png sndfile speex speexdsp swscale +WANTLIB += vorbisfile z zzip COMPILER = base-clang ports-gcc base-gcc @@ -31,10 +32,9 @@ BUILD_DEPENDS = devel/automake/${AUTOMA devel/autoconf/${AUTOCONF_VER} LIB_DEPENDS = archivers/zziplib \ devel/boost \ - devel/sdl-net \ - devel/sdl-image \ - devel/sdl-ttf \ - devel/smpeg \ + devel/sdl2-net \ + devel/sdl2-image \ + devel/sdl2-ttf \ audio/libmad \ audio/libsndfile \ audio/speex \ @@ -42,11 +42,15 @@ LIB_DEPENDS = archivers/zziplib \ graphics/ffmpeg \ net/curl +RUN_DEPENDS = devel/desktop-file-utils \ + x11/gtk+3,-guic \ + misc/shared-mime-info + USE_BZIP2 = Yes USE_GMAKE = Yes CONFIGURE_STYLE = gnu -AUTOCONF_VER = 2.61 -AUTOMAKE_VER = 1.9 +AUTOCONF_VER = 2.65 +AUTOMAKE_VER = 1.16 CONFIGURE_ENV = AUTOCONF_VERSION=${AUTOCONF_VER} \ AUTOMAKE_VERSION=${AUTOMAKE_VER} \ CPPFLAGS=-I${LOCALBASE}/include Index: games/alephone/alephone/distinfo =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/distinfo,v retrieving revision 1.10 diff -u -p -u -p -r1.10 distinfo --- games/alephone/alephone/distinfo 2 Feb 2016 10:17:44 -0000 1.10 +++ games/alephone/alephone/distinfo 11 Sep 2020 13:08:40 -0000 @@ -1,2 +1,2 @@ -SHA256 (alephone/AlephOne-20150620.tar.bz2) = wPNg37dKYmT5XTdRA6dAAJMM8EOf+wRk+RX1N5RD4TM= -SIZE (alephone/AlephOne-20150620.tar.bz2) = 5031898 +SHA256 (alephone/AlephOne-20200904.tar.bz2) = kCJ6tt2shq+LGO7uIt/Etm6+CDl5829wnLc0nG4dk40= +SIZE (alephone/AlephOne-20200904.tar.bz2) = 5567722 Index: games/alephone/alephone/patches/patch-Source_Files_FFmpeg_Movie_cpp =================================================================== RCS file: games/alephone/alephone/patches/patch-Source_Files_FFmpeg_Movie_cpp diff -N games/alephone/alephone/patches/patch-Source_Files_FFmpeg_Movie_cpp --- games/alephone/alephone/patches/patch-Source_Files_FFmpeg_Movie_cpp 20 Feb 2019 00:31:04 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,58 +0,0 @@ -$OpenBSD: patch-Source_Files_FFmpeg_Movie_cpp,v 1.3 2019/02/20 00:31:04 sthen Exp $ - -Update for newer FFmpeg API. - -Index: Source_Files/FFmpeg/Movie.cpp ---- Source_Files/FFmpeg/Movie.cpp.orig -+++ Source_Files/FFmpeg/Movie.cpp -@@ -420,12 +420,12 @@ bool Movie::Setup() - video_stream->codec->width = view_rect.w; - video_stream->codec->height = view_rect.h; - video_stream->codec->time_base = (AVRational){1, TICKS_PER_SECOND}; -- video_stream->codec->pix_fmt = PIX_FMT_YUV420P; -- video_stream->codec->flags |= CODEC_FLAG_CLOSED_GOP; -+ video_stream->codec->pix_fmt = AV_PIX_FMT_YUV420P; -+ video_stream->codec->flags |= AV_CODEC_FLAG_CLOSED_GOP; - video_stream->codec->thread_count = get_cpu_count(); - - if (av->fmt_ctx->oformat->flags & AVFMT_GLOBALHEADER) -- video_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER; -+ video_stream->codec->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; - - av->video_stream_idx = video_stream->index; - -@@ -494,14 +494,14 @@ bool Movie::Setup() - audio_stream->codec->channels = 2; - - if (av->fmt_ctx->oformat->flags & AVFMT_GLOBALHEADER) -- audio_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER; -+ audio_stream->codec->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; - - av->audio_stream_idx = audio_stream->index; - - // tuning options - int aq = graphics_preferences->movie_export_audio_quality; - audio_stream->codec->global_quality = FF_QP2LAMBDA * (aq / 10); -- audio_stream->codec->flags |= CODEC_FLAG_QSCALE; -+ audio_stream->codec->flags |= AV_CODEC_FLAG_QSCALE; - - audio_stream->codec->sample_fmt = AV_SAMPLE_FMT_FLTP; - success = (0 <= avcodec_open2(audio_stream->codec, audio_codec, NULL)); -@@ -539,7 +539,7 @@ bool Movie::Setup() - // initialize conversion context - if (success) - { -- av->sws_ctx = sws_getContext(temp_surface->w, temp_surface->h, PIX_FMT_RGB32, -+ av->sws_ctx = sws_getContext(temp_surface->w, temp_surface->h, AV_PIX_FMT_RGB32, - video_stream->codec->width, - video_stream->codec->height, - video_stream->codec->pix_fmt, -@@ -670,7 +670,7 @@ void Movie::EncodeAudio(bool last) - if (read_samples < acodec->frame_size) - { - // shrink or pad audio frame -- if (acodec->codec->capabilities & CODEC_CAP_SMALL_LAST_FRAME) -+ if (acodec->codec->capabilities & AV_CODEC_CAP_SMALL_LAST_FRAME) - acodec->frame_size = write_samples; - else - write_samples = acodec->frame_size; Index: games/alephone/alephone/patches/patch-Source_Files_FFmpeg_SDL_ffmpeg_c =================================================================== RCS file: games/alephone/alephone/patches/patch-Source_Files_FFmpeg_SDL_ffmpeg_c diff -N games/alephone/alephone/patches/patch-Source_Files_FFmpeg_SDL_ffmpeg_c --- games/alephone/alephone/patches/patch-Source_Files_FFmpeg_SDL_ffmpeg_c 20 Feb 2019 00:31:04 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,70 +0,0 @@ -$OpenBSD: patch-Source_Files_FFmpeg_SDL_ffmpeg_c,v 1.4 2019/02/20 00:31:04 sthen Exp $ - -Update for newer FFmpeg API. - -Index: Source_Files/FFmpeg/SDL_ffmpeg.c ---- Source_Files/FFmpeg/SDL_ffmpeg.c.orig -+++ Source_Files/FFmpeg/SDL_ffmpeg.c -@@ -86,7 +86,7 @@ extern int convert_audio(int in_samples, int in_channe - * Provide a fast way to get the correct context. - * \returns The context matching the input values. - */ --struct SwsContext* getContext( SDL_ffmpegConversionContext **context, int inWidth, int inHeight, enum PixelFormat inFormat, int outWidth, int outHeight, enum PixelFormat outFormat ) -+struct SwsContext* getContext( SDL_ffmpegConversionContext **context, int inWidth, int inHeight, enum AVPixelFormat inFormat, int outWidth, int outHeight, enum AVPixelFormat outFormat ) - { - SDL_ffmpegConversionContext *ctx = *context; - -@@ -621,7 +621,7 @@ int SDL_ffmpegAddVideoFrame( SDL_ffmpegFile *file, SDL - { - case 24: - sws_scale( getContext( &file->videoStream->conversionContext, -- frame->w, frame->h, PIX_FMT_RGB24, -+ frame->w, frame->h, AV_PIX_FMT_RGB24, - file->videoStream->_ffmpeg->codec->width, - file->videoStream->_ffmpeg->codec->height, - file->videoStream->_ffmpeg->codec->pix_fmt ), -@@ -634,7 +634,7 @@ int SDL_ffmpegAddVideoFrame( SDL_ffmpegFile *file, SDL - break; - case 32: - sws_scale( getContext( &file->videoStream->conversionContext, -- frame->w, frame->h, PIX_FMT_BGR32, -+ frame->w, frame->h, AV_PIX_FMT_BGR32, - file->videoStream->_ffmpeg->codec->width, - file->videoStream->_ffmpeg->codec->height, - file->videoStream->_ffmpeg->codec->pix_fmt ), -@@ -1605,7 +1605,7 @@ SDL_ffmpegStream* SDL_ffmpegAddVideoStream( SDL_ffmpeg - stream->codec->gop_size = 12; - - /* set pixel format */ -- stream->codec->pix_fmt = PIX_FMT_YUV420P; -+ stream->codec->pix_fmt = AV_PIX_FMT_YUV420P; - - /* set mpeg2 codec parameters */ - if ( stream->codec->codec_id == AV_CODEC_ID_MPEG2VIDEO ) -@@ -2223,7 +2223,7 @@ int SDL_ffmpegDecodeVideoFrame( SDL_ffmpegFile* file, - file->videoStream->_ffmpeg->codec->height, - file->videoStream->_ffmpeg->codec->pix_fmt, - frame->overlay->w, frame->overlay->h, -- PIX_FMT_YUYV422 ), -+ AV_PIX_FMT_YUYV422 ), - ( const uint8_t* const* )file->videoStream->decodeFrame->data, - file->videoStream->decodeFrame->linesize, - 0, -@@ -2245,7 +2245,7 @@ int SDL_ffmpegDecodeVideoFrame( SDL_ffmpegFile* file, - file->videoStream->_ffmpeg->codec->height, - file->videoStream->_ffmpeg->codec->pix_fmt, - frame->surface->w, frame->surface->h, -- PIX_FMT_RGB32 ), -+ AV_PIX_FMT_RGB32 ), - ( const uint8_t* const* )file->videoStream->decodeFrame->data, - file->videoStream->decodeFrame->linesize, - 0, -@@ -2259,7 +2259,7 @@ int SDL_ffmpegDecodeVideoFrame( SDL_ffmpegFile* file, - file->videoStream->_ffmpeg->codec->height, - file->videoStream->_ffmpeg->codec->pix_fmt, - frame->surface->w, frame->surface->h, -- PIX_FMT_RGB24 ), -+ AV_PIX_FMT_RGB24 ), - ( const uint8_t* const* )file->videoStream->decodeFrame->data, - file->videoStream->decodeFrame->linesize, - 0, Index: games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_dialogs_cpp =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_dialogs_cpp,v retrieving revision 1.1 diff -u -p -u -p -r1.1 patch-Source_Files_Misc_sdl_dialogs_cpp --- games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_dialogs_cpp 20 Apr 2018 11:48:37 -0000 1.1 +++ games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_dialogs_cpp 11 Sep 2020 13:23:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-Source_Files_Misc_sdl_di Index: Source_Files/Misc/sdl_dialogs.cpp --- Source_Files/Misc/sdl_dialogs.cpp.orig +++ Source_Files/Misc/sdl_dialogs.cpp -@@ -2018,7 +2018,7 @@ void tab_placer::visible(bool visible) +@@ -1697,7 +1697,7 @@ void tab_placer::visible(bool visible) dialog::dialog() : active_widget(NULL), mouse_widget(0), active_widget_num(UNONE), done(false), cursor_was_visible(false), parent_dialog(NULL), Index: games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_cpp =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_cpp,v retrieving revision 1.1 diff -u -p -u -p -r1.1 patch-Source_Files_Misc_sdl_widgets_cpp --- games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_cpp 20 Apr 2018 11:48:37 -0000 1.1 +++ games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_cpp 11 Sep 2020 13:23:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-Source_Files_Misc_sdl_wi Index: Source_Files/Misc/sdl_widgets.cpp --- Source_Files/Misc/sdl_widgets.cpp.orig +++ Source_Files/Misc/sdl_widgets.cpp -@@ -719,7 +719,7 @@ void w_select_button::place(const SDL_Rect &r, placeme +@@ -773,7 +773,7 @@ void w_select_button::place(const SDL_Rect &r, placeme static const char* sNoValidOptionsString = "(no valid options)"; // XXX should be moved outside compiled code e.g. to MML @@ -12,7 +12,7 @@ Index: Source_Files/Misc/sdl_widgets.cpp { num_labels = 0; if(labels) { -@@ -1113,7 +1113,7 @@ void w_color_picker::draw(SDL_Surface *s) const +@@ -1177,7 +1177,7 @@ void w_color_picker::draw(SDL_Surface *s) const */ w_text_entry::w_text_entry(size_t max_c, const char *initial_text) @@ -21,7 +21,7 @@ Index: Source_Files/Misc/sdl_widgets.cpp { // Initialize buffer buf = new char[max_chars + 1]; -@@ -2115,7 +2115,7 @@ void w_select_popup::gotSelected () +@@ -2371,7 +2371,7 @@ void w_select_popup::gotSelected () static const char* const sFileChooserInvalidFileString = "(no valid selection)"; w_file_chooser::w_file_chooser(const char* inDialogPrompt, Typecode inTypecode) Index: games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_h =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_h,v retrieving revision 1.1 diff -u -p -u -p -r1.1 patch-Source_Files_Misc_sdl_widgets_h --- games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_h 20 Apr 2018 11:48:37 -0000 1.1 +++ games/alephone/alephone/patches/patch-Source_Files_Misc_sdl_widgets_h 11 Sep 2020 13:23:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-Source_Files_Misc_sdl_wi Index: Source_Files/Misc/sdl_widgets.h --- Source_Files/Misc/sdl_widgets.h.orig +++ Source_Files/Misc/sdl_widgets.h -@@ -277,12 +277,12 @@ class w_button_base : public widget { (protected) +@@ -288,12 +288,12 @@ class w_button_base : public widget { (protected) class w_button : public w_button_base { public: @@ -18,7 +18,7 @@ Index: Source_Files/Misc/sdl_widgets.h }; class w_hyperlink : public w_button_base { -@@ -802,7 +802,7 @@ class w_string_list : public w_list<string> { (private +@@ -854,7 +854,7 @@ class w_string_list : public w_list<string> { (private class w_select_popup : public w_select_button { public: @@ -27,7 +27,7 @@ Index: Source_Files/Misc/sdl_widgets.h void set_labels (const vector<string>& inLabels);/* {labels = inLabels;}*/ void set_selection (int value); -@@ -1079,7 +1079,7 @@ class ToggleWidget : public SDLWidgetWidget, public Bi +@@ -1131,7 +1131,7 @@ class ToggleWidget : public SDLWidgetWidget, public Bi ToggleWidget (w_toggle* toggle) : SDLWidgetWidget (toggle) , m_toggle (toggle) @@ -36,7 +36,7 @@ Index: Source_Files/Misc/sdl_widgets.h { m_toggle->set_selection_changed_callback (boost::bind(&ToggleWidget::massage_callback, this, _1)); } void set_callback (ControlHitCallback callback) { m_callback = callback; } -@@ -1117,7 +1117,7 @@ class SelectorWidget : public SDLWidgetWidget, public +@@ -1169,7 +1169,7 @@ class SelectorWidget : public SDLWidgetWidget, public protected: SelectorWidget (widget* in_widget) : SDLWidgetWidget (in_widget) @@ -45,7 +45,7 @@ Index: Source_Files/Misc/sdl_widgets.h {} ControlHitCallback m_callback; -@@ -1201,7 +1201,7 @@ class ButtonWidget : public SDLWidgetWidget (public) +@@ -1253,7 +1253,7 @@ class ButtonWidget : public SDLWidgetWidget (public) ButtonWidget (w_button_base* button) : SDLWidgetWidget (button) , m_button (button) Index: games/alephone/alephone/patches/patch-Source_Files_Network_network_dialogs_cpp =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/patches/patch-Source_Files_Network_network_dialogs_cpp,v retrieving revision 1.1 diff -u -p -u -p -r1.1 patch-Source_Files_Network_network_dialogs_cpp --- games/alephone/alephone/patches/patch-Source_Files_Network_network_dialogs_cpp 20 Apr 2018 11:48:37 -0000 1.1 +++ games/alephone/alephone/patches/patch-Source_Files_Network_network_dialogs_cpp 11 Sep 2020 13:23:17 -0000 @@ -3,7 +3,7 @@ $OpenBSD: patch-Source_Files_Network_net Index: Source_Files/Network/network_dialogs.cpp --- Source_Files/Network/network_dialogs.cpp.orig +++ Source_Files/Network/network_dialogs.cpp -@@ -2559,7 +2559,7 @@ class SdlGatherDialog : public GatherDialog (public) +@@ -2420,7 +2420,7 @@ class SdlGatherDialog : public GatherDialog (public) // m_dialog.add(new w_static_text("Players on Network")); Index: games/alephone/alephone/pkg/PLIST =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/alephone/pkg/PLIST,v retrieving revision 1.5 diff -u -p -u -p -r1.5 PLIST --- games/alephone/alephone/pkg/PLIST 17 Apr 2014 06:58:47 -0000 1.5 +++ games/alephone/alephone/pkg/PLIST 11 Sep 2020 16:09:54 -0000 @@ -50,3 +50,109 @@ share/AlephOne/Plugins/Default_Theme/thu share/AlephOne/Plugins/Default_Theme/tiny_button_c.bmp share/AlephOne/Plugins/Default_Theme/tiny_button_l.bmp share/AlephOne/Plugins/Default_Theme/tiny_button_r.bmp +share/icons/ +share/icons/hicolor/ +share/icons/hicolor/128x128/ +share/icons/hicolor/128x128/mimetypes/ +share/icons/hicolor/128x128/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/128x128/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/128x128/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/16x16/ +share/icons/hicolor/16x16/mimetypes/ +share/icons/hicolor/16x16/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/16x16/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/16x16/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/22x22/ +share/icons/hicolor/22x22/mimetypes/ +share/icons/hicolor/22x22/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/22x22/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/22x22/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/24x24/ +share/icons/hicolor/24x24/mimetypes/ +share/icons/hicolor/24x24/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/24x24/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/24x24/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/256x256/ +share/icons/hicolor/256x256/mimetypes/ +share/icons/hicolor/256x256/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/256x256/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/256x256/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/32x32/ +share/icons/hicolor/32x32/mimetypes/ +share/icons/hicolor/32x32/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/32x32/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/32x32/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/48x48/ +share/icons/hicolor/48x48/mimetypes/ +share/icons/hicolor/48x48/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/48x48/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/48x48/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/64x64/ +share/icons/hicolor/64x64/mimetypes/ +share/icons/hicolor/64x64/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/64x64/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/64x64/mimetypes/text-x-alephone-mml.png +share/icons/hicolor/96x96/ +share/icons/hicolor/96x96/mimetypes/ +share/icons/hicolor/96x96/mimetypes/application-x-alephone-fila.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-imga.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-musa.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-phya.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-scea.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-sgaa.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-shpa.png +share/icons/hicolor/96x96/mimetypes/application-x-alephone-snda.png +share/icons/hicolor/96x96/mimetypes/text-x-alephone-mml.png +share/mime/ +share/mime/packages/ +share/mime/packages/alephone.xml +@tag update-mime-database +@tag gtk-update-icon-cache %D/share/icons/hicolor Index: games/alephone/scenarios/marathon/Makefile =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathon/Makefile,v retrieving revision 1.13 diff -u -p -u -p -r1.13 Makefile --- games/alephone/scenarios/marathon/Makefile 14 Jul 2019 00:39:36 -0000 1.13 +++ games/alephone/scenarios/marathon/Makefile 11 Sep 2020 14:13:33 -0000 @@ -2,7 +2,7 @@ PKG_ARCH = * COMMENT = marathon one data files -V = 20150620 +V = 20200904 DISTNAME = marathon-0.0.${V} HOMEPAGE = https://alephone.lhowon.org/games/marathon.html Index: games/alephone/scenarios/marathon/distinfo =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathon/distinfo,v retrieving revision 1.7 diff -u -p -u -p -r1.7 distinfo --- games/alephone/scenarios/marathon/distinfo 2 Feb 2016 10:17:44 -0000 1.7 +++ games/alephone/scenarios/marathon/distinfo 11 Sep 2020 14:19:55 -0000 @@ -1,4 +1,4 @@ -SHA256 (alephone/Marathon-20150620-Data.zip) = d0y0DJveM6XSMUboL1k6wAHt0O5NYuWwRFlTqV/UTzE= +SHA256 (alephone/Marathon-20200904-Data.zip) = x5M8RkxH+Rn8hUJIIq/AFC5Ibn0zF95BqZIDEwM6wVg= SHA256 (alephone/Marathon_Manual.pdf) = qrhbHp+8Dq/fb4z1M+rR7lBqPlgvziYKwlxqLwKnOdM= -SIZE (alephone/Marathon-20150620-Data.zip) = 43579887 +SIZE (alephone/Marathon-20200904-Data.zip) = 43892667 SIZE (alephone/Marathon_Manual.pdf) = 237541 Index: games/alephone/scenarios/marathon/pkg/PLIST =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathon/pkg/PLIST,v retrieving revision 1.6 diff -u -p -u -p -r1.6 PLIST --- games/alephone/scenarios/marathon/pkg/PLIST 2 Feb 2016 10:17:44 -0000 1.6 +++ games/alephone/scenarios/marathon/pkg/PLIST 11 Sep 2020 14:28:19 -0000 @@ -3,7 +3,6 @@ bin/marathon share/alephone/ share/alephone/Marathon/ share/alephone/Marathon/Map.scen -share/alephone/Marathon/Marathon Preferences share/alephone/Marathon/Marathon.appl share/alephone/Marathon/Marathon_Manual.pdf share/alephone/Marathon/Music/ @@ -26,7 +25,9 @@ share/alephone/Marathon/Music/15.ogg share/alephone/Marathon/Physics.phys share/alephone/Marathon/Plugins/ share/alephone/Marathon/Plugins/Default HUD/ +share/alephone/Marathon/Plugins/Default HUD/COPYING share/alephone/Marathon/Plugins/Default HUD/Default_HUD_M1.lua +share/alephone/Marathon/Plugins/Default HUD/FOV.mml share/alephone/Marathon/Plugins/Default HUD/Plugin.xml share/alephone/Marathon/Plugins/Enhanced HUD/ share/alephone/Marathon/Plugins/Enhanced HUD/720p/ @@ -81,22 +82,28 @@ share/alephone/Marathon/Plugins/Enhanced share/alephone/Marathon/Plugins/Enhanced HUD/720p/w_smg.png share/alephone/Marathon/Plugins/Enhanced HUD/720p/w_tozt.png share/alephone/Marathon/Plugins/Enhanced HUD/720p/weapons.png +share/alephone/Marathon/Plugins/Enhanced HUD/COPYING +share/alephone/Marathon/Plugins/Enhanced HUD/FOV.mml share/alephone/Marathon/Plugins/Enhanced HUD/Plugin.lua share/alephone/Marathon/Plugins/Enhanced HUD/Plugin.xml +share/alephone/Marathon/Plugins/Enhanced HUD/Readme.txt share/alephone/Marathon/Plugins/Enhanced HUD/squarishsans/ share/alephone/Marathon/Plugins/Enhanced HUD/squarishsans/Squarish Sans CT Regular SC.ttf share/alephone/Marathon/Plugins/Enhanced HUD/squarishsans/Squarish Sans CT Regular.ttf share/alephone/Marathon/Plugins/Enhanced HUD/squarishsans/SquarishSansCT.README share/alephone/Marathon/Plugins/Marathon Stats/ +share/alephone/Marathon/Plugins/Marathon Stats/COPYING share/alephone/Marathon/Plugins/Marathon Stats/Plugin.xml share/alephone/Marathon/Plugins/Marathon Stats/stats.lua share/alephone/Marathon/Plugins/Marathon Theme/ share/alephone/Marathon/Plugins/Marathon Theme/Plugin.xml +share/alephone/Marathon/Plugins/Marathon Theme/Readme.txt share/alephone/Marathon/Plugins/Marathon Theme/resources/ share/alephone/Marathon/Plugins/Marathon Theme/resources/Marapfhont.README share/alephone/Marathon/Plugins/Marathon Theme/resources/Marapfhont.ttf share/alephone/Marathon/Plugins/Marathon Theme/resources/URWGothicL-Demi.ttf share/alephone/Marathon/Plugins/Marathon Theme/resources/URWGothicL-DemiObli.ttf +share/alephone/Marathon/Plugins/Marathon Theme/resources/URWGothicL.README share/alephone/Marathon/Plugins/Marathon Theme/resources/frame_b.bmp share/alephone/Marathon/Plugins/Marathon Theme/resources/frame_bl.bmp share/alephone/Marathon/Plugins/Marathon Theme/resources/frame_br.bmp @@ -272,7 +279,14 @@ share/alephone/Marathon/Plugins/TTEP v7/ share/alephone/Marathon/Plugins/TTEP v7/Original - TXT.rtf share/alephone/Marathon/Plugins/TTEP v7/Plugin.xml share/alephone/Marathon/Plugins/TTEP v7/Textures.mml +share/alephone/Marathon/Plugins/Updated Starscape/ +share/alephone/Marathon/Plugins/Updated Starscape/Plugin.xml +share/alephone/Marathon/Plugins/Updated Starscape/Readme.txt +share/alephone/Marathon/Plugins/Updated Starscape/Textures.mml +share/alephone/Marathon/Plugins/Updated Starscape/star.dds +share/alephone/Marathon/Readme.md share/alephone/Marathon/Scripts/ +share/alephone/Marathon/Scripts/Default Preferences.xml share/alephone/Marathon/Scripts/Marathon.mml share/alephone/Marathon/Shapes.shps share/alephone/Marathon/Sounds.sndz Index: games/alephone/scenarios/marathon2/Makefile =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathon2/Makefile,v retrieving revision 1.12 diff -u -p -u -p -r1.12 Makefile --- games/alephone/scenarios/marathon2/Makefile 14 Jul 2019 00:39:36 -0000 1.12 +++ games/alephone/scenarios/marathon2/Makefile 11 Sep 2020 14:13:41 -0000 @@ -2,7 +2,7 @@ PKG_ARCH= * COMMENT= marathon two data files -V = 20150620 +V = 20200904 DISTNAME= marathon2-0.0.${V} PKGNAME= marathon2-0.0.${V} HOMEPAGE= https://alephone.lhowon.org/games/marathon2.html Index: games/alephone/scenarios/marathon2/distinfo =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathon2/distinfo,v retrieving revision 1.6 diff -u -p -u -p -r1.6 distinfo --- games/alephone/scenarios/marathon2/distinfo 2 Feb 2016 10:17:44 -0000 1.6 +++ games/alephone/scenarios/marathon2/distinfo 11 Sep 2020 14:25:48 -0000 @@ -1,4 +1,4 @@ -SHA256 (alephone/Marathon2-20150620-Data.zip) = G3OepHFYklQ8FRlDlkA4p2NKwg5HWlJn2zmiP2YD774= +SHA256 (alephone/Marathon2-20200904-Data.zip) = +1WlTlZs6BZkl0xlhiE43McXL8BSgo7uqWl9hW5fQe0= SHA256 (alephone/Marathon_2_Manual.pdf) = eoPhTHCoeDtVKX+bGbs75Zy6DFVSmMMYoSIIOSPweEY= -SIZE (alephone/Marathon2-20150620-Data.zip) = 83347061 +SIZE (alephone/Marathon2-20200904-Data.zip) = 83387380 SIZE (alephone/Marathon_2_Manual.pdf) = 281123 Index: games/alephone/scenarios/marathon2/pkg/PLIST =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathon2/pkg/PLIST,v retrieving revision 1.3 diff -u -p -u -p -r1.3 PLIST --- games/alephone/scenarios/marathon2/pkg/PLIST 2 Feb 2016 10:17:44 -0000 1.3 +++ games/alephone/scenarios/marathon2/pkg/PLIST 11 Sep 2020 14:32:23 -0000 @@ -9,14 +9,97 @@ share/alephone/ share/alephone/Marathon2/ share/alephone/Marathon2/Images.imgA share/alephone/Marathon2/Map.sceA -share/alephone/Marathon2/Marathon 2 Preferences share/alephone/Marathon2/Marathon_2_Manual.pdf share/alephone/Marathon2/Music.ogg share/alephone/Marathon2/Physics Models/ share/alephone/Marathon2/Physics Models/Standard.phyA share/alephone/Marathon2/Plugins/ +share/alephone/Marathon2/Plugins/Enhanced HUD/ +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/alien.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/alienwep.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/arr.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/arramo.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/arramoused.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/background.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/chip.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/enemy.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/fill.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/fillshell.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/flechette_off.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/flechette_on.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/friendly.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/fusion.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/grenadeamo.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/grenadeamoused.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/health_noradar.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/health_radar.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/hill.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/left.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/left_oxygen.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/left_shield1x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/left_shield2x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/left_shield3x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/mid.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/mid_oxygen.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/mid_shield1x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/mid_shield2x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/mid_shield3x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/objective-indicator-full.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/pistol.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/pistolamo.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/pistolamoused.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/pistolx2.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/pistolx2_idle.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_alien.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_flame.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_machinegun.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_pistol.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_plasma.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_rocket.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_shotgun.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/ret_smg.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/right.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/right_oxygen.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/right_shield1x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/right_shield2x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/right_shield3x.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel-icon.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_blue.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_green.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_orange.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_red.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_slate.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_violet.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_white.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/score-panel_yellow.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/shotgun.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/shotgunamo.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/shotgunamoused.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/shotgunx2.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/shotgunx2_idle.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/skull.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/spnkr.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/spnkramo.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/spnkramoused.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/target-panel-foe.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/target-panel-friend.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/tozt.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/w_smg.png +share/alephone/Marathon2/Plugins/Enhanced HUD/720p/weapons.png +share/alephone/Marathon2/Plugins/Enhanced HUD/COPYING +share/alephone/Marathon2/Plugins/Enhanced HUD/FOV.mml +share/alephone/Marathon2/Plugins/Enhanced HUD/Plugin.xml +share/alephone/Marathon2/Plugins/Enhanced HUD/Readme.txt +share/alephone/Marathon2/Plugins/Enhanced HUD/XBLA.lua +share/alephone/Marathon2/Plugins/Enhanced HUD/squarishsans/ +share/alephone/Marathon2/Plugins/Enhanced HUD/squarishsans/Squarish Sans CT Regular SC.ttf +share/alephone/Marathon2/Plugins/Enhanced HUD/squarishsans/Squarish Sans CT Regular.ttf +share/alephone/Marathon2/Plugins/Enhanced HUD/squarishsans/SquarishSansCT.README share/alephone/Marathon2/Plugins/HD Monsters/ share/alephone/Marathon2/Plugins/HD Monsters/Plugin.xml +share/alephone/Marathon2/Plugins/HD Monsters/Readme.txt share/alephone/Marathon2/Plugins/HD Monsters/ShapesHD/ share/alephone/Marathon2/Plugins/HD Monsters/ShapesHD/10/ share/alephone/Marathon2/Plugins/HD Monsters/ShapesHD/10/0/ @@ -3153,6 +3236,7 @@ share/alephone/Marathon2/Plugins/HD Text share/alephone/Marathon2/Plugins/HD Textures/HD Landscapes.mml share/alephone/Marathon2/Plugins/HD Textures/HD Walls.mml share/alephone/Marathon2/Plugins/HD Textures/Plugin.xml +share/alephone/Marathon2/Plugins/HD Textures/Readme.txt share/alephone/Marathon2/Plugins/HD Textures/ShapesHD/ share/alephone/Marathon2/Plugins/HD Textures/ShapesHD/17/ share/alephone/Marathon2/Plugins/HD Textures/ShapesHD/17/0/ @@ -3296,6 +3380,7 @@ share/alephone/Marathon2/Plugins/HD Text share/alephone/Marathon2/Plugins/HD Textures/ShapesHD/30/0/0.png share/alephone/Marathon2/Plugins/HD Weapons/ share/alephone/Marathon2/Plugins/HD Weapons/Plugin.xml +share/alephone/Marathon2/Plugins/HD Weapons/Readme.txt share/alephone/Marathon2/Plugins/HD Weapons/ShapesHD/ share/alephone/Marathon2/Plugins/HD Weapons/ShapesHD/1/ share/alephone/Marathon2/Plugins/HD Weapons/ShapesHD/1/0/ @@ -3449,10 +3534,12 @@ share/alephone/Marathon2/Plugins/HD Weap share/alephone/Marathon2/Plugins/HD Weapons/XBLA Weapons in Hand.ShPa share/alephone/Marathon2/Plugins/HD Weapons/XBLA Weapons in Hand.mml share/alephone/Marathon2/Plugins/Marathon 2 Stats/ +share/alephone/Marathon2/Plugins/Marathon 2 Stats/COPYING share/alephone/Marathon2/Plugins/Marathon 2 Stats/Plugin.xml share/alephone/Marathon2/Plugins/Marathon 2 Stats/stats.lua share/alephone/Marathon2/Plugins/Marathon 2 Theme/ share/alephone/Marathon2/Plugins/Marathon 2 Theme/Plugin.xml +share/alephone/Marathon2/Plugins/Marathon 2 Theme/Readme.txt share/alephone/Marathon2/Plugins/Marathon 2 Theme/resources/ share/alephone/Marathon2/Plugins/Marathon 2 Theme/resources/DejaVuLGCSansCondensed-Bold.ttf share/alephone/Marathon2/Plugins/Marathon 2 Theme/resources/DejaVuLGCSansCondensed-BoldBold.ttf @@ -3495,75 +3582,9 @@ share/alephone/Marathon2/Plugins/Maratho share/alephone/Marathon2/Plugins/Marathon 2 Theme/resources/tiny_button_c.bmp share/alephone/Marathon2/Plugins/Marathon 2 Theme/resources/tiny_button_l.bmp share/alephone/Marathon2/Plugins/Marathon 2 Theme/resources/tiny_button_r.bmp -share/alephone/Marathon2/Plugins/XBLA_HUD/ -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/alien.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/alienwep.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/arr.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/arramo.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/arramoused.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/background.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/chip.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/enemy.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/fill.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/fillshell.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/flechette_off.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/flechette_on.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/friendly.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/fusion.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/grenadeamo.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/grenadeamoused.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/health_noradar.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/health_radar.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/hill.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/left.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/mid.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/objective-indicator-full.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/pistol.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/pistolamo.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/pistolamoused.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/pistolx2.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/pistolx2_idle.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_alien.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_flame.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_machinegun.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_pistol.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_plasma.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_rocket.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_shotgun.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/ret_smg.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/right.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel-icon.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_blue.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_green.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_orange.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_red.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_slate.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_violet.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_white.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/score-panel_yellow.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/shotgun.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/shotgunamo.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/shotgunamoused.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/shotgunx2.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/shotgunx2_idle.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/skull.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/spnkr.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/spnkramo.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/spnkramoused.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/target-panel-foe.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/target-panel-friend.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/tozt.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/w_smg.png -share/alephone/Marathon2/Plugins/XBLA_HUD/720p/weapons.png -share/alephone/Marathon2/Plugins/XBLA_HUD/Plugin.xml -share/alephone/Marathon2/Plugins/XBLA_HUD/XBLA.lua -share/alephone/Marathon2/Plugins/XBLA_HUD/squarishsans/ -share/alephone/Marathon2/Plugins/XBLA_HUD/squarishsans/Squarish Sans CT Regular SC.ttf -share/alephone/Marathon2/Plugins/XBLA_HUD/squarishsans/Squarish Sans CT Regular.ttf -share/alephone/Marathon2/Plugins/XBLA_HUD/squarishsans/SquarishSansCT.README +share/alephone/Marathon2/Readme.md share/alephone/Marathon2/Scripts/ +share/alephone/Marathon2/Scripts/Default Preferences.xml share/alephone/Marathon2/Scripts/Filenames.mml share/alephone/Marathon2/Scripts/Marathon 2.mml share/alephone/Marathon2/Scripts/Transparent_Liquids.mml Index: games/alephone/scenarios/marathoninfinity/Makefile =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathoninfinity/Makefile,v retrieving revision 1.12 diff -u -p -u -p -r1.12 Makefile --- games/alephone/scenarios/marathoninfinity/Makefile 14 Jul 2019 00:39:36 -0000 1.12 +++ games/alephone/scenarios/marathoninfinity/Makefile 11 Sep 2020 14:13:57 -0000 @@ -2,7 +2,7 @@ PKG_ARCH = * COMMENT = marathon infinity data files -V = 20150620 +V = 20200904 DISTNAME = marathoninfinity-0.0.${V} PKGNAME = marathoninfinity-0.0.${V} HOMEPAGE = https://alephone.lhowon.org/games/infinity.html Index: games/alephone/scenarios/marathoninfinity/distinfo =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathoninfinity/distinfo,v retrieving revision 1.6 diff -u -p -u -p -r1.6 distinfo --- games/alephone/scenarios/marathoninfinity/distinfo 2 Feb 2016 10:17:44 -0000 1.6 +++ games/alephone/scenarios/marathoninfinity/distinfo 11 Sep 2020 14:38:26 -0000 @@ -1,4 +1,4 @@ -SHA256 (alephone/MarathonInfinity-20150620-Data.zip) = xOABpDDQIdENfS+Ov+qH77c8VQWvlRAuYOladS9U7mk= +SHA256 (alephone/MarathonInfinity-20200904-Data.zip) = mDLEliXEhocqD0vkLKegVQ28PW7WfXtbmnOqJXF0X9g= SHA256 (alephone/Trilogy_Manual.pdf) = 0k3I6VXXw3BeIdBQ0Y7DQuLq6OOMb6SBrYvXa16rWMo= -SIZE (alephone/MarathonInfinity-20150620-Data.zip) = 96666920 +SIZE (alephone/MarathonInfinity-20200904-Data.zip) = 96703853 SIZE (alephone/Trilogy_Manual.pdf) = 382658 Index: games/alephone/scenarios/marathoninfinity/pkg/PLIST =================================================================== RCS file: /home/cvs/openbsd/ports/games/alephone/scenarios/marathoninfinity/pkg/PLIST,v retrieving revision 1.3 diff -u -p -u -p -r1.3 PLIST --- games/alephone/scenarios/marathoninfinity/pkg/PLIST 2 Feb 2016 10:17:44 -0000 1.3 +++ games/alephone/scenarios/marathoninfinity/pkg/PLIST 11 Sep 2020 14:39:28 -0000 @@ -9,7 +9,6 @@ share/alephone/ share/alephone/Infinity/ share/alephone/Infinity/Images.imgA share/alephone/Infinity/Map.sceA -share/alephone/Infinity/Marathon Infinity Preferences share/alephone/Infinity/Music.ogg share/alephone/Infinity/Physics Models/ share/alephone/Infinity/Physics Models/Standard.phyA @@ -22,291 +21,375 @@ share/alephone/Infinity/Plugins/2048 Lan share/alephone/Infinity/Plugins/2048 Landscape Plugin/moon.png share/alephone/Infinity/Plugins/2048 Landscape Plugin/night.png share/alephone/Infinity/Plugins/2048 Landscape Plugin/rymd.png -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/ -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/ -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/000.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/000gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/001.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/001gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/002.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/002gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/003.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/003gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/004.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/004gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/005.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/006.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/007.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/008.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/009.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/009m.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/010.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/011.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/012.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/013.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/013m.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/014.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/015.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/016.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/017.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/017gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/018.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/019.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/020.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/020gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/021.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/022.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/022gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/023.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/024.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/025.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/026.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/027.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/028.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/029.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/030.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/031.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/032.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/032gm.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/033.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/034.dds -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/Plugin.mml -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/High Res Jjarro Textures Plugin - DDS/Plugin.xml -share/alephone/Infinity/Plugins/Gorans Jjarro Set 1-1.5/Readme.txt -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/ -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/ -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/000.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/000b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/001.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/001b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/002.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/002b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/002gm.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/003.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/003b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/004.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/004b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/005.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/005b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/006.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/006.png -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/006b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/007.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/007b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/008.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/008b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/009.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/009b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/009gm.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/010.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/010b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/010gm.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/011.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/011b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/012.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/012gm.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/013.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/013b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/014.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/014b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/015.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/015b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/016.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/016b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/017.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/017b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/018.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/018b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/019.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/019b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/020.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/020b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/021.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/021b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/021gm.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/022.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/022b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/023.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/023b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/024.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/024b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/025.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/025b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/025gm.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/026.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/026b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/027.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/027b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/028.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/028b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/029.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/029b.dds -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/Plugin.mml -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/High Resolution Lava Set Plugin/Plugin.xml -share/alephone/Infinity/Plugins/Gorans Lava Set 2.0/Read Me.pdf -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/ -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/ -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/000.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/000gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/001.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/002.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/002gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/003.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/003gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/004.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/004gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/005.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/006.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/007.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/008.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/009.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/010.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/010gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/011.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/012.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/013.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/014.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/015.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/015gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/016.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/017.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/018.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/019.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/019gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/020.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/021.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/022.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/023.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/023gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/024.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/024gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/025.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/026.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/026gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/027.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/028.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/029.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/029gm.dds -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/Plugin.mml -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/High Res Pfhor Set Plugin/Plugin.xml -share/alephone/Infinity/Plugins/Gorans Pfhor Set 1.0/Readme.txt -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/ -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/ -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/000.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/000gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/001.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/002.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/002gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/003.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/004.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/004gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/005.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/006.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/007.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/008.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/009.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/009gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/010.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/011.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/012.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/013.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/014.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/015.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/016.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/017.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/018.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/019.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/020.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/020gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/021.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/022.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/022gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/023.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/024.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/025.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/026.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/027.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/028.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/029.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/029gm.dds -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/Plugin.mml -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/High Res Sewage Textures Plugin/Plugin.xml -share/alephone/Infinity/Plugins/Gorans Sewage Set 1-1.1/Readme.txt -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/ -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/ -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/000.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/000b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/000gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/001.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/001b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/002.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/002b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/002gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/003.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/003b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/004.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/004b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/004gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/005.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/005b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/006.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/006b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/007.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/007.png -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/007b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/008.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/008b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/008gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/009.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/009b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/009gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/010.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/010b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/010gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/011.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/012.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/012b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/013.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/013b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/014.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/014b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/015.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/015b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/015gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/016.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/016b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/016gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/017.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/018.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/018b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/019.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/020.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/020b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/021.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/021b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/022.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/022b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/023.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/023b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/024.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/024b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/025.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/025b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/025gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/026.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/026b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/027.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/027b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/027gm.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/028.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/028b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/029.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/029b.dds -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/Plugin.mml -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/High Resolution Water Set Plugin/Plugin.xml -share/alephone/Infinity/Plugins/Gorans Water Set 2.2/Read Me.pdf +share/alephone/Infinity/Plugins/Enhanced HUD/ +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ +share/alephone/Infinity/Plugins/Enhanced HUD/720p/alien.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/alienwep.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/arr.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/arramo.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/arramoused.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/background.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/chip.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/enemy.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/fill.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/fillshell.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/flechette_off.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/flechette_on.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/friendly.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/fusion.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/grenadeamo.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/grenadeamoused.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/health_noradar.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/health_radar.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/hill.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/left.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/left_oxygen.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/left_shield1x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/left_shield2x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/left_shield3x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/mid.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/mid_oxygen.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/mid_shield1x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/mid_shield2x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/mid_shield3x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/objective-indicator-full.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/pistol.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/pistolamo.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/pistolamoused.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/pistolx2.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/pistolx2_idle.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_alien.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_flame.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_machinegun.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_pistol.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_plasma.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_rocket.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_shotgun.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/ret_smg.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/right.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/right_oxygen.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/right_shield1x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/right_shield2x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/right_shield3x.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel-icon.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_blue.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_green.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_orange.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_red.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_slate.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_violet.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_white.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/score-panel_yellow.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/shotgun.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/shotgunamo.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/shotgunamoused.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/shotgunx2.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/shotgunx2_idle.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/skull.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/spnkr.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/spnkramo.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/spnkramoused.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/target-panel-foe.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/target-panel-friend.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/tozt.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/w_smg.png +share/alephone/Infinity/Plugins/Enhanced HUD/720p/weapons.png +share/alephone/Infinity/Plugins/Enhanced HUD/COPYING +share/alephone/Infinity/Plugins/Enhanced HUD/FOV.mml +share/alephone/Infinity/Plugins/Enhanced HUD/Plugin.xml +share/alephone/Infinity/Plugins/Enhanced HUD/Readme.txt +share/alephone/Infinity/Plugins/Enhanced HUD/XBLA.lua +share/alephone/Infinity/Plugins/Enhanced HUD/squarishsans/ +share/alephone/Infinity/Plugins/Enhanced HUD/squarishsans/Squarish Sans CT Regular SC.ttf +share/alephone/Infinity/Plugins/Enhanced HUD/squarishsans/Squarish Sans CT Regular.ttf +share/alephone/Infinity/Plugins/Enhanced HUD/squarishsans/SquarishSansCT.README +share/alephone/Infinity/Plugins/Gorans Jjarro Set/ +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/ +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/000.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/000gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/001.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/001gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/002.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/002gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/003.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/003gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/004.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/004gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/005.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/006.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/007.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/008.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/009.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/009m.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/010.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/011.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/012.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/013.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/013m.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/014.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/015.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/016.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/017.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/017gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/018.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/019.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/020.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/020gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/021.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/022.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/022gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/023.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/024.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/025.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/026.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/027.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/028.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/029.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/030.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/031.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/032.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/032gm.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/033.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/034.dds +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/Plugin.mml +share/alephone/Infinity/Plugins/Gorans Jjarro Set/High Res Jjarro Textures Plugin - DDS/Plugin.xml +share/alephone/Infinity/Plugins/Gorans Jjarro Set/Readme.txt +share/alephone/Infinity/Plugins/Gorans Lava Set/ +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/ +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/000.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/000b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/001.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/001b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/002.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/002b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/002gm.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/003.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/003b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/004.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/004b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/005.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/005b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/006.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/006.png +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/006b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/007.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/007b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/008.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/008b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/009.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/009b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/009gm.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/010.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/010b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/010gm.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/011.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/011b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/012.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/012gm.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/013.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/013b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/014.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/014b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/015.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/015b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/016.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/016b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/017.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/017b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/018.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/018b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/019.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/019b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/020.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/020b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/021.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/021b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/021gm.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/022.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/022b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/023.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/023b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/024.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/024b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/025.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/025b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/025gm.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/026.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/026b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/027.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/027b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/028.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/028b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/029.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/029b.dds +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/Plugin.mml +share/alephone/Infinity/Plugins/Gorans Lava Set/High Resolution Lava Set Plugin/Plugin.xml +share/alephone/Infinity/Plugins/Gorans Lava Set/Read Me.pdf +share/alephone/Infinity/Plugins/Gorans Pfhor Set/ +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/ +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/000.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/000gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/001.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/002.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/002gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/003.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/003gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/004.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/004gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/005.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/006.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/007.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/008.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/009.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/010.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/010gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/011.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/012.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/013.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/014.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/015.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/015gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/016.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/017.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/018.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/019.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/019gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/020.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/021.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/022.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/023.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/023gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/024.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/024gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/025.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/026.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/026gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/027.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/028.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/029.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/029gm.dds +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/Plugin.mml +share/alephone/Infinity/Plugins/Gorans Pfhor Set/High Res Pfhor Set Plugin/Plugin.xml +share/alephone/Infinity/Plugins/Gorans Pfhor Set/Readme.txt +share/alephone/Infinity/Plugins/Gorans Sewage Set/ +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/ +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/000.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/000gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/001.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/002.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/002gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/003.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/004.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/004gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/005.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/006.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/007.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/008.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/009.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/009gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/010.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/011.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/012.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/013.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/014.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/015.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/016.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/017.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/018.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/019.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/020.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/020gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/021.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/022.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/022gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/023.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/024.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/025.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/026.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/027.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/028.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/029.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/029gm.dds +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/Plugin.mml +share/alephone/Infinity/Plugins/Gorans Sewage Set/High Res Sewage Textures Plugin/Plugin.xml +share/alephone/Infinity/Plugins/Gorans Sewage Set/Readme.txt +share/alephone/Infinity/Plugins/Gorans Water Set/ +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/ +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/000.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/000b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/000gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/001.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/001b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/002.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/002b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/002gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/003.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/003b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/004.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/004b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/004gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/005.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/005b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/006.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/006b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/007.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/007.png +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/007b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/008.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/008b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/008gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/009.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/009b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/009gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/010.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/010b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/010gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/011.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/012.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/012b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/013.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/013b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/014.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/014b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/015.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/015b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/015gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/016.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/016b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/016gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/017.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/018.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/018b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/019.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/020.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/020b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/021.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/021b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/022.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/022b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/023.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/023b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/024.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/024b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/025.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/025b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/025gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/026.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/026b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/027.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/027b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/027gm.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/028.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/028b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/029.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/029b.dds +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/Plugin.mml +share/alephone/Infinity/Plugins/Gorans Water Set/High Resolution Water Set Plugin/Plugin.xml +share/alephone/Infinity/Plugins/Gorans Water Set/Read Me.pdf share/alephone/Infinity/Plugins/HD Weapons/ share/alephone/Infinity/Plugins/HD Weapons/Plugin.xml +share/alephone/Infinity/Plugins/HD Weapons/Readme.txt share/alephone/Infinity/Plugins/HD Weapons/ShapesHD/ share/alephone/Infinity/Plugins/HD Weapons/ShapesHD/1/ share/alephone/Infinity/Plugins/HD Weapons/ShapesHD/1/0/ @@ -467,10 +550,12 @@ share/alephone/Infinity/Plugins/HD Weapo share/alephone/Infinity/Plugins/HD Weapons/XBLA Weapons in Hand.ShPa share/alephone/Infinity/Plugins/HD Weapons/XBLA Weapons in Hand.mml share/alephone/Infinity/Plugins/Marathon Infinity Stats/ +share/alephone/Infinity/Plugins/Marathon Infinity Stats/COPYING share/alephone/Infinity/Plugins/Marathon Infinity Stats/Plugin.xml share/alephone/Infinity/Plugins/Marathon Infinity Stats/stats.lua share/alephone/Infinity/Plugins/Marathon Infinity Theme/ share/alephone/Infinity/Plugins/Marathon Infinity Theme/Plugin.xml +share/alephone/Infinity/Plugins/Marathon Infinity Theme/Readme.txt share/alephone/Infinity/Plugins/Marathon Infinity Theme/resources/ share/alephone/Infinity/Plugins/Marathon Infinity Theme/resources/DejaVuLGCSansCondensed-Bold.ttf share/alephone/Infinity/Plugins/Marathon Infinity Theme/resources/DejaVuLGCSansCondensed-BoldBold.ttf @@ -513,75 +598,9 @@ share/alephone/Infinity/Plugins/Marathon share/alephone/Infinity/Plugins/Marathon Infinity Theme/resources/tiny_button_c.bmp share/alephone/Infinity/Plugins/Marathon Infinity Theme/resources/tiny_button_l.bmp share/alephone/Infinity/Plugins/Marathon Infinity Theme/resources/tiny_button_r.bmp -share/alephone/Infinity/Plugins/XBLA_HUD/ -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ -share/alephone/Infinity/Plugins/XBLA_HUD/720p/alien.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/alienwep.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/arr.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/arramo.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/arramoused.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/background.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/chip.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/enemy.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/fill.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/fillshell.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/flechette_off.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/flechette_on.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/friendly.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/fusion.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/grenadeamo.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/grenadeamoused.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/health_noradar.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/health_radar.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/hill.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/left.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/mid.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/objective-indicator-full.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/pistol.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/pistolamo.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/pistolamoused.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/pistolx2.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/pistolx2_idle.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_alien.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_flame.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_machinegun.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_pistol.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_plasma.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_rocket.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_shotgun.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/ret_smg.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/right.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel-icon.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_blue.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_green.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_orange.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_red.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_slate.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_violet.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_white.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/score-panel_yellow.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/shotgun.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/shotgunamo.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/shotgunamoused.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/shotgunx2.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/shotgunx2_idle.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/skull.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/spnkr.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/spnkramo.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/spnkramoused.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/target-panel-foe.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/target-panel-friend.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/tozt.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/w_smg.png -share/alephone/Infinity/Plugins/XBLA_HUD/720p/weapons.png -share/alephone/Infinity/Plugins/XBLA_HUD/Plugin.xml -share/alephone/Infinity/Plugins/XBLA_HUD/XBLA.lua -share/alephone/Infinity/Plugins/XBLA_HUD/squarishsans/ -share/alephone/Infinity/Plugins/XBLA_HUD/squarishsans/Squarish Sans CT Regular SC.ttf -share/alephone/Infinity/Plugins/XBLA_HUD/squarishsans/Squarish Sans CT Regular.ttf -share/alephone/Infinity/Plugins/XBLA_HUD/squarishsans/SquarishSansCT.README +share/alephone/Infinity/Readme.md share/alephone/Infinity/Scripts/ +share/alephone/Infinity/Scripts/Default Preferences.xml share/alephone/Infinity/Scripts/Filenames.mml share/alephone/Infinity/Scripts/Marathon Infinity.mml share/alephone/Infinity/Scripts/Transparent_Liquids.mml -- In any world menu, Canada must be considered the vichyssoise of nations -- it's cold, half-French, and difficult to stir. -- Stuart Keate