Skip to content

Commit

Permalink
Merge branch 'master' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
qreeves committed Jun 30, 2016
2 parents 4f465af + aa6e247 commit 0bf2127
Show file tree
Hide file tree
Showing 581 changed files with 249,271 additions and 48,104 deletions.
51 changes: 51 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
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.

## Preliminaries

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.

The tree is split up into the following:

* base: https://github.com/red-eclipse/base - The base environment, including everything needed to build the game.
* site: https://github.com/red-eclipse/site - The entirety of the website, minus runtime config and data.

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.

Here's a rundown of how to setup a new repository:

git clone --recursive https://github.com/red-eclipse/base.git redeclipse

## Content/Idea/Proposal Guidelines

* Create a piece of content, come up with an idea, or decide to propose a change you want included in Red Eclipse.
* Then, create a thread for it, either in Maps and Mods for content, or General Discussion for ideas/proposals.
* Give the community a chance to provide feedback, or answer a poll (minimum time should be about 2 weeks).
* 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.
* Provide a good description along with a link to your original forum topic.
* Attach, or provide direct links to, any files you are attempting to have included here.
* Feel free to share a link to your post while we review it.

## Issue Reporting Guidelines

* 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.
* Check on the forums or issue tracker to see if your issue has already been reported and/or resolved upstream.
* 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.
* Provide a good description along with a link to your original forum topic (if applicable).
* Attach, or provide direct links to, any files which demonstrates your issue and any patches you might have here.

## General Guidelines

* 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!).
* You acknowledge we will probably modify your content before including it (to fix any problems or improve it).
* 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.
* 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.

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/

### A Note on Commit Messages

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.

[Commit Message Template by Tim Pope](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)

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.
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Have you verified that you can reproduce the problem? [Y/N]

## Have you checked on the forums or issue tracker to see if your issue has already been reported and/or resolved upstream? [Y/N]

## Provide a good description along with a link to your original forum topic (if applicable).


## Attach, or provide direct links to, any files which demonstrates your issue and any patches you might have here.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ src/xcode/build/*
src/xcode/redeclipse.xcodeproj/project.pbxproj
src/xcode/redeclipse.xcodeproj/project.xcworkspace
src/xcode/redeclipse.xcodeproj/xcuserdata
src/redeclipse.cscope_file_list
15 changes: 14 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
path = data/crosshairs
url = https://github.com/red-eclipse/crosshairs.git
branch = master
[submodule "dziq"]
path = data/dziq
url = https://github.com/red-eclipse/dziq.git
branch = master
[submodule "elyvisions"]
path = data/elyvisions
url = https://github.com/red-eclipse/elyvisions.git
Expand Down Expand Up @@ -65,6 +69,10 @@
path = data/misc
url = https://github.com/red-eclipse/misc.git
branch = master
[submodule "nieb"]
path = data/nieb
url = https://github.com/red-eclipse/nieb.git
branch = master
[submodule "nobiax"]
path = data/nobiax
url = https://github.com/red-eclipse/nobiax.git
Expand All @@ -89,6 +97,11 @@
path = data/skyboxes
url = https://github.com/red-eclipse/skyboxes.git
branch = master
[submodule "snipergoth"]
path = data/snipergoth

url = https://github.com/red-eclipse/snipergoth.git
branch = master
[submodule "sounds"]
path = data/sounds
url = https://github.com/red-eclipse/sounds.git
Expand Down Expand Up @@ -128,4 +141,4 @@
[submodule "wicked"]
path = data/wicked
url = https://github.com/red-eclipse/wicked.git
branch = master
branch = master
Binary file removed bin/amd64/SDL.dll
Binary file not shown.
Binary file added bin/amd64/SDL2.dll
Binary file not shown.
Binary file added bin/amd64/SDL2_image.dll
Binary file not shown.
Binary file added bin/amd64/SDL2_mixer.dll
Binary file not shown.
Binary file removed bin/amd64/SDL_image.dll
Binary file not shown.
Binary file removed bin/amd64/SDL_mixer.dll
Binary file not shown.
Binary file modified bin/amd64/libFLAC-8.dll
Binary file not shown.
Binary file removed bin/amd64/libjpeg-8.dll
Binary file not shown.
Binary file added bin/amd64/libjpeg-9.dll
Binary file not shown.
Binary file modified bin/amd64/libmikmod-2.dll
Binary file not shown.
Binary file added bin/amd64/libmodplug-1.dll
Binary file not shown.
Binary file modified bin/amd64/libogg-0.dll
Binary file not shown.
Binary file removed bin/amd64/libpng15-15.dll
Binary file not shown.
Binary file added bin/amd64/libpng16-16.dll
Binary file not shown.
Binary file modified bin/amd64/libtiff-5.dll
Binary file not shown.
Binary file modified bin/amd64/libvorbis-0.dll
Binary file not shown.
Binary file modified bin/amd64/libvorbisfile-3.dll
Binary file not shown.
Binary file removed bin/amd64/libwebp-2.dll
Binary file not shown.
Binary file added bin/amd64/libwebp-4.dll
Binary file not shown.
Binary file removed bin/amd64/smpeg.dll
Binary file not shown.
Binary file added bin/amd64/smpeg2.dll
Binary file not shown.
Binary file modified bin/amd64/zlib1.dll
Binary file not shown.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion bin/redeclipse.app/Contents/Frameworks/SDL.framework/SDL

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0bf2127

Please sign in to comment.