Change versioning + bottle artwork

* Change bottle versioning
* Replace pacman artwork with ours
This commit is contained in:
Martin Valba 2024-09-28 22:05:41 +03:00
parent 4b49862898
commit 8199251b67
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
project('bottle',
'c',
version : '7.0.0',
version : '2024.4',
license : 'GPLv2+',
default_options : [
'c_std=gnu99',

View File

@ -242,12 +242,12 @@ static void usage(int op, const char * const myname)
static void version(void)
{
printf("\n");
printf(" .--. Bottle v%s - libalpm v%s\n", PACKAGE_VERSION, alpm_version());
printf("/ _.-' .-. .-. .-. Copyright (C) 2006-2024 Pacman Development Team\n");
printf("\\ '-. '-' '-' '-' Copyright (C) 2002-2006 Judd Vinet\n");
printf(" '--'\n");
printf(_(" This program may be freely redistributed under\n"
" the terms of the GNU General Public License.\n"));
printf(":######:- Bottle %s - libalpm v%s", PACKAGE_VERSION, alpm_version());
printf("\n:#*## #:- Copyright (C) 2006-2024 Pacman Development Team\n");
printf(":##/ /#:- Copyright (C) 2002-2006 Judd Vinet\n");
printf(":## #:\n");
printf(":# /#:- This program may be freely redistributed under\n");
printf(":######:- the terms of the GNU General Public License.\n");
printf("\n");
}