File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# PopTracker Changelog
22
3+ ## v0.12.1
4+
5+ * Fixes
6+ * fix potential crash when changing packs/variants
7+
38## v0.12.0
49
510* App Features
Original file line number Diff line number Diff line change @@ -251,8 +251,8 @@ void PopTracker::unloadTracker()
251251#ifndef FIND_LUA_LEAKS // if we don't lua_close at exit, we can use valgrind to see if the allocated memory grew
252252 if (_L) lua_close (_L);
253253#endif
254- delete _tracker;
255254 delete _scriptHost;
255+ delete _tracker;
256256 delete _pack;
257257 _L = nullptr ;
258258 _tracker = nullptr ;
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ class PopTracker final : public App {
4747 virtual ~PopTracker ();
4848
4949 static constexpr const char APPNAME [] = " PopTracker" ;
50- static constexpr const char VERSION_STRING [] = " 0.12.0 " ;
50+ static constexpr const char VERSION_STRING [] = " 0.12.1 " ;
5151
5252protected:
5353 virtual bool start ();
You can’t perform that action at this time.
0 commit comments