Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
raydienull committed Dec 17, 2023
1 parent e19f1d8 commit 57b46e5
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 87 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: CMake
run: cmake -G "Visual Studio 17 2022" .\
- name: MSBuild
run: msbuild SphereServer.sln /verbosity:minimal /maxcpucount /p:Configuration=Nightly
run: msbuild SphereUO.sln /verbosity:minimal /maxcpucount /p:Configuration=Nightly
- name: Create package
run: |
mkdir accounts, logs, save, scripts
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: CMake
run: cmake -G "Visual Studio 17 2022" -A Win32 .\
- name: MSBuild
run: msbuild SphereServer.sln /verbosity:minimal /maxcpucount /p:Configuration=Nightly
run: msbuild SphereUO.sln /verbosity:minimal /maxcpucount /p:Configuration=Nightly
- name: Create package
run: |
mkdir accounts, logs, save, scripts
Expand Down
80 changes: 0 additions & 80 deletions .github/workflows/coverity-scan.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/doxygen.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
# title of most generated pages and in a few other places.
# The default value is: My Project.

PROJECT_NAME = "SphereServer"
PROJECT_NAME = "SphereUO"

# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
# could be handy for archiving the generated documentation or if some version
Expand Down
2 changes: 1 addition & 1 deletion src/game/CServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2228,7 +2228,7 @@ bool CServer::Load()
#ifdef _NIGHTLYBUILD
static lpctstr pszNightlyMsg = "\r\n"
"-----------------------------------------------------------------\r\n"
"This is a nightly build of SphereServer. This build is to be used for testing and/or bug reporting ONLY.\r\n"
"This is a nightly build of SphereUO. This build is to be used for testing and/or bug reporting ONLY.\r\n"
"DO NOT run this build on a live shard unless you know what you are doing!\r\n"
"Nightly builds are automatically made at every commit to the source code repository and might\r\n"
"contain errors, might be unstable or even destroy your shard as they are mostly untested!\r\n"
Expand Down
2 changes: 1 addition & 1 deletion src/game/CServerConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4432,7 +4432,7 @@ bool CServerConfig::LoadIni( bool fTest )
if( !fTest )
{
g_Log.Event(LOGL_FATAL|LOGM_INIT|LOGF_CONSOLE_ONLY, SPHERE_FILE ".ini has not been found.\n");
g_Log.Event(LOGL_FATAL|LOGM_INIT|LOGF_CONSOLE_ONLY, "Download a sample sphere.ini from https://github.com/Sphereserver/Source-experimental/tree/master/src\n");
g_Log.Event(LOGL_FATAL|LOGM_INIT|LOGF_CONSOLE_ONLY, "Download a sample sphere.ini from https://github.com/SphereUO/Core\n");
}
return false;
}
Expand Down
5 changes: 3 additions & 2 deletions src/resources/SphereSvr.rc
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ END

IDM_STATUS DIALOGEX 0, 0, 420, 340
STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "SphereServer Status"
CAPTION "SphereUO Status"
FONT 8, "Courier", 0, 0, 0x0
BEGIN
LTEXT "Statistics:", 0, 5, 2, 50, 8
Expand All @@ -108,13 +108,14 @@ END

IDR_ABOUT_BOX DIALOGEX 0, 0, 400, 185
STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About SphereServer"
CAPTION "About SphereUO"
FONT 8, "MS Sans Serif", 0, 0, 0x1
BEGIN
ICON IDR_MAINFRAME,0,10,10,21,20
LTEXT "Version",IDC_ABOUT_VERSION,40,8,400,8
LTEXT "Compiler",IDC_ABOUT_COMPILER,40,16,200,8
LTEXT COPYRIGHT_STR,3,40,24,120,8
CTEXT "www.github.com/SphereUO",IDC_ABOUT_SPHEREUO_LINK,295,18,80,8
CTEXT "www.sphereserver.com",IDC_ABOUT_SPHERE_LINK,295,18,80,8
CTEXT "www.menasoft.com",IDC_ABOUT_MENASOFT_LINK,295,26,80,8
CTEXT "__________________________________________________________________________________________________________________________",6,6,32,388,8
Expand Down
1 change: 1 addition & 0 deletions src/resources/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#define IDC_ABOUT_COMPILER 1118
#define IDC_ABOUT_MENASOFT_LINK 1119
#define IDC_ABOUT_SPHERE_LINK 1120
#define IDC_ABOUT_SPHEREUO_LINK 1121
#define IDC_SETUP_PORT 4020
#define IDC_SETUP_SCRIPTS 4021
#define IDC_SETUP_SAVE 4022
Expand Down
1 change: 1 addition & 0 deletions src/resources/win_resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#define IDC_ABOUT_COMPILER 1118
#define IDC_ABOUT_MENASOFT_LINK 1119
#define IDC_ABOUT_SPHERE_LINK 1120
#define IDC_ABOUT_SPHEREUO_LINK 1121
#define IDC_SETUP_PORT 4020
#define IDC_SETUP_SCRIPTS 4021
#define IDC_SETUP_SAVE 4022
Expand Down

0 comments on commit 57b46e5

Please sign in to comment.