Skip to content

Commit 1bda592

Browse files
committed
rename to UeCore
1 parent 4156857 commit 1bda592

File tree

512 files changed

+539
-539
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

512 files changed

+539
-539
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
#
44
# This program is free software; you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published by
@@ -74,5 +74,5 @@ script:
7474
- make -j4
7575
- make install
7676

77-
# if this configuration file is not in one of the offical Everwar repositories at http://github.com/Everwar/, PLEASE remove the notifications or point them to another IRC channel!
77+
# if this configuration file is not in one of the offical UeCore repositories at http://github.com/UeCore/, PLEASE remove the notifications or point them to another IRC channel!
7878

AUTHORS.md

+1-1

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# build server
22

3-
project(Everwar)
3+
project(UeCore)
44
set(EVERWAR_VERSION 1.3)
55
cmake_minimum_required(VERSION 3.0)
66

README.md

+4-4

app/mangosd/mangosd.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

app/realmd/realmd.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ init:
5454
else {Write-Host "Skipping tag delete because its same commit!" -f Yellow;}}
5555
5656
# clone directory
57-
clone_folder: C:\projects\Everwar
57+
clone_folder: C:\projects\UeCore
5858

5959
# branches to build
6060
branches:

cmake/compiler/clang/settings.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(COMPILER_SUPPORTS_CXX11)
1010
elseif(COMPILER_SUPPORTS_CXX0X)
1111
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
1212
else()
13-
message(FATAL_ERROR "Error, Everwar requires a compiler that supports C++11!")
13+
message(FATAL_ERROR "Error, UeCore requires a compiler that supports C++11!")
1414
endif()
1515

1616
if(WARNINGS)

cmake/compiler/gcc/settings.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(COMPILER_SUPPORTS_CXX11)
1010
elseif(COMPILER_SUPPORTS_CXX0X)
1111
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
1212
else()
13-
message(FATAL_ERROR "Error, Everwar requires a compiler that supports C++11!")
13+
message(FATAL_ERROR "Error, UeCore requires a compiler that supports C++11!")
1414
endif()
1515

1616

cmake/macros/ImportTBB.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
#
44
# This program is free software; you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published by

cmake/showoptions.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# output generic information about the core
2-
message(STATUS "Everwar-Core revision : ${GIT_REVISION}")
2+
message(STATUS "UeCore-Core revision : ${GIT_REVISION}")
33
message(STATUS "Install server to : ${CMAKE_INSTALL_PREFIX}")
44

55
# Show infomation about the options selected during configuration

contrib/CreateTopicBranch.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/sh
2-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
# This program is free software licensed under GPL version 2
44
# Please see the included COPYING for full text */
55

6-
## Dialogue helper to create a "topic-branch" for Everwar
6+
## Dialogue helper to create a "topic-branch" for UeCore
77

88
# Steps in interactive dialog:
99
# 1) Get name of contribution (ie LFG)
@@ -50,15 +50,15 @@ function read_yes_no {
5050

5151
# Main Script
5252

53-
echo "Welcome to Everwar' helper tool to create a branch for a development project"
53+
echo "Welcome to UeCore' helper tool to create a branch for a development project"
5454
echo "This script will guide you through seven steps to set up a branch in which you can develop your project"
5555
echo
5656

5757
# Must have Git available
5858
git rev-parse --git-dir 1>/dev/null 2>&1
5959
if [[ $? -ne 0 ]]; then
6060
echo "ERROR: Cannot find Git directory"
61-
echo "Try to start from your main Everwar directory by using"
61+
echo "Try to start from your main UeCore directory by using"
6262
echo " \"contrib/CreateTopicBranch.sh\""
6363
read -p"Press [RETURN] to exit"
6464
exit 1

contrib/MergeHelper.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
# This program is free software licensed under GPL version 2
44
# Please see the included COPYING for full text */
55

@@ -62,7 +62,7 @@ EOF
6262
# Display help
6363
function display_help {
6464
echo
65-
echo "Welcome to the Everwar merge helper $script_file_name"
65+
echo "Welcome to the UeCore merge helper $script_file_name"
6666
echo
6767
echo "Run this tool from a bash compatible terminal (on windows like Git Bash)"
6868
echo
@@ -100,7 +100,7 @@ function merge_pull_request {
100100
git rev-parse --git-dir 1>/dev/null 2>&1
101101
if [[ $? -ne 0 ]]; then
102102
echo "ERROR: This script must be used within a Git working tree"
103-
echo "Try to start from your main Everwar directory by using"
103+
echo "Try to start from your main UeCore directory by using"
104104
echo " \"contrib/$script_file_name\""
105105
read -p"Press [RETURN] to exit"
106106
exit 1

contrib/convertConditions/ConvertConditions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
#
44
# This program is free software; you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published by

contrib/convertConditions/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
#
44

55
This small Python script is intended to help with the convertion

contrib/extractor/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by

contrib/extractor/libmpq/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by

contrib/extractor/loadlib/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by

contrib/extractor_binary/ExtractResources.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
3+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
44
#
55
# This file is free software; as a special exception the author gives
66
# unlimited permission to copy and/or distribute it, with or without

contrib/extractor_binary/MoveMapGen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
3+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
44
#
55
# This file is free software; as a special exception the author gives
66
# unlimited permission to copy and/or distribute it, with or without

contrib/extractor_binary/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This file is free software; as a special exception the author gives
44
# unlimited permission to copy and/or distribute it, with or without

contrib/extractor_scripts/ExtractResources.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
3+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
44
#
55
# This file is free software; as a special exception the author gives
66
# unlimited permission to copy and/or distribute it, with or without

contrib/extractor_scripts/MoveMapGen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
3+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
44
#
55
# This file is free software; as a special exception the author gives
66
# unlimited permission to copy and/or distribute it, with or without

contrib/extractor_scripts/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This file is free software; as a special exception the author gives
44
# unlimited permission to copy and/or distribute it, with or without

contrib/git_id/git_id.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This file is free software; as a special exception the author gives
44
# unlimited permission to copy and/or distribute it, with or without

contrib/mmap/mmap_extract.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python
22

33
"""
4-
This file is part of the Everwar Project. See AUTHORS file for Copyright information
4+
This file is part of the UeCore Project. See AUTHORS file for Copyright information
55
66
This program is free software; you can redistribute it and/or modify
77
it under the terms of the GNU General Public License as published by

contrib/mmap/src/IntermediateValues.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/IntermediateValues.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/MMapCommon.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/MangosMap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/MapBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/MapBuilder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/TerrainBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/TerrainBuilder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/VMapExtensions.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mmap/src/generator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mysql_to_pgsql/src/defines.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/mysql_to_pgsql/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/soap/example.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/*
3-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
3+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
44
*
55
* This program is free software; you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

contrib/vmap_assembler/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This program is distributed in the hope that it will be useful,
44
# but WITHOUT ANY WARRANTY; without even the implied warranty of

contrib/vmap_assembler/vmap_assembler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/vmap_extractor/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by

contrib/vmap_extractor/vmapextract/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file is part of the Everwar Project. See AUTHORS file for Copyright information
1+
# This file is part of the UeCore Project. See AUTHORS file for Copyright information
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by

contrib/vmap_extractor/vmapextract/adtfile.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

contrib/vmap_extractor/vmapextract/adtfile.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of the Everwar Project. See AUTHORS file for Copyright information
2+
* This file is part of the UeCore Project. See AUTHORS file for Copyright information
33
*
44
* This program is free software; you can redistribute it and/or modify
55
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)