Skip to content

Commit

Permalink
Version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
epinter committed Jun 21, 2020
1 parent fbf80bd commit d29abbd
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Changelog
## [0.8.0] - 2020-06-21
### Fixed
- Fix crash while parsing database with empty skills([#17](https://github.com/epinter/tqrespec/issues/17))
- Fix crash while searching for game installation([#19](https://github.com/epinter/tqrespec/issues/19))
- Better handling of empty data from database

### Added
- Prompt user to configure game path if not detected
- Logging
- Command line options for debugging (--debug <number>)
- Support 32bit builds

### Changed
- Code cleanup
- Frameworks/libraries upgraded
- Runtime upgraded
- Improve save file parsing, add support for more data types

## [0.7.2] - 2019-08-01
### Fixed
Expand Down
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
[![Release Date](https://img.shields.io/github/release-date/epinter/tqrespec.svg)](https://github.com/epinter/tqrespec/releases/latest)
[![Steam views](https://img.shields.io/steam/views/1262483108.svg)](https://steamcommunity.com/sharedfiles/filedetails/?id=1262483108)
[![License](https://img.shields.io/github/license/epinter/tqrespec.svg)](https://github.com/epinter/tqrespec/blob/master/LICENSE)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=epinter_tqrespec&metric=alert_status)](https://sonarcloud.io/dashboard?id=epinter_tqrespec)

## Introduction

Expand All @@ -17,7 +18,7 @@ You can download TQRespec from the releases page, [here](https://github.com/epin

#### ***Requirements***

This software requires **Microsoft Windows 64-bit** (tested with Windows 7, 8, 8.1 and 10), **Windows 32-bit is not supported**. You don't need to have java or any other software installed, but if you have problems like missing dlls, check if you have Microsoft Visual C++ Redist 2015 installed.
This software requires **Microsoft Windows (64-bit recommended)**. You don't need to have java or any other software installed, but if you have problems like missing dlls, check if you have Microsoft Visual C++ Redist 2015 installed.

## **How to use**

Expand Down Expand Up @@ -107,3 +108,27 @@ If your game path is not detected, you still can run TQRespec copying the game d
#### ***Errors and reporting***
If you see an error popup while using TQRespec, click on "Show details" and copy the complete error message (called java Exception). With this exception, a developer can find exactly where the code failed. If the software is crashing and you don't get an error message, or is crashing during startup, go to Windows Explorer and find the log file called **tqrespec.log** inside the directory %TEMP%. The %TEMP% is the windows temporary directory for you user.

#### ***Debug log***
If you need debug logs, you need to run the application with command line parameters:
The number is the level of debugging, from 1 to 9:

Lower level of debugging messages sent to log:
~~~
TQRespec.exe --debug=1
~~~

More debug for GUI and player save parsing, and basic level for database parsing:
~~~
TQRespec.exe --debug=3
~~~

Higher level of debug for GUI, player save and database parsing.
~~~
TQRespec.exe --debug=5
~~~

Higher level of debug for the application and all libraries:
~~~
TQRespec.exe --debug=9
~~~

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceSets {
}

ext.distAppName = 'TQRespec'
version = '0.7.2'
version = '0.8.0'
sourceCompatibility = 14
ext.moduleName = 'br.com.pinter.tqrespec'
ext.javahome = System.properties['java.home']
Expand Down

0 comments on commit d29abbd

Please sign in to comment.