Commit graph

66 commits

Author SHA1 Message Date
a0c31c8a1c
download-manager/README.md: Update driver info 2024-12-31 10:42:07 +01:00
f9b820229f
Replace README.txt with README.md 2024-12-31 06:14:05 +01:00
xavi92
4681971d6d Remove svn:keywords property from the repository
These properties are not transmitted with git-svn(1) [1], which might
then cause failed patches when modifying lines close to these
properties.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9554 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6ed21e1fe12d01a370842418c35722c75117a30a
Former-commit-id: 8ecd21b7c0211cd000b10b3f0032980f63c06398
2024-10-02 15:30:18 +00:00
xavi92
db0044baf9 Fix wrongly encoded character
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9551 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: c52fd8dae18367fe4aa5c96454ae03130d12c6b8
Former-commit-id: 80afb101f35c4b34bcd805f8a84d6c4007b3451b
2024-09-30 05:23:22 +00:00
xavi92
0e7a45d2be Remove $Id$
This SVN-specific keyword [1] did not expand as expected on Git
repositories migrated from SVN via git-svn(1) [2]. Because of this,
applying patches with modifications would sometimes fail because, even
if these lines were not modified, they could be part of the context
lines, thus heavily confusing Git.

Since it is already expected to migrate from SVN to Git sometime soon,
this would also make $Id$ redundant.

[1]: https://svnbook.red-bean.com/en/1.7/svn.advanced.props.special.keywords.html
[2]: https://git-scm.com/docs/git-svn


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9550 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7acf9a9675a0496a85ecd61210b8c29c89f9517a
Former-commit-id: 1878bb38889e4dddc83ef762b6b384f0f0a4ecc5
2024-09-30 05:17:15 +00:00
xavi92
d893a9a41d Add documentation about the download manager
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9528 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 4640dfcf3561bd0cc2be1816780ccf7f6a7cff30
Former-commit-id: 1e5191eefcd294651d597082ab5a62e539bf10dd
2024-08-08 23:21:57 +00:00
xavi92
e06a519365 Remove trailing newlines
The following shell script was used:

while read f
do
	sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' -- "$f"
done <<EOF
$(svn ls -R | grep \
	-e '.\cpp$' \
	-e '\.cmake$' \
	-e '\.txt$' \
	-e '\.cppcheck$' \
	-e '\.frag$' \
	-e '\.h$' \
	-e '\.hpp$' \
	-e '\.vert$' \
	-e '\.xml$' \
	-e '\.java$' \
	-e '\.c$')
EOF


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9509 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: aac7ab5702079417cb16ca2fa291be07033ea549
Former-commit-id: f0286e4119f166d7b78f9d13ff2ea04ffaa95c67
2024-07-30 22:17:48 +00:00
xavi92
6d7ca06e02 String trailing whitespaces
The following shell script was used:

while read f
do
        sed -Ei 's/[[:space:]]+$//g' "$f"
done <<EOF
$(svn ls -R | grep \
        -e '.\cpp$' \
        -e '\.cmake$' \
        -e '\.txt$' \
        -e '\.cppcheck$' \
        -e '\.frag$' \
        -e '\.h$' \
        -e '\.hpp$' \
        -e '\.vert$' \
        -e '\.xml$' \
        -e '\.java$' \
        -e '\.c$')
EOF

As a side effect, this has also converted some files from CRLF line
endings to LF.

File extensions such as .ac or .osg were intentionally left out because
those usually are very large files generated by tools.



git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9507 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6c1e5ab34415982ec77fc92a77e1b1c149518eca
Former-commit-id: c6cf9480ae7c1d2f9a999eb6c6b976eef8bae3ba
2024-07-30 21:45:07 +00:00
xavi92
afe8b2fa8b Add JSON schema and example for assets lists
The JSON schema provides a machine and human-readable specification of
the assets lists that implementors must follow so that Speed Dreams can
fetch them. An example JSON file has also been provided.

Run check-jsonschema(1) to test an assets JSON file. It can be
downloaded via `pip install check-jsonschema`.


git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@9489 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bff0b86104dfe3e88896e1d5bfcfa35be2008265
Former-commit-id: e830b70b32d944c24515452ebd76f0dfdb0a6860
2024-07-15 03:07:48 +00:00
beaglejoe
e0a6375924 Updated for 2.3.0
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@8605 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: a7d49bea3caec58a5e6e0bee539eb3362d0e5cc6
Former-commit-id: 0f4e4861aca4482421d314defff3d7d3bd1a1c65
2022-10-19 15:26:05 +00:00
beaglejoe
8536aaf34d Update Display options section
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6377 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3b41bcdb6e49494ed55acdeb15d2d3cd1acc8b83
Former-commit-id: d428eb563f7d12fd4f3b259f19549fa173d5ea22
2016-02-29 16:23:05 +00:00
beaglejoe
cd2f43b916 Updated links to SF as trac is no more
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6376 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 2ba04b1177aa1cec551f6b663415bfadf012ec5c
Former-commit-id: 80b487184dd37558790f698a3cf7beba0ef6c186
2016-02-29 15:44:52 +00:00
kakukri
c7e3af67ea Re #947: update text to describe new in 2.2.0 menu items
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6375 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 77b6c6e108fbd96648f75d730bafd456ba63085b
Former-commit-id: 2d0edf2dd5356f657a645f2f102462d3e6685e28
2016-02-28 22:43:38 +00:00
kakukri
b098479b14 Re #947: actually show the grid control configuration screen where the text says so
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6374 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 03e4acf66a5104b0bcbec50a6c6bda982868c32b
Former-commit-id: 1f68c627292e0145a63c87ca9b3609cd20cf4d8b
2016-02-28 22:42:48 +00:00
beaglejoe
f2afedcc4b Updated test for Chapter 1-3
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6373 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 445f9ef6e5b97450aa1c693a210a2de3c49c2a46
Former-commit-id: 59fa3c4407c14dc39599a51de90a6c13dd26dc5b
2016-02-28 02:07:58 +00:00
beaglejoe
f191794922 Updated graphics for user manual
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6371 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d48fd89177375e09f3caf5b4ec18c3121f329293
Former-commit-id: 0884cc51ef70b4cc59268d5a71d4e6762268a603
2016-02-28 00:52:47 +00:00
kakukri
75b0273a24 Re #947: update text of chapter 'Racing'
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6369 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6a639cbc4b9daf6095ee96401c29e93ffd94513b
Former-commit-id: 387d6f919cf70f6040387ed4679682fc5d378f2a
2016-02-28 00:37:48 +00:00
kakukri
5bd56a94a2 Re #947: update screenshots from chapter 'Racing'
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6368 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bc6d950f46c22bd9d6ebe2fd83ac072e709d9f12
Former-commit-id: 711057fddb101e1f94bbb31089e3fa0b6ab81e0f
2016-02-28 00:36:29 +00:00
kakukri
caa3bfc4d9 Re #947: add a screenshot of garage menu
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6367 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9bf955be127aff3960b2113b25e5372fbf3b0ecf
Former-commit-id: b1ae589cecd594a99ed162acb54cd37c7af4a106
2016-02-28 00:33:29 +00:00
kakukri
055981fb62 Re #947: add dashboard description to User manual
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6365 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: d10aa5acbf844ad9a3ce3443d34469379f6f119f
Former-commit-id: ec81931878cfcdcece453cda3bd015544d4a220f
2016-02-27 21:49:50 +00:00
kakukri
3d10af7fa6 Re #947: screenshots for dashboard documentation.
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6364 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: dda83beab7f26648361f72cd36ece3e6c2b84647
Former-commit-id: a084ba834e6432f45b6b0885eeaa4771e7cdfaad
2016-02-27 21:48:29 +00:00
mungewell
be6fbcf2f3 Finalise the Changelogs
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5799 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6d299113816a8c754d281092dffd24e1eb26486c
Former-commit-id: 4c7e52116f828d13bd378d1dd5f1802cd3ac5999
2014-06-27 00:49:51 +00:00
mungewell
ef21068c0f Added some more items in the Change list. Please review SVN log and pick some more
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5793 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 59c565c76d628d29e37f241f86bc45e06b6a9574
Former-commit-id: 724a071d72b73eca29af68f97c37569d463ed1ed
2014-06-26 02:59:34 +00:00
kakukri
6071c9bf9d Changelog for 2.1.0 regarding physics
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@5771 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 50b98415769801ec7742edbdad9791815747e9e5
Former-commit-id: a0f9e5d575d824f128cbed5af1e0919a2bff06ce
2014-06-15 21:05:13 +00:00
pouillot
d7e75086ba Fixes #739 Typo in man file
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4854 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 111324df82b5d8007cea56fd18b7049c8edee47d
Former-commit-id: b6964e270223aa3d7e0df8748a2c838cb3b466b5
2012-08-14 13:11:43 +00:00
pouillot
4a8f0577a6 Updated change log for 2.0.0
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4697 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5512810b4647877f7ba7a1630aba5c8b2d2a3dfd
Former-commit-id: af506cf70d01de37df35c5516e80a15e4c88ef55
2012-04-14 08:04:44 +00:00
pouillot
23efe39d5c Moved src/doc to doc/doxygen for consistency
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4540 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 19d6e6248356b242a8afcd3ad301ae7d419d5d01
Former-commit-id: 7fad37df3cb8c5bdd54a6abfada1010b3cb14761
2012-02-26 13:03:08 +00:00
pouillot
f0624bb403 Fixes #602 Install manpages (after updating the original sources) for our executables
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4539 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9402aa859e40a442eae68888a5814a393efe6839
Former-commit-id: 8137df76708c2ed8a9f9ecdeaf6c08ccec329bac
2012-02-26 13:00:58 +00:00
pouillot
56d9060dc6 Merged tags/2.0.0-rc1 tweaks to the trunk
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4422 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 9ddd7082aaa96fe269a844de5793363e5c2b5112
Former-commit-id: ea5e0a52d995edb153bd3639cff8086e5672ff75
2012-01-15 15:09:48 +00:00
pouillot
701c37d2a6 Last tweaks before tagging 2.0.0-rc1 (Pre-final release notes and NSI specs)
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@4415 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 99d9dbeab827bb7037317c600696d625cab5f245
Former-commit-id: 355fc8c9b6e93a47d31f287418352ee999fdc92c
2012-01-15 08:40:38 +00:00
pouillot
53d8ddcbc7 Merged tags/2.0.0-b1 changes to Windows installers and release notes
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3938 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 92b0b04124f7782e57ba30706a9f4f2951397e81
Former-commit-id: 6d84ac1a3095f0ee2246c1d4582fa739521b70e3
2011-09-27 05:51:21 +00:00
pouillot
27c972a506 WIP 2.0.0 Beta 1 release notes
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3932 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 2e32bd444aab85c554419bf3f8be65b7b613af93
Former-commit-id: be6ff5a9a09d7495e7f2eecc3c07e731d073ef36
2011-09-24 22:04:51 +00:00
pouillot
1a8dc7dfcb http://speed-dreams.sourceforge.net now redirects to http://www.speed-dreams.org
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3457 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3d6161b3c4168e72d4faf2e666c75621fb826592
Former-commit-id: a1022023a5506c8180bf762f6064465ec39775ca
2011-03-26 14:46:52 +00:00
pouillot
b75061d61a cleaned-up doc/man and updated to the 2-naming scheme
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3417 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 34cd501031e55d52bc466bc4e254e76f2983a99f
Former-commit-id: 38d384822533aba496f881ddd0e50394a9bc4544
2011-03-05 10:54:03 +00:00
pouillot
c37ecc8feb Updated CHANGES/changelogs for 2.0.0 Alpha 3
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3416 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 6999e4040fb21689091cb76412ac5fca26393ece
Former-commit-id: 00dfd0b4da79a3e19ced906d164779f94c98c893
2011-03-05 10:52:43 +00:00
pouillot
d69c5ff3d7 Updated CHANGES.txt for soon 2.0.0 Alpha2
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3071 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e593c9845daa06f254c5e9f1a9a85de1591a3a81
Former-commit-id: fca3fffa24c42112cf2d0419b1d8b1aaa653e613
2010-10-29 21:17:07 +00:00
pouillot
426b35f148 Set svn:keywords property to Id for every source text file, in order to get svn substitution for $ in the file headers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2925 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 0a9737ab35c1123080f04ddace4195e99c6b619a
Former-commit-id: b30e6c9a80034f6ec14f841e36f2bf33e7cafaf9
2010-10-17 19:17:45 +00:00
pouillot
f2ff957c0a Set svn:keywords property to Id for every source text file, in order to get svn substitution for $ in the file headers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2924 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 92630a59d05323007f1ec22afcc9c4b947c7f9fd
Former-commit-id: f6ca6ba218a07be211d08eaa53f7e39e530747ea
2010-10-17 19:17:30 +00:00
pouillot
c2e056629a Set svn:keywords property to Id for every source text file, in order to get svn substitution for $ in the file headers
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2921 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: bb672df5503895f3b515beaf49a4d2e809b7fd49
Former-commit-id: f55eb4665106d0d12371100fc50cdb227563e2cf
2010-10-17 19:09:11 +00:00
pouillot
d04d0a775a Updated CHANGES + added doc/changelogs/2.0.0.txt
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2758 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ae47e71956d9e2d6df8d1684eafa0830d278813f
Former-commit-id: 0f2bf551a8f06f6e3aa1e9ce50b9c9b32819be5c
2010-09-19 12:40:19 +00:00
pouillot
8aea085e51 renamed callgrind logs for consistency with associated data files
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2465 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: b2cea4553df876d4af6e36ddc48b6af0d7e5ea63
Former-commit-id: afa1751e6162604cf662f97b8c1b38abcf2e93cc
2010-05-15 13:39:14 +00:00
pouillot
bb47d12c0b Added callgrind files from normal race heavy load profiling sessions
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2464 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7274d1bc6bedae8b5d7a266eb6ecc47d90763a60
Former-commit-id: 32442d76cc318f3338c50cb27f6e3eeae9e9aea6
2010-05-15 13:37:54 +00:00
pouillot
a5130b525d renamed callgrind profile data files for easier opening in kcachegrind
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2463 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: fd7bcd6cde984daa49e94e585da01c6a4ef4cb6b
Former-commit-id: 1df7662892b89dbb184aaeef7b4d3309d3b6d9ca
2010-05-15 13:34:42 +00:00
pouillot
63ca93031d Added callgrind files from blindrace profiling sessions
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2458 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 20c6efef3f71d999156155e8777836043e7a96dc
Former-commit-id: c86b1988d0ed086bcb1a45b00fd96151de20c0a5
2010-05-15 11:55:13 +00:00
pouillot
8901839f37 fixed typo in file name
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2456 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 7db2bdd5c8710650d530c9e6689ce94495a682fe
Former-commit-id: 885d1dac8911d3cfdac88f75c64649cc47e344d5
2010-05-15 11:48:43 +00:00
pouillot
e1ea9e5188 added 8 oprofile profiling results in the cachegrind format
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2451 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ce3c3b72d77d9331185bc9e1942e184840b0a9aa
Former-commit-id: 41e107c7d15a4754df0c8d8f0cb2bf580e2265f6
2010-05-11 20:33:36 +00:00
martkelder
611c7f3c8a Add profiling results to subversion
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2447 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 3066b1cb01db7006ffbff6fb7d7a6c95dec32b0c
Former-commit-id: 6ca9a66e8a20a8612fd29f09ed22f84f3adb04b6
2010-05-11 10:37:42 +00:00
pouillot
3985317a1d Removed useless files in doc/tutorials
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2417 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: e40a24592ffc2a50ca2633ed1a791e2dd6b93637
Former-commit-id: 6581c7c37fee2964671b09aaf1031b0860f2d145
2010-05-02 17:15:16 +00:00
pouillot
ec50a52ecc Updated project page for final 1.4.0 release
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2308 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 610364e730244a6a528f4cf595c7c844686a354c
Former-commit-id: 934d0440872e49056f03793c62f3e239282fcb82
2010-03-27 17:57:10 +00:00
pouillot
407668c306 Promoted sdl-port branch to the new trunk, towards 2.0
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2276 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: cbff36e6bd206b0180816184b31d3a609616f669
Former-commit-id: cc1d132029d92e672f8520d2555f8dcdc5bbb92e
2010-02-28 09:04:35 +00:00