Skip to content

Commit

Permalink
Preparing for new release
Browse files Browse the repository at this point in the history
Starbound unstable now stable!
  • Loading branch information
wizzomafizzo committed Mar 4, 2014
1 parent a01e440 commit 7cd4f34
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ If you're not trying to build starcheat yourself, here be dragons.
Here is how to build starcheat from source. Make sure everything in the dependencies section is installed before you do a build.

### Dependencies
- [Python 3.3](http://www.python.org/getit/)
- [Qt 5](http://qt-project.org/downloads) (Windows users don't need this)
- [Python 3.3+](http://www.python.org/getit/)
- [PyQt5](http://www.riverbankcomputing.com/software/pyqt/download5)
- [Qt 5](http://qt-project.org/downloads) (don't need this on Windows)
- [Pillow](https://pypi.python.org/pypi/Pillow/)
- [StarDB](https://github.com/McSimp/StarDB) (this is included as a git submodule)
- [py-starbound](https://github.com/blixt/py-starbound) (this is included as a [git submodule](http://git-scm.com/docs/git-submodule))

### Windows
Lines starting with ```PS>``` are to be run in PowerShell.
Lines starting with ```>``` can be run in PowerShell or cmd.exe.

- ```PS> cd <starcheat top folder>```
- ```PS> C:\Python33\python.exe .\build.py```
- ```> cd <starcheat top folder>```
- ```> C:\Python33\python.exe .\build.py```
- Browse to newly created ```build\``` folder
- Double click ```starcheat.py```

#### Standalone Build
The standalone build makes an executable which includes all Python and Qt dependencies.

- Install [cx_freeze](http://cx-freeze.sourceforge.net/)
- ```PS> cd <starcheat top folder>```
- ```PS> C:\Python33\python.exe .\build.py -e```
- ```> cd <starcheat top folder>```
- ```> C:\Python33\python.exe .\build.py -e```
- Browse to newly created ```dist\``` folder
- Double click ```starcheat.exe```

Expand Down
2 changes: 1 addition & 1 deletion mac/starcheat.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Starcheat < Formula
homepage 'https://github.com/wizzomafizzo/starcheat'
url 'https://github.com/wizzomafizzo/starcheat.git', :tag => '0.1'
url 'https://github.com/wizzomafizzo/starcheat.git', :tag => '0.11'

head 'https://github.com/wizzomafizzo/starcheat.git', :branch => 'dev'

Expand Down
4 changes: 2 additions & 2 deletions starcheat/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
if os.path.isdir(config_folder) == False:
os.mkdir(config_folder)

STARCHEAT_VERSION = "0.1 (Enraged Koala)"
CONFIG_VERSION = 6
STARCHEAT_VERSION = "0.11 (Enraged Koala)"
CONFIG_VERSION = 7
ini_file = os.path.join(config_folder, "starcheat.ini")

class Config():
Expand Down
2 changes: 1 addition & 1 deletion starcheat/templates/MainWindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@
<item row="1" column="1">
<widget class="QPushButton" name="techs_button">
<property name="enabled">
<bool>true</bool>
<bool>false</bool>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
Expand Down

0 comments on commit 7cd4f34

Please sign in to comment.