-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0579723
commit f3a1b84
Showing
24 changed files
with
579 additions
and
509 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,7 @@ dbg/ | |
rel/ | ||
spy/ | ||
settings/ | ||
share/ | ||
|
||
Debug/ | ||
Release/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
setup( | ||
name="qcalc", | ||
version="7.3.2", | ||
version="7.3.3", | ||
author="Quantum Leaps", | ||
author_email="[email protected]", | ||
description="qcalc programmer's calculator", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,16 +23,16 @@ | |
* <[email protected]> | ||
============================================================================*/ | ||
/*! | ||
* @date Last updated on: 2023-09-26 | ||
* @version Last updated for version: 7.3.0 | ||
* @date Last updated on: 2024-02-19 | ||
* @version Last updated for version: 7.3.3 | ||
* | ||
* @file | ||
* @brief QClean internal interface | ||
*/ | ||
#ifndef QCLEAN_H_ | ||
#define QCLEAN_H_ | ||
|
||
#define VERSION "7.3.0" | ||
#define VERSION "7.3.3" | ||
|
||
unsigned isMatching (char const *fullPath); | ||
void onMatchFound(char const *fullPath, unsigned flags, int ro_info); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,8 @@ | |
* <[email protected]> | ||
============================================================================*/ | ||
/*! | ||
* @date Last updated on: 2022-10-28 | ||
* @version Last updated for version: 7.3.0 | ||
* @date Last updated on: 2024-02-20 | ||
* @version Last updated for version: 7.3.3 | ||
* | ||
* @file | ||
* @brief main for QClean host utility | ||
|
@@ -91,13 +91,16 @@ static FileType const l_fileTypes[] = { | |
{ ".bat", 4, CR_FLG | TAB_FLG }, | ||
{ ".ld", 3, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* GNU linker */ | ||
{ ".py", 3, CR_FLG | TAB_FLG | LONG_LINE_FLG }, | ||
{ ".pyi", 4, CR_FLG | TAB_FLG | LONG_LINE_FLG }, | ||
{ ".pyw", 4, CR_FLG | TAB_FLG | LONG_LINE_FLG }, | ||
{ ".java", 5, CR_FLG | TAB_FLG | LONG_LINE_FLG }, | ||
|
||
{ "Makefile", 8, CR_FLG | LONG_LINE_FLG }, | ||
{ "mak_", 4, CR_FLG | LONG_LINE_FLG }, | ||
{ ".mak", 4, CR_FLG | LONG_LINE_FLG }, | ||
{ ".make", 5, CR_FLG | LONG_LINE_FLG }, | ||
{ ".cmake", 6, CR_FLG | TAB_FLG }, | ||
{ ".json", 5, CR_FLG | TAB_FLG }, | ||
|
||
{ ".html", 5, CR_FLG | TAB_FLG }, | ||
{ ".htm", 4, CR_FLG | TAB_FLG }, | ||
|
@@ -119,9 +122,10 @@ static FileType const l_fileTypes[] = { | |
{ ".project", 8, CR_FLG }, /* Eclipse project */ | ||
{ ".cproject",9, CR_FLG }, /* Eclipse CDT project */ | ||
|
||
{ ".md5", 4, CR_FLG | TAB_FLG }, /* MD5 file */ | ||
{ ".pro", 4, CR_FLG | TAB_FLG }, /* Qt project */ | ||
|
||
{ ".m", 2, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* MATLAB*/ | ||
{ ".m", 2, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* MATLAB */ | ||
|
||
{ ".lnt", 4, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* PC-Lint */ | ||
{ ".cfg", 4, CR_FLG | TAB_FLG }, /* RSM config */ | ||
|
@@ -336,7 +340,7 @@ int main(int argc, char *argv[]) { | |
char const *rootDir = "."; | ||
int optChar; | ||
|
||
PRINTF_S("%s", "QClean " VERSION " Copyright (c) 2005-2022 Quantum Leaps\n" | ||
PRINTF_S("%s", "QClean " VERSION " Copyright (c) 2005-2024 Quantum Leaps\n" | ||
"Documentation: https://www.state-machine.com/qtools/qclean.html\n"); | ||
PRINTF_S("%s", "Usage: qclean [root-dir] [options]\n" | ||
" root-dir root directory for recursive cleanup (default is .)\n" | ||
|
Oops, something went wrong.