Feature #2 » 0055-Update-bug-tracker-URL-to-point-to-redmine.freeciv.o.patch
| README.md | ||
|---|---|---|
|
=====
|
||
|
Freeciv website: [Freeciv.org](https://www.freeciv.org/)
|
||
|
Submit patches: [OSDN](https://osdn.net/projects/freeciv/ticket/)
|
||
|
Submit patches: [redmine.freeciv.org](https://redmine.freeciv.org/projects/freeciv)
|
||
|
Community forum: [forum.freeciv.org](https://forum.freeciv.org/)
|
||
| configure.ac | ||
|---|---|---|
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
AC_INIT([Freeciv], m4_esyscmd([./fc_version | tr -d '\n']),
|
||
|
[https://osdn.net/projects/freeciv/ticket/],
|
||
|
[https://redmine.freeciv.org/projects/freeciv],
|
||
|
[freeciv], [https://www.freeciv.org/])
|
||
|
AC_PREREQ(2.69)
|
||
| data/helpdata.txt | ||
|---|---|---|
|
If you find any bugs, then please send us a bug report. This is \
|
||
|
best done by visiting the Freeciv Bug Tracking System, at:\
|
||
|
"), "\
|
||
|
https://osdn.net/projects/freeciv/ticket/\
|
||
|
https://redmine.freeciv.org/projects/freeciv\
|
||
|
", _("\
|
||
|
Please quote the above version information. \
|
||
|
For more information about submitting bug reports see the file BUGS \
|
||
| doc/BUGS | ||
|---|---|---|
|
====
|
||
|
Freeciv 3.3 certainly contains some bugs. Please report all
|
||
|
you find to https://osdn.net/projects/freeciv/ticket/
|
||
|
you find to https://redmine.freeciv.org/projects/freeciv
|
||
|
REPORTING A BUG:
|
||
| ... | ... | |
|
- Check the Freeciv Bug Tracking System at:
|
||
|
https://osdn.net/projects/freeciv/ticket/
|
||
|
https://redmine.freeciv.org/projects/freeciv
|
||
|
to see if the bug has already been reported.
|
||
| doc/FAQ | ||
|---|---|---|
|
this site at the Freeciv Forums.
|
||
|
Patches and bug reports are best reported to the Freeciv bug tracking
|
||
|
system at https://osdn.net/projects/freeciv/ticket.
|
||
|
system at https://redmine.freeciv.org/projects/freeciv.
|
||
|
-------
|
||
| doc/TODO | ||
|---|---|---|
|
============
|
||
|
Freeciv is quite mature, and we think its already a great game, but
|
||
|
there are always things to add or improve. Check out wish list items on
|
||
|
https://osdn.net/projects/freeciv/ticket/ for things that need to
|
||
|
be done.
|
||
|
there are always things to add or improve. Check out wish list items on
|
||
|
https://redmine.freeciv.org/projects/freeciv
|
||
|
for things that need to be done.
|
||
| meson.build | ||
|---|---|---|
|
foreach manp : man_pages
|
||
|
man_conf_data = configuration_data()
|
||
|
man_conf_data.set('HOMEPAGE_URL', '"' + homepage_url + '"')
|
||
|
man_conf_data.set('BUG_URL', '"https://osdn.net/projects/freeciv/ticket/"')
|
||
|
man_conf_data.set('BUG_URL', '"https://redmine.freeciv.org/projects/freeciv"')
|
||
|
man_conf_data.set('MAIL_ADDRESS', '"freeciv-dev at freelists.org"')
|
||
|
man_conf_data.set('DATASUBDIR', '"' + datasubdir + '"')
|
||
|
configure_file(input : 'doc/man/' + manp + '.6.in',
|
||