Skip to content

Commit

Permalink
0.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmolka committed May 17, 2018
1 parent 564cf9f commit 5b5216e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion egg-player.pri
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RC_ICONS = resource/images/egg/egg.ico

VERSION = 0.1.2.12
VERSION = 0.1.3.0

QMAKE_TARGET = Egg Player
QMAKE_TARGET_PRODUCT = Egg Player
Expand Down
3 changes: 1 addition & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ A Groove Music like music player.

## Changes since lastest release
- add UTF-8 support
- add thread for audio loading
- improve startup times
- improve load times
- improve memory usage

## Things to do
### Internal
- add egg_old.log to store old logs
- more detailed logs, especially for player
- char-by-char conversion instead of TStringToQString
- use namespaces or classes in utils
- max property for timer
Expand Down
5 changes: 1 addition & 4 deletions src/utils/logger.cpp
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
#include "logger.hpp"

/*
* Creates and clears the logger file.
* Creates the logger file.
*/
void Logger::create()
{
file = new QFile(LOG_PATH, qApp);
file->open(QIODevice::Append | QIODevice::Text);
file->resize(0);
file->close();
}

/*
Expand Down

0 comments on commit 5b5216e

Please sign in to comment.