Project

General

Profile

Tasks #700 » 0001-Set-S3_3-to-alpha-mode.patch

S3_3 - Marko Lindqvist, 06/04/2024 03:53 AM

View differences:

NEWS
======================
Welcome to Freeciv x.x
Welcome to Freeciv 3.3
======================
The most important changes between major releases are shown below.
data/themes/gui-sdl2/human/theme.themespec
default_font_size = 10
; To use CJK fonts, provide the path to the font below.
; Fonts recommended for Freeciv can be fetched from git main branch, e.g.:
; https://raw.githubusercontent.com/freeciv/freeciv/main/data/themes/gui-sdl2/human/fireflysung.ttf
; Fonts recommended for Freeciv can be fetched from git S3_3 branch, e.g.:
; https://raw.githubusercontent.com/freeciv/freeciv/S3_3/data/themes/gui-sdl2/human/fireflysung.ttf
fonts =
{ "langname", "font_file"
"zh_CN", "themes/gui-sdl2/human/fireflysung.ttf"
data/themes/gui-sdl3/human/theme.themespec
default_font_size = 10
; To use CJK fonts, provide the path to the font below.
; Fonts recommended for Freeciv can be fetched from git main branch, e.g.:
; https://raw.githubusercontent.com/freeciv/freeciv/main/data/themes/gui-sdl3/human/fireflysung.ttf
; Fonts recommended for Freeciv can be fetched from git S3_3 branch, e.g.:
; https://raw.githubusercontent.com/freeciv/freeciv/S3_3/data/themes/gui-sdl3/human/fireflysung.ttf
fonts =
{ "langname", "font_file"
"zh_CN", "themes/gui-sdl3/human/fireflysung.ttf"
fc_version
MAJOR_VERSION="3"
MINOR_VERSION="2"
PATCH_VERSION="91"
EMERGENCY_VERSION="8"
VERSION_LABEL="-dev"
EMERGENCY_VERSION="9"
VERSION_LABEL="-alpha"
# Type is either "development" or "stable"
# Date and NEWS URL are relevant only for "stable" releases
if test "$VERSION_LABEL" = "" ; then
RELEASE_TYPE="stable"
#RELEASE_DATE="2023-05-08"
#RELEASE_DATE="2025-01-01"
NEWS_URL="https://www.freeciv.org/wiki/NEWS-${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}"
else
RELEASE_TYPE="development"
......
RELEASE_MONTH=0
MAIN_VERSION=3.3
DATASUBDIR=dev
DATASUBDIR=test
DEFAULT_FOLLOW_TAG=S3_3
# Freeciv network capstring: see documentation in common/capstr.c
meson.build
# Release cycle phases
# See fc_version about proper values for these.
datasubdir = 'dev'
datasubdir = 'test'
priv_conf_data.set('DATASUBDIR', datasubdir)
priv_conf_data.set('IS_DEVEL_VERSION', 1)
priv_conf_data.set('IS_FREEZE_VERSION', 0)
server/report.c
fprintf(score_log->fp,
"\n"
"# For a specification of the format of this see doc/README.scorelog or \n"
"# <https://raw.githubusercontent.com/freeciv/freeciv/main/doc/README.scorelog>.\n"
"# <https://raw.githubusercontent.com/freeciv/freeciv/S3_3/doc/README.scorelog>.\n"
"\n");
fprintf(score_log->fp, "id %s\n", server.game_identifier);
(2-2/3)