Skip to content

Commit

Permalink
Merge remote-tracking branch 'orbweaver/master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	radiant/ui/lightinspector/LightInspector.cpp
  • Loading branch information
codereader committed Mar 9, 2019
2 parents a0c4e71 + 27bc419 commit 609ed5c
Show file tree
Hide file tree
Showing 529 changed files with 9,361 additions and 5,164 deletions.
14 changes: 14 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,14 @@
pages:
stage: deploy
script:
- mkdir .public
- cp doc/*.html .public
- cp -r doc/img .public
- mv .public/manual.html .public/index.html
- gzip -k .public/index.html
- mv .public public
artifacts:
paths:
- public
only:
- master
2 changes: 1 addition & 1 deletion Makefile.am
@@ -1,6 +1,6 @@
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = libs radiant plugins install/i18n
SUBDIRS = libs radiant plugins install/i18n doc

# Install data and stuff
gamedir = $(pkgdatadir)/games
Expand Down
44 changes: 22 additions & 22 deletions configure.ac
Expand Up @@ -60,6 +60,12 @@ AC_ARG_ENABLE([debug],
[enable debug build])],
[debug_build=$enableval],
[debug_build='no'])
AC_ARG_ENABLE([relocation],
[AS_HELP_STRING([--enable-relocation],
[build a relocatable package without hard-coded
absolute paths])],
[reloc_build=$enableval],
[reloc_build='no'])
AC_ARG_ENABLE([darkmod-plugins],
[AS_HELP_STRING([--enable-darkmod-plugins],
[build Dark Mod plugins such as S/R editor])],
Expand Down Expand Up @@ -329,6 +335,12 @@ else
CXXFLAGS="-g -O2 -DNDEBUG $CXXFLAGS"
fi

# Relocation
if test "$reloc_build" != 'no'
then
CPPFLAGS="-DENABLE_RELOCATION $CPPFLAGS"
fi

AC_SUBST([CPPFLAGS])
AC_SUBST([CFLAGS])
AC_SUBST([CXXFLAGS])
Expand All @@ -340,35 +352,15 @@ AC_CONFIG_FILES([install/darkradiant.desktop install/i18n//Makefile.in
Makefile
radiant/Makefile
install/i18n/Makefile.in
doc/Makefile
libs/Makefile
libs/ddslib/Makefile
libs/wxutil/Makefile
libs/math/Makefile
libs/picomodel/Makefile
libs/scene/Makefile
libs/xmlutil/Makefile
plugins/Makefile
plugins/archivezip/Makefile
plugins/commandsystem/Makefile
plugins/eclassmgr/Makefile
plugins/entity/Makefile
plugins/eventmanager/Makefile
plugins/filetypes/Makefile
plugins/filters/Makefile
plugins/fonts/Makefile
plugins/image/Makefile
plugins/mapdoom3/Makefile
plugins/md5model/Makefile
plugins/model/Makefile
plugins/particles/Makefile
plugins/scenegraph/Makefile
plugins/script/Makefile
plugins/shaders/Makefile
plugins/skins/Makefile
plugins/sound/Makefile
plugins/uimanager/Makefile
plugins/vfspk3/Makefile
plugins/xmlregistry/Makefile
plugins/dm.stimresponse/Makefile
plugins/dm.objectives/Makefile
plugins/dm.difficulty/Makefile
Expand All @@ -382,7 +374,15 @@ AC_OUTPUT
echo "
Configuration options:"

echo " Installation prefix: $prefix"
echo " Installation prefix: $prefix"

if test "$reloc_build" != 'no'
then
echo " Relocatable package: yes"
else
echo " Relocatable package: no"
fi

if test -n "$sound_module"
then
echo " Sound: yes"
Expand Down
10 changes: 10 additions & 0 deletions debian/changelog
@@ -1,3 +1,13 @@
darkradiant (2.6.0) bionic; urgency=medium

* 2.6.0 release for Bionic.
* This feature release is further improving on the Model Exporting
capabilities and introduces smaller features like a mapping time stopwatch
and the ability to define favourites in the Media Browser, making it more
convenient to work with a large number of materials.

-- Matthew Mott <orbweaver3d@gmail.com> Fri, 18 Jan 2019 20:17:22 +0000

darkradiant (2.0.2-2~vivid1) vivid; urgency=medium

* Entity list now shows entity names, and no longer crashes when an entity is
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Expand Up @@ -2,7 +2,7 @@ Source: darkradiant
Section: editors
Priority: extra
Maintainer: Matthew Mott <orbweaver3d@gmail.com>
Build-Depends: debhelper (>= 5), autotools-dev, libgtkmm-2.4-dev, libgtkglextmm-x11-1.2-dev, libxml2-dev, libglew-dev, libboost-regex-dev, libboost-filesystem-dev, libboost-serialization-dev, libboost-test-dev, libboost-python-dev, python-dev, libvorbis-dev, libopenal-dev, libalut-dev, libjpeg-dev, ftgl-dev, libwxbase3.0-dev, libwxgtk3.0-dev
Build-Depends: debhelper (>= 5), autotools-dev, libgtkmm-2.4-dev, libgtkglextmm-x11-1.2-dev, libxml2-dev, libglew-dev, libboost-regex-dev, libboost-filesystem-dev, libboost-serialization-dev, libboost-test-dev, libboost-python-dev, python-dev, libvorbis-dev, libopenal-dev, libalut-dev, libjpeg-dev, libftgl-dev, libwxbase3.0-dev, libwxgtk3.0-dev
Standards-Version: 3.9.1

Package: darkradiant
Expand Down
1 change: 0 additions & 1 deletion debian/darkradiant.install
Expand Up @@ -2,6 +2,5 @@ usr/bin
usr/lib/darkradiant/lib*
usr/lib/darkradiant/modules
usr/lib/darkradiant/scripts
usr/lib/darkradiant/plugins/eclasstree*
usr/share/darkradiant
usr/share/applications

0 comments on commit 609ed5c

Please sign in to comment.