summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Update NEWS file about v0.9.10 changesWolfgang Hommel2022-03-041-0/+2
|
* Version bump to 0.9.10 (prepares for #366)Wolfgang Hommel2022-02-201-0/+8
|
* Preliminary documentation related to #275 changesWolfgang Hommel2020-11-161-2/+11
|
* settime functions support FAKETIME_UPDATE_TIMESTAMP_FILE (for #239).Steffen Dettmer2020-04-091-0/+6
| | | | | | | | When the environment variable FAKETIME_TIMESTAMP_FILE is set, points to a writeable (creatable) custom config file and the environment variable FAKETIME_UPDATE_TIMESTAMP_FILE is "1", then the file also is updated on each call. By this, a common "virtual time" can be shared by several processes, where each can adjust the time for all.
* Added support for FAKETIME_LINK_FLAGS for #243.Steffen Dettmer2020-04-081-0/+4
|
* Revert "Automake branch"revert-178-automake-branchWolfgang Hommel2019-11-301-3/+0
|
* Merged master in and cleaned up.Michael D. Stemle, Jr2019-11-271-1/+37
|\ | | | | We no longer need the OSX-specific test. Tests are passing, too.
| * Add FAKE_SETTIME to CFLAGS to intercept time-setting calls (#179)Wolfgang Hommel2019-09-031-0/+11
| |
| * Added FORCE_MONOTONIC_FIX CFLAG to avoid hangs on timedwait (#202 #142)Wolfgang Hommel2019-08-231-0/+3
| |
| * Intercept epoll_wait(), epoll_pwait(), and pselect() (#115)Wolfgang Hommel2019-08-221-0/+3
| |
| * Added support for clock_nanosleep() (#105)Wolfgang Hommel2019-08-211-0/+1
| |
| * Further preparations for the upcoming v0.9.8 releaseWolfgang Hommel2019-08-211-0/+12
| |
| * Preparations for 0.9.8 releaseWolfgang Hommel2019-08-121-0/+6
| |
* | Added GNU autotools support.Michael D. Stemle, Jr2018-10-021-0/+3
|/
* Preparations for 0.9.7 releasev0.9.7Wolfgang Hommel2017-11-141-1/+1
|
* fix my nameDaria Phoebe Brashear2017-07-241-1/+1
|
* early preparations for 0.9.7 releaseWolfgang Hommel2017-05-191-0/+4
|
* Updated regarding coarse clocksWolfgang Hommel2015-12-281-0/+1
|
* Started adding changes since v0.9.6 releaseWolfgang Hommel2014-07-261-0/+3
|
* Preparations for 0.9.6 releasev0.9.6Wolfgang Hommel2014-06-071-0/+3
|
* Minor updates to debug msgs and docs related to filter commandsWolfgang Hommel2013-10-301-0/+5
|
* Added credits for MacPorts Portfile design and build cleanupv0.9.5rc3Wolfgang Hommel2013-10-111-0/+2
|
* Updated documentation and creditsWolfgang Hommel2013-09-021-0/+26
|
* whitespace cleanupTomi Ollila2012-08-301-3/+2
| | | | | | | | | Used (emacs) M-x untabify for whole faketime.c as the prevailing style in that file used spaces for indentation. Used M-x delete-trailing-whitespace to all files that had either trailing whitespace or empty lines at the end of file to remove those.
* Added feature to exec external command after x secWolfgang Hommel2012-01-111-0/+4
| | | | | | | | | | | | | | | | This feature makes libfaketime execute an arbitrary system command, such as a shell script, after a program has been running for X seconds or has made Y time-related function calls. It is controlled by three environment variables. FAKETIME_SPAWN_TARGET is the full path + file name + command line arguments to the user-specified system command. FAKETIME_SPAWN_SECONDS is the number of seconds (after program start / program's first time function call) after which FAKETIME_SPAWN_TARGET will be executed. FAKETIME_SPAWN_NUMCALLS can be used as an alternative to ..._SECONDS.
* Added new feature to limit libfaketime activityWolfgang Hommel2012-01-081-0/+9
| | | | | | | | | | | | | | | | | | | | | These changes add a new feature that can be used to limit libfaketime's activity period, and prepares for the upcoming 0.9 release. Four new environment variables can optionally be set: FAKETIME_START_AFTER_SECONDS, FAKETIME_STOP_AFTER_SECONDS, FAKETIME_START_AFTER_NUMCALLS, and FAKETIME_START_AFTER_NUMCALLS. libfaketime will only return faked timestamps if the program's runtime is between FAKETIME_START_AFTER_SECONDS and FAKETIME_STOP_AFTER_SECONDS seconds. For example, a program may be started with the real current time, and after 60 seconds, it will start to receive faked timestamps, e.g., one year in the future. The other pair of environment variables limits libfaketime's activity based on the number of time-related system calls of the started program, instead of its run-time in seconds. Using this new feature will break applications that cannot handle larger sudden changes in timestamps, so use it with care.
* Described recent changes and next stepsWolfgang Hommel2011-07-301-0/+3
|
* NEWS: Add note on MacOS portLukas Fleischer2011-07-151-0/+4
| | | | Signed-off-by: Lukas Fleischer <info@cryptocrack.de>
* NEWS: Fix trailing whitespaceLukas Fleischer2011-07-151-9/+9
| | | | Signed-off-by: Lukas Fleischer <info@cryptocrack.de>
* Restructure meta filesLukas Fleischer2011-07-151-0/+71
* Move "COPYING" and "Changelog" from "meta/" to the top-level source directory. No need to have a separate directory for two small text files. Also, it's common practice to put these there. * Makefile: Merge "meta/Makefile". * Rename "Changelog" to "NEWS". The file containing a summary of changes between two releases in generally called "NEWS". The name "ChangeLog" should only be used for a detailed log of every commit. Signed-off-by: Lukas Fleischer <info@cryptocrack.de>