Skip to content

Commit

Permalink
7.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum-leaps committed Feb 23, 2024
1 parent 0579723 commit f3a1b84
Show file tree
Hide file tree
Showing 24 changed files with 579 additions and 509 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ dbg/
rel/
spy/
settings/
share/

Debug/
Release/
Expand Down
16 changes: 10 additions & 6 deletions qcalc/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@set PROJ=qcalc

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

:: cleanup any previous builds...
@rmdir /S /Q build
Expand All @@ -23,12 +23,16 @@
:: check the build...
twine check dist/*

:: upload to PyPi
twine upload dist/*
:: upload to PyPi -- skip for now
:: twine upload dist/*

:: copy/rename the "wheel" to the current dir
@cp dist/%PROJ%-*.tar.gz %PROJ%.tar.gz

:: cleanup after the build...
@rmdir /S /Q build
@rmdir /S /Q dist
@rmdir /S /Q %PROJ%.egg-info
@rm -rf build
@rm -rf dist
@rm -rf %PROJ%.egg-info
::@rm -rf %PROJ%-*

@endlocal
4 changes: 2 additions & 2 deletions qcalc/qcalc.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#=============================================================================
##
# @date Last updated on: 2023-12-18
# @version Last updated for version: 7.3.2
# @version Last updated for version: 7.3.3
#
# @file
# @brief QCalc programmer's Calculator
Expand Down Expand Up @@ -59,7 +59,7 @@
from math import *

# current version of QCalc
VERSION = 732
VERSION = 733

# the 'ans' global variable
ans = {}
Expand Down
2 changes: 1 addition & 1 deletion qcalc/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions qclean/include/qclean.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
12 changes: 8 additions & 4 deletions qclean/source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 },
Expand All @@ -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 */
Expand Down Expand Up @@ -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"
Expand Down
Loading

0 comments on commit f3a1b84

Please sign in to comment.