Skip to content

Commit f3a1b84

Browse files
committed
7.3.3
1 parent 0579723 commit f3a1b84

File tree

24 files changed

+579
-509
lines changed

24 files changed

+579
-509
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ dbg/
3838
rel/
3939
spy/
4040
settings/
41+
share/
4142

4243
Debug/
4344
Release/

qcalc/make.bat

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@set PROJ=qcalc
1111

1212
:: adjust the Python location for your system
13-
@set PYTHON=C:\tools\Python39-32\python.exe
13+
@set PYTHON=python
1414

1515
:: cleanup any previous builds...
1616
@rmdir /S /Q build
@@ -23,12 +23,16 @@
2323
:: check the build...
2424
twine check dist/*
2525

26-
:: upload to PyPi
27-
twine upload dist/*
26+
:: upload to PyPi -- skip for now
27+
:: twine upload dist/*
28+
29+
:: copy/rename the "wheel" to the current dir
30+
@cp dist/%PROJ%-*.tar.gz %PROJ%.tar.gz
2831

2932
:: cleanup after the build...
30-
@rmdir /S /Q build
31-
@rmdir /S /Q dist
32-
@rmdir /S /Q %PROJ%.egg-info
33+
@rm -rf build
34+
@rm -rf dist
35+
@rm -rf %PROJ%.egg-info
36+
::@rm -rf %PROJ%-*
3337

3438
@endlocal

qcalc/qcalc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#=============================================================================
2727
##
2828
# @date Last updated on: 2023-12-18
29-
# @version Last updated for version: 7.3.2
29+
# @version Last updated for version: 7.3.3
3030
#
3131
# @file
3232
# @brief QCalc programmer's Calculator
@@ -59,7 +59,7 @@
5959
from math import *
6060

6161
# current version of QCalc
62-
VERSION = 732
62+
VERSION = 733
6363

6464
# the 'ans' global variable
6565
ans = {}

qcalc/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="qcalc",
12-
version="7.3.2",
12+
version="7.3.3",
1313
author="Quantum Leaps",
1414
author_email="[email protected]",
1515
description="qcalc programmer's calculator",

qclean/include/qclean.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
2424
============================================================================*/
2525
/*!
26-
* @date Last updated on: 2023-09-26
27-
* @version Last updated for version: 7.3.0
26+
* @date Last updated on: 2024-02-19
27+
* @version Last updated for version: 7.3.3
2828
*
2929
* @file
3030
* @brief QClean internal interface
3131
*/
3232
#ifndef QCLEAN_H_
3333
#define QCLEAN_H_
3434

35-
#define VERSION "7.3.0"
35+
#define VERSION "7.3.3"
3636

3737
unsigned isMatching (char const *fullPath);
3838
void onMatchFound(char const *fullPath, unsigned flags, int ro_info);

qclean/source/main.c

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
2929
============================================================================*/
3030
/*!
31-
* @date Last updated on: 2022-10-28
32-
* @version Last updated for version: 7.3.0
31+
* @date Last updated on: 2024-02-20
32+
* @version Last updated for version: 7.3.3
3333
*
3434
* @file
3535
* @brief main for QClean host utility
@@ -91,13 +91,16 @@ static FileType const l_fileTypes[] = {
9191
{ ".bat", 4, CR_FLG | TAB_FLG },
9292
{ ".ld", 3, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* GNU linker */
9393
{ ".py", 3, CR_FLG | TAB_FLG | LONG_LINE_FLG },
94+
{ ".pyi", 4, CR_FLG | TAB_FLG | LONG_LINE_FLG },
9495
{ ".pyw", 4, CR_FLG | TAB_FLG | LONG_LINE_FLG },
9596
{ ".java", 5, CR_FLG | TAB_FLG | LONG_LINE_FLG },
9697

9798
{ "Makefile", 8, CR_FLG | LONG_LINE_FLG },
9899
{ "mak_", 4, CR_FLG | LONG_LINE_FLG },
99100
{ ".mak", 4, CR_FLG | LONG_LINE_FLG },
100101
{ ".make", 5, CR_FLG | LONG_LINE_FLG },
102+
{ ".cmake", 6, CR_FLG | TAB_FLG },
103+
{ ".json", 5, CR_FLG | TAB_FLG },
101104

102105
{ ".html", 5, CR_FLG | TAB_FLG },
103106
{ ".htm", 4, CR_FLG | TAB_FLG },
@@ -119,9 +122,10 @@ static FileType const l_fileTypes[] = {
119122
{ ".project", 8, CR_FLG }, /* Eclipse project */
120123
{ ".cproject",9, CR_FLG }, /* Eclipse CDT project */
121124

125+
{ ".md5", 4, CR_FLG | TAB_FLG }, /* MD5 file */
122126
{ ".pro", 4, CR_FLG | TAB_FLG }, /* Qt project */
123127

124-
{ ".m", 2, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* MATLAB*/
128+
{ ".m", 2, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* MATLAB */
125129

126130
{ ".lnt", 4, CR_FLG | TAB_FLG | LONG_LINE_FLG }, /* PC-Lint */
127131
{ ".cfg", 4, CR_FLG | TAB_FLG }, /* RSM config */
@@ -336,7 +340,7 @@ int main(int argc, char *argv[]) {
336340
char const *rootDir = ".";
337341
int optChar;
338342

339-
PRINTF_S("%s", "QClean " VERSION " Copyright (c) 2005-2022 Quantum Leaps\n"
343+
PRINTF_S("%s", "QClean " VERSION " Copyright (c) 2005-2024 Quantum Leaps\n"
340344
"Documentation: https://www.state-machine.com/qtools/qclean.html\n");
341345
PRINTF_S("%s", "Usage: qclean [root-dir] [options]\n"
342346
" root-dir root directory for recursive cleanup (default is .)\n"

0 commit comments

Comments
 (0)