qbreak/app/config.h

19 lines
461 B
C
Raw Permalink Normal View History

2022-04-17 15:37:04 +03:00
#ifndef CONFIG_H
#define CONFIG_H
// App version
2022-05-07 21:59:47 +03:00
#define QBREAK_VERSION_MAJOR 0
#define QBREAK_VERSION_MINOR 1
#define QBREAK_VERSION_SUFFIX 17
// How often UI is updated - interval in seconds
#define INTERVAL_UPDATE_UI (10)
// How often progress bar is updated - interval in milliseconds
2022-05-03 21:47:32 +03:00
#define INTERVAL_UPDATE_PROGRESS (1000)
// How long notification is shown - in seconds
#define INTERVAL_NOTIFICATION (30)
2022-04-17 15:37:04 +03:00
#endif // CONFIG_H