Skip to content

Commit

Permalink
Changed README and .gitignore, and VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
daxartio committed Dec 12, 2017
1 parent d27571f commit 695bcc7
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 20 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ log/

data/*
/languages/**/*.mo
/python/
/lib/
/*.exe
*.bat
*.cmd
SportOrg.spec
SportOrg.bat

resource.syso
versioninfo.json
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,22 @@
- [polib](http://polib.readthedocs.io/en/latest/quickstart.html)

Install packages
```
```commandline
pip install package-name
pip install sireader
```

or

```commandline
pip install -r requirements.txt
```
pip install -t lib -r requirements.txt

Run

```commandline
python SportOrg.pyw
```

### Struct
Expand All @@ -28,8 +34,7 @@ pip install -t lib -r requirements.txt
docs/
log/
templates/
python/
lib/
test/
img/
icon/
languages/
Expand All @@ -41,13 +46,15 @@ pip install -t lib -r requirements.txt
gui/
models/
modules/
lib/
libs/
utils/
```

![Mainwindow sportorg](img/mainwindow.png)

![Dialogedit sportorg](img/dialogedit.png)
![Result sportorg](img/result.png)
![Bibprintout sportorg](img/bibprintout.png)

### build `go`

Expand Down
11 changes: 1 addition & 10 deletions SportOrg.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ func getGlobalPython() string {
return "pythonw"
}

func getLocalPython() string {
return "python/pythonw.exe"
}

func baseDir(p string) string {
dir, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err != nil {
Expand All @@ -35,12 +31,7 @@ func hasPython(p string) bool {
func main() {
argsWithoutProg := os.Args[1:]

var pythonName string
if hasPython(getLocalPython()) {
pythonName = baseDir(getLocalPython())
} else {
pythonName = getGlobalPython()
}
var pythonName = getGlobalPython()

cmd := exec.Command(
pythonName,
Expand Down
12 changes: 11 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 2017-12-12 v0.10.0-beta
+ Added the ability to edit splits
+ Support for multiple marking systems at the model level
+ Printing of bib
+ Numbering rows in tables
+ Ability to select templates for separation
+ New template for split
- Taking into account the change in the starting time of the result
* Changed the project structure


### 2017-11-15 v0.9.0-beta
+ Assigning of card for athlete while result editing
+ Result editing - interactive number change
Expand Down Expand Up @@ -29,5 +40,4 @@


### 2017-10-17 v0.7.2-beta

* Init
Binary file added img/bibprintout.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/dialogedit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/mainwindow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/result.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion sportorg/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from sportorg.core.version import Version

NAME = 'SportOrg'
VERSION = Version(0, 9, 0, 0, 'v', 'beta')
VERSION = Version(0, 10, 0, 0, 'v', 'beta')
DEBUG = True


Expand Down

0 comments on commit 695bcc7

Please sign in to comment.