aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* v3.0.5av3.0.5aItay Grudev2017-01-311-0/+7
|
* Refactored SingleApplicationPrivate destructor.Itay Grudev2017-01-302-18/+13
| | | | | Deleted the separate cleanUp method as it’s not used from anywhere but the destructor.
* Fix memory leak on SingleApplicationPrivate destruction (#23)retmas2017-01-301-0/+1
| | | The issue is non critical as if the library is used properly this destructor is not called until the end of the program anyway.
* v3.0.4av3.0.4aItay Grudev2017-01-251-0/+7
|
* Fixed shadow variable warning (#21)pjwhams2017-01-241-23/+23
|
* Fixed typo in CHANGELOG.mdItay Grudev2017-01-241-1/+1
|
* Removed Windows specific code for getting usernamev3.0.3aItay Grudev2017-01-242-16/+18
| | | | On the absolute path to the home directory is now explicitly used.
* Refactored slotConnectionEstablished()Itay Grudev2017-01-241-16/+14
| | | | | The code is now shorter and easier to understand. Fixed an uninitialised variable warning as reported in #20.
* Fixed typos in CHANGELOG.mdItay Grudev2016-12-021-4/+4
|
* Update CHANGELOG.mdItay Grudev2016-11-281-1/+1
|
* SingleApplication v3.0.2av3.0.2aItay Grudev2016-11-272-2/+10
|
* Fix crash when username contains Unicode characters on Windows (#17)Le Liu2016-11-271-3/+1
| | | | | * Fixed bug on Windows with username containing wide characters causing the library to crash. _Le Liu_
* Single Application v.3.0.1av3.0.1aItay Grudev2016-11-262-14/+32
| | | | Signed-off-by: Itay Grudev <itay@grudev.com>
* Allow data exclusion for the server name hash and Windows fixes (#16)Le Liu2016-11-262-3/+24
| | | | | | | | | * Allows the application path and version to be excluded from the server name hash. The following flags were added for this purpose: * `SingleApplication::Mode::ExcludeAppVersion` * `SingleApplication::Mode::ExcludeAppPath` * Allow a non elevated process to connect to a local server created by an elevated process run by the same user on Windows * Fixes a problem with upper case letters in paths on Windows
* Fixed typo in README.mdItay Grudev2016-11-041-4/+4
|
* Merge pull request #14 from uralbash/masterItay Grudev2016-08-241-0/+1
|\ | | | | | | Fix Windows warning about unused timeout argument. Thanks to @uralbash
| * fix Windows warning about unused parameterSvintsov Dmitry2016-08-241-0/+1
|/
* Merge pull request #13 from uralbash/masterItay Grudev2016-08-222-1/+1
|\ | | | | | | Added missing "QMutex" dependencies. Thanks to @uralbash.
| * Added missing "QMutex" dependenciesSvintsov Dmitry2016-08-222-1/+1
|/
* Fix bug (and compiler error) on Windows - wchar username supportItay Grudev2016-08-181-4/+5
|
* Improved documentation styling. Added HRs between API members.Itay Grudev2016-08-151-0/+14
|
* Improved `instanceStarted()` note in `README.md`.Itay Grudev2016-08-151-2/+4
|
* Disambiguation in `CHANGELOG.md`Itay Grudev2016-08-151-1/+1
|
* Fixed typo in `CHANGELOG.md`Itay Grudev2016-08-151-1/+1
|
* Improved documentation for v3.0av3.0aItay Grudev2016-08-101-11/+104
|
* Added an example of an application raising the primary instance windowItay Grudev2016-08-108-1/+754
| | | | | | This example uses the Qt Calculator example released under the BSD license. Noted the license difference in the `README.md` and `LICENSE` files.
* Added an example of an application sending it's arguments to the primary ↵Itay Grudev2016-08-104-0/+61
| | | | instance
* Added a basic usage exampleItay Grudev2016-08-102-0/+14
|
* SingleApplication v3.0aItay Grudev2016-08-106-177/+512
|
* Fixed signal formattingItay Grudev2016-07-101-14/+14
|
* Added CHANGELOG and version descriptionItay Grudev2016-07-042-0/+50
|
* Updated license dates. Explicit license statement in the header and source filesItay Grudev2016-07-043-1/+45
|
* Distributed a .pri file with the libraryItay Grudev2016-05-272-15/+8
|
* SIGBUSS should be signal 10. Fixed commentItay Grudev2016-05-141-1/+1
|
* README: Better highlighing of exit code formula.Itay Grudev2016-05-111-4/+4
|
* Docmented changes and example usage with a .pri fileItay Grudev2016-05-091-11/+46
|
* QAPPLICATION_CLASS now defaults to QCoreApplicationItay Grudev2016-05-091-1/+1
|
* Code style improvementsv2.4Itay Grudev2016-05-042-9/+8
|
* Merge pull request #6 from itay-grudev/secondaryItay Grudev2016-05-043-77/+240
|\ | | | | Added stability improvements and support for secondary instances.
| * Bugfix no showUp notification. Some minor improvementsItay Grudev2016-05-041-4/+10
| |
| * Improved restoring QSharedMemory after crashItay Grudev2016-05-041-3/+8
| |
| * Updated documentationItay Grudev2016-05-041-19/+63
| |
| * Secondary instance implementationItay Grudev2016-05-042-55/+163
|/
* Bug fix possible situation in which memory is detachedItay Grudev2016-05-041-8/+5
|
* Now handling all relevant signalsItay Grudev2016-05-042-14/+30
| | | | | | New handled signals are: SIGHUP, SIGQUIT, SIGBUS, SIGSYS, SIGPIPE, SIGALRM, SIGXCPU, SIGXFSZ
* Merge pull request #5 from i7achi/modern_cppv2.3Itay Grudev2016-04-053-56/+76
|\ | | | | Adaptation to Qt's pimpl idiom design. Improved inheritance safety.
| * Ensure backward compatibility and some cosmetic changes.Vlad Pyatnichenko2016-04-053-6/+11
| |
| * HOTFIX: use Q_Q instead of q_ptr directly.Vlad Pyatnichenko2016-03-221-1/+3
| |
| * HOTFIX: added Qt's modules prefixes to #include statements.Vlad Pyatnichenko2016-03-061-4/+4
| |
| * Adaptation to Qt's pimpl idiom design. Improved inheritance safety.Vlad Pyatnichenko2016-03-053-55/+68
|/ | | | | | | | | | | | | | | | | | | | | | Details: * Improved unsafe C-style macros inheritance approach to the project-wide DEFINES: it is unspecified in which order source files are being preprocessed ones, so in singleapplication.cpp the class might be inherent of default-specified base, while in main.cpp this can be a user-provided QAPPLICATION_CLASS definition. * Replace Qt's pseudo-keywords to more library-independent counterparts ('emit -> Q_EMIT', etc) * Indentation fixes (80 character column-width) * Rearragned #include statements: from most platform-independen to more app-specific. * Fixed some grammar typos. * README.md updated respectively.