Skip to content

Commit 0bf2127

Browse files
committed
Merge branch 'master' into stable
2 parents 4f465af + aa6e247 commit 0bf2127

File tree

581 files changed

+249271
-48104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

581 files changed

+249271
-48104
lines changed

.github/CONTRIBUTING.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
This guide is a basic introduction to the development model for Red Eclipse, including the procedure for submitting modifications and creating new ideas. It is suggested you read this in its entirety before starting any development related work, as it contains vital information regarding proper etiquette.
2+
3+
## Preliminaries
4+
5+
Red Eclipse development is done with GIT. From there, you are able to create Issues or Pull Requests (these link to the "base" module, there are separate modules for "data" and "site"). If you are unfamiliar with GIT it is recommended to read a few tutorials on the net in order to avoid asking embarrassing questions. GitHub brings the advantage of a familiar interface with a robust set of features aimed at improving collaborative development and built to handle most of what users need from it, including help documentation.
6+
7+
The tree is split up into the following:
8+
9+
* base: https://github.com/red-eclipse/base - The base environment, including everything needed to build the game.
10+
* site: https://github.com/red-eclipse/site - The entirety of the website, minus runtime config and data.
11+
12+
If you are on Windows and don't like the official GitHub application you can try MSysGit or TortoiseGit. If you are on Linux you should be able to obtain the git command line tools from your distribution/package manager.
13+
14+
Here's a rundown of how to setup a new repository:
15+
16+
git clone --recursive https://github.com/red-eclipse/base.git redeclipse
17+
18+
## Content/Idea/Proposal Guidelines
19+
20+
* Create a piece of content, come up with an idea, or decide to propose a change you want included in Red Eclipse.
21+
* Then, create a thread for it, either in Maps and Mods for content, or General Discussion for ideas/proposals.
22+
* Give the community a chance to provide feedback, or answer a poll (minimum time should be about 2 weeks).
23+
* When you feel you have come up with a finished work, idea, or proposal, submit it to the appropriate git module as an issue or pull request.
24+
* Provide a good description along with a link to your original forum topic.
25+
* Attach, or provide direct links to, any files you are attempting to have included here.
26+
* Feel free to share a link to your post while we review it.
27+
28+
## Issue Reporting Guidelines
29+
30+
* Find an issue in the Red Eclipse game and/or engine, verify that you can reproduce the problem and provide steps on how to do so.
31+
* Check on the forums or issue tracker to see if your issue has already been reported and/or resolved upstream.
32+
* When you have verified that the issue still exists and needs to be fixed, submit it to the appropriate git module as an issue or pull request.
33+
* Provide a good description along with a link to your original forum topic (if applicable).
34+
* Attach, or provide direct links to, any files which demonstrates your issue and any patches you might have here.
35+
36+
## General Guidelines
37+
38+
* Only submit finalised works (no work-in-progress items please). If you are just looking for general feedback, you can use the forums (or a git fork!).
39+
* You acknowledge we will probably modify your content before including it (to fix any problems or improve it).
40+
* If you want to modify it at a later point, changes you make will need to be based on our version, otherwise we may not include your updates.
41+
* You must provide an explicit, legally enforceable license. Do not use "public domain", or "no commercial use" / "no modification allowed" clauses. If you don't, it will be assumed you are happy to use the Red Eclipse general license which best applies to the work.
42+
43+
If you are unsure about how to license your work, Creative Commons provides a handy selection tool for their licenses at http://creativecommons.org/choose/ and Red Eclipse content is generally licensed "CC by-sa" (Attribution-ShareAlike), unless otherwise specified: http://creativecommons.org/licenses/by-sa/3.0/
44+
45+
### A Note on Commit Messages
46+
47+
As of yet, there are no strict rules for formatting of commit messages. However, it is good practice to keep commit messages clean and simple while providing a relatively clear idea of what the commit entails. The following is a well-formatted commit message template that is widely used and well regarded. This template is merely a ''suggestion'', it need not be strictly adhered to or followed at all.
48+
49+
[Commit Message Template by Tim Pope](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
50+
51+
Beyond that, [here is a helpful section](http://git-scm.com/book/ch5-2.html#Commit-Guidelines) in the ''Pro Git'' book that briefly covers creating good commits.

.github/ISSUE_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Have you verified that you can reproduce the problem? [Y/N]
2+
3+
## Have you checked on the forums or issue tracker to see if your issue has already been reported and/or resolved upstream? [Y/N]
4+
5+
## Provide a good description along with a link to your original forum topic (if applicable).
6+
7+
8+
## Attach, or provide direct links to, any files which demonstrates your issue and any patches you might have here.
9+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ src/xcode/build/*
4343
src/xcode/redeclipse.xcodeproj/project.pbxproj
4444
src/xcode/redeclipse.xcodeproj/project.xcworkspace
4545
src/xcode/redeclipse.xcodeproj/xcuserdata
46+
src/redeclipse.cscope_file_list

.gitmodules

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
path = data/crosshairs
2323
url = https://github.com/red-eclipse/crosshairs.git
2424
branch = master
25+
[submodule "dziq"]
26+
path = data/dziq
27+
url = https://github.com/red-eclipse/dziq.git
28+
branch = master
2529
[submodule "elyvisions"]
2630
path = data/elyvisions
2731
url = https://github.com/red-eclipse/elyvisions.git
@@ -65,6 +69,10 @@
6569
path = data/misc
6670
url = https://github.com/red-eclipse/misc.git
6771
branch = master
72+
[submodule "nieb"]
73+
path = data/nieb
74+
url = https://github.com/red-eclipse/nieb.git
75+
branch = master
6876
[submodule "nobiax"]
6977
path = data/nobiax
7078
url = https://github.com/red-eclipse/nobiax.git
@@ -89,6 +97,11 @@
8997
path = data/skyboxes
9098
url = https://github.com/red-eclipse/skyboxes.git
9199
branch = master
100+
[submodule "snipergoth"]
101+
path = data/snipergoth
102+
103+
url = https://github.com/red-eclipse/snipergoth.git
104+
branch = master
92105
[submodule "sounds"]
93106
path = data/sounds
94107
url = https://github.com/red-eclipse/sounds.git
@@ -128,4 +141,4 @@
128141
[submodule "wicked"]
129142
path = data/wicked
130143
url = https://github.com/red-eclipse/wicked.git
131-
branch = master
144+
branch = master

bin/amd64/SDL.dll

-300 KB
Binary file not shown.

bin/amd64/SDL2.dll

1.17 MB
Binary file not shown.

bin/amd64/SDL2_image.dll

95.5 KB
Binary file not shown.

bin/amd64/SDL2_mixer.dll

191 KB
Binary file not shown.

bin/amd64/SDL_image.dll

-52 KB
Binary file not shown.

bin/amd64/SDL_mixer.dll

-158 KB
Binary file not shown.

0 commit comments

Comments
 (0)