diff --git a/README.markdown b/README.markdown index 170ccb214d..52906e03d0 100644 --- a/README.markdown +++ b/README.markdown @@ -1,7 +1,7 @@ Movian mediaplayer ================== -(c) 2006 - 2016 Lonelycoder AB +(c) 2006 - 2018 Lonelycoder AB [![Build status](https://doozer.io/badge/andoma/movian/buildstatus/master)](https://doozer.io/user/andoma/movian) @@ -11,17 +11,15 @@ For more information and latest versions, please visit: ## How to build for Linux -First you need to satisfy some dependencies: -For Ubuntu 12.04) +First you need to satisfy some dependencies (for Ubuntu 16.04.3 LTS) - sudo apt-get install libfreetype6-dev libfontconfig1-dev libxext-dev libgl1-mesa-dev libasound2-dev libasound2-dev libgtk2.0-dev libxss-dev libxxf86vm-dev libxv-dev libvdpau-dev yasm libpulse-dev libssl-dev curl libwebkitgtk-dev libsqlite3-dev + sudo apt-get install libfreetype6-dev libfontconfig1-dev libxext-dev libgl1-mesa-dev libasound2-dev libasound2-dev libgtk2.0-dev libxss-dev libxxf86vm-dev libxv-dev libvdpau-dev yasm libpulse-dev libssl-dev curl libwebkitgtk-dev libsqlite3-dev libavahi-client-dev Then you need to configure: ./configure -If your system lacks libwebkitgtk (Ubuntu 12.04 before 12.04.1) -you can configure with +If your system lacks libwebkitgtk or some other lib you can configure like this: ./configure --disable-webkit @@ -77,15 +75,15 @@ This will generate a DMG ## How to build for PS3 with PSL1GHT -$ ./Autobuild.sh -t ps3 +$ ./Autobuild.sh -t ps3 -v 5.0.500 ## How to build for Raspberry Pi -First you need to satisfy some dependencies (For Ubuntu 12.04LTS 64bit): +First you need to satisfy some dependencies (for Ubuntu 16.04.3 LTS 64bit): sudo apt-get install git-core build-essential autoconf bison flex libelf-dev libtool pkg-config texinfo libncurses5-dev libz-dev python-dev libssl-dev libgmp3-dev ccache zip squashfs-tools -$ ./Autobuild.sh -t rpi +$ ./Autobuild.sh -t rpi -v 5.0.500 To update Movian on rpi with compiled one, enable Binreplace in settings:dev and issue: diff --git a/src/main.c b/src/main.c index 9c4cabb88e..3c15ebdc2a 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006-2016 Lonelycoder AB + * Copyright (C) 2006-2018 Lonelycoder AB * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -149,7 +149,7 @@ init_global_info(void) prop_set(s, "name", PROP_SET_STRING, APPNAMEUSER); prop_set(s, "version", PROP_SET_STRING, appversion); prop_set(s, "fullversion", PROP_SET_STRING, appversion); - prop_set(s, "copyright", PROP_SET_STRING, "© 2006 - 2016 Lonelycoder AB"); + prop_set(s, "copyright", PROP_SET_STRING, "© 2006 - 2018 Lonelycoder AB"); } @@ -500,38 +500,39 @@ parse_opts(int argc, char **argv) while(argc > 0) { if(!strcmp(argv[0], "-h") || !strcmp(argv[0], "--help")) { printf(APPNAMEUSER" %s\n" - "Copyright (C) 2006-2016 Lonelycoder AB\n" + "Copyright (C) 2006-2018 Lonelycoder AB\n" "\n" "Usage: %s [options] []\n" "\n" " Options:\n" - " -h, --help - This help text.\n" - " -d - Enable debug output.\n" - " --no-ui - Start without UI.\n" - " --fullscreen - Start in fullscreen mode.\n" - " --libav-log - Print libav log messages.\n" - " --with-standby - Enable system standby.\n" - " --with-poweroff - Enable system power-off.\n" - " -s - Non-default settings path.\n" - " --ui - Use specified user interface.\n" - " -L - Send log messages to remote .\n" - " --syslog - Send log messages to syslog.\n" + " -h, --help - This help text.\n" + " -d - Enable debug output.\n" + " --no-ui - Start without UI.\n" + " --fullscreen - Start in fullscreen mode.\n" + " --libav-log - Print libav log messages.\n" + " --with-standby - Enable system standby.\n" + " --with-poweroff - Enable system power-off.\n" + " -s - Non-default settings path.\n" + " --ui - Use specified user interface.\n" + " -L - Send log messages to remote .\n" + " --syslog - Send log messages to syslog.\n" #if ENABLE_STDIN - " --stdin - Listen on stdin for events.\n" + " --stdin - Listen on stdin for events.\n" #endif - " -v - Use specific view for .\n" - " --cache - Set path for cache [%s].\n" + " -v - Use specific view for .\n" + " --cache - Set path for cache [%s].\n" " --persistent - Set path for persistent stuff [%s].\n" #if ENABLE_HTTPSERVER - " --disable-upnp - Disable UPNP/DLNA stack.\n" + " --disable-upnp - Disable UPNP/DLNA stack.\n" #endif - " --disable-sd - Disable service discovery (mDNS, etc).\n" - " -p - Path to plugin directory to load\n" - " Intended for plugin development\n" - " --plugin-repo - URL to plugin repository\n" - " Intended for plugin development\n" - " -j Load javascript file\n" - " --skin Select skin (for GLW ui)\n" + " --disable-sd - Disable service discovery (mDNS, etc).\n" + " -p - Path to plugin directory to load\n" + " Intended for plugin development\n" + " --plugin-repo - URL to plugin repository\n" + " Intended for plugin development\n" + " --proxy - Use SOCKS 4/5 proxy for http requests.\n" + " -j - Load javascript file\n" + " --skin - Select skin (for GLW ui)\n" "\n" " URL is any URL-type supported, " "e.g., \"file:///...\"\n"