Skip to content

Commit 377cd82

Browse files
v0.0.1.0
RELEASE NOTES: Version 0.0.1.0 Date: September 23, 2025 In this new version: - EISENHOWER ORGANIZER application distributed as a Windows executable, without the need to install Python or dependencies manually. - Organization of tasks into the four quadrants of the Eisenhower Matrix, with separate lists for pending and completed tasks. - Quick task addition with quadrant selector and automatic movement between lists when marked as completed. - Task removal via context menu with confirmation. - Automatic persistence of tasks in a local tasks.json file in the user's directory. - Export of tasks to XLSX (Excel) and PDF, and import from these formats. - Multilingual interface with language selection and immediate text updates. - "About" window with history, details, warnings, licenses and privacy policy loaded from resource files. - Fully offline operation: no data is sent to external servers. - Simple installation via installer, with features and settings ready for immediate use. - Solutions for common issues and usage guidance included in the documentation and the "About" window. For questions, support or suggestions, consult the channels listed in the installer or in the application's documentation.
0 parents  commit 377cd82

File tree

84 files changed

+4894
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+4894
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
name: Update Version in README
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
update-version:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
persist-credentials: true
21+
token: ${{ secrets.GITHUB_TOKEN }}
22+
23+
- name: Extract version from push commits
24+
id: extract_version
25+
shell: bash
26+
run: |
27+
set -euo pipefail
28+
EVENT="$GITHUB_EVENT_PATH"
29+
REGEX='v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'
30+
31+
echo "=== DEBUG: inspecting push payload ==="
32+
jq -r '.head_commit.message // "NO_HEAD_COMMIT_MESSAGE"' "$EVENT" || true
33+
34+
VERSION=""
35+
36+
# 1) tentativas no head_commit
37+
HEAD_MSG=$(jq -r '.head_commit.message // ""' "$EVENT")
38+
if echo "$HEAD_MSG" | grep -oE "$REGEX" >/dev/null; then
39+
VERSION=$(echo "$HEAD_MSG" | grep -oE "$REGEX" | tail -1)
40+
fi
41+
42+
# 2) se não achou no head, procurar no array de commits (do mais recente para o mais antigo)
43+
if [ -z "$VERSION" ]; then
44+
while IFS= read -r msg; do
45+
if echo "$msg" | grep -oE "$REGEX" >/dev/null; then
46+
VERSION=$(echo "$msg" | grep -oE "$REGEX" | tail -1)
47+
break
48+
fi
49+
done < <(jq -r '.commits | reverse | .[].message' "$EVENT")
50+
fi
51+
52+
# 3) fallback: procurar no histórico git recente
53+
if [ -z "$VERSION" ]; then
54+
if git log -20 --pretty=%B | grep -oE "$REGEX" >/dev/null; then
55+
VERSION=$(git log -20 --pretty=%B | grep -oE "$REGEX" | head -1)
56+
fi
57+
fi
58+
59+
if [ -n "$VERSION" ]; then
60+
echo "Version found: $VERSION"
61+
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
62+
echo "has_version=true" >> "$GITHUB_OUTPUT"
63+
else
64+
echo "No version pattern found in push"
65+
echo "has_version=false" >> "$GITHUB_OUTPUT"
66+
fi
67+
68+
- name: Debug - Show current README versions
69+
if: steps.extract_version.outputs.has_version == 'true'
70+
run: |
71+
echo "=== Current versions in README.md ==="
72+
grep -n -E 'v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' README.md || echo "No versions found"
73+
echo "====================================="
74+
75+
- name: Update README.md
76+
if: steps.extract_version.outputs.has_version == 'true'
77+
run: |
78+
set -euo pipefail
79+
VERSION="${{ steps.extract_version.outputs.version }}"
80+
echo "Updating README.md with version $VERSION"
81+
82+
cp README.md README.md.bak
83+
84+
BEFORE_COUNT=$(grep -o -E 'v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' README.md | wc -l || true)
85+
echo "Found $BEFORE_COUNT version patterns before replacement"
86+
87+
# Substituir qualquer vX.X.X.X pelo $VERSION
88+
sed -i -E "s/v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/$VERSION/g" README.md
89+
90+
AFTER_COUNT=$(grep -o -E "$VERSION" README.md | wc -l || true)
91+
echo "Found $AFTER_COUNT occurrences of $VERSION after replacement"
92+
93+
echo "=== Changes made ==="
94+
diff -u README.md.bak README.md || true
95+
echo "===================="
96+
97+
rm README.md.bak
98+
echo "README.md updated with version $VERSION"
99+
100+
- name: Check for changes
101+
if: steps.extract_version.outputs.has_version == 'true'
102+
id: check_changes
103+
run: |
104+
if git diff --quiet README.md; then
105+
echo "No changes detected in README.md"
106+
echo "has_changes=false" >> $GITHUB_OUTPUT
107+
else
108+
echo "Changes detected in README.md:"
109+
git diff README.md
110+
echo "has_changes=true" >> $GITHUB_OUTPUT
111+
fi
112+
113+
- name: Commit and push changes
114+
if: steps.extract_version.outputs.has_version == 'true' && steps.check_changes.outputs.has_changes == 'true'
115+
run: |
116+
VERSION="${{ steps.extract_version.outputs.version }}"
117+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
118+
git config --local user.name "github-actions[bot]"
119+
git add README.md
120+
git commit -m "chore: update version to $VERSION in README.md [skip ci]"
121+
git pull --rebase
122+
git push

.gitignore

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# UV
98+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
#uv.lock
102+
103+
# poetry
104+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105+
# This is especially recommended for binary packages to ensure reproducibility, and is more
106+
# commonly ignored for libraries.
107+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108+
#poetry.lock
109+
110+
# pdm
111+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
112+
#pdm.lock
113+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
114+
# in version control.
115+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
116+
.pdm.toml
117+
.pdm-python
118+
.pdm-build/
119+
120+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
121+
__pypackages__/
122+
123+
# Celery stuff
124+
celerybeat-schedule
125+
celerybeat.pid
126+
127+
# SageMath parsed files
128+
*.sage.py
129+
130+
# Environments
131+
.env
132+
.venv
133+
env/
134+
venv/
135+
ENV/
136+
env.bak/
137+
venv.bak/
138+
139+
# Spyder project settings
140+
.spyderproject
141+
.spyproject
142+
143+
# Rope project settings
144+
.ropeproject
145+
146+
# mkdocs documentation
147+
/site
148+
149+
# mypy
150+
.mypy_cache/
151+
.dmypy.json
152+
dmypy.json
153+
154+
# Pyre type checker
155+
.pyre/
156+
157+
# pytype static type analyzer
158+
.pytype/
159+
160+
# Cython debug symbols
161+
cython_debug/
162+
163+
# PyCharm
164+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
165+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
166+
# and can be added to the global gitignore or merged into this file. For a more nuclear
167+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168+
#.idea/
169+
170+
# Ruff stuff:
171+
.ruff_cache/
172+
173+
# PyPI configuration file
174+
.pypirc
175+
176+
# Cursor
177+
# Cursor is an AI-powered code editor.`.cursorignore` specifies files/directories to
178+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
179+
# refer to https://docs.cursor.com/context/ignore-files
180+
.cursorignore
181+
.cursorindexingignore

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/Eisenhower_Task_Organizer.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copilot.data.migration.agent.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copilot.data.migration.ask.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copilot.data.migration.ask2agent.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copilot.data.migration.edit.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)