Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1820f8f
added face search functionality
DecodeX15 Oct 10, 2025
e95793b
added month search
DecodeX15 Oct 10, 2025
86f084e
everything done
DecodeX15 Oct 10, 2025
2a5260d
fix lint error
DecodeX15 Oct 10, 2025
74ea16f
fixed erorr
DecodeX15 Oct 10, 2025
7c7cbfd
lint error
DecodeX15 Oct 10, 2025
7833dd0
fixed linting error
DecodeX15 Oct 10, 2025
29f5489
adding
DecodeX15 Oct 10, 2025
f49e63e
update branch
DecodeX15 Oct 20, 2025
324fff5
adding
DecodeX15 Oct 23, 2025
421fa2a
conflixts resolved
DecodeX15 Oct 23, 2025
9a2ecd1
lint
DecodeX15 Oct 23, 2025
079b034
branch update
DecodeX15 Oct 24, 2025
34c3cba
update fork
DecodeX15 Oct 28, 2025
0aa0c31
update
DecodeX15 Oct 29, 2025
4698587
conflists
DecodeX15 Oct 30, 2025
b05919e
update
DecodeX15 Oct 30, 2025
03ea5c4
update branch
DecodeX15 Oct 31, 2025
95ba8e7
resolved issue sof chronological scrool bar
DecodeX15 Nov 1, 2025
7dfaa3a
update branch
DecodeX15 Nov 13, 2025
ea5ae3b
add
DecodeX15 Nov 15, 2025
c1cb57c
update main branch
DecodeX15 Nov 16, 2025
52655f3
aadd
DecodeX15 Nov 16, 2025
c712193
Merge branch 'main' of https://github.com/AOSSIE-Org/PictoPy
DecodeX15 Dec 8, 2025
cef2b69
Merge branch 'main' of https://github.com/Vaibhaviitian/PictoPy-os in…
DecodeX15 Dec 8, 2025
ca27769
update main branch
DecodeX15 Dec 30, 2025
9d39bc5
update branch
DecodeX15 Dec 30, 2025
3b00ea2
update main
DecodeX15 Jan 25, 2026
e919447
update branch
DecodeX15 Jan 25, 2026
abe926f
update branch
DecodeX15 May 16, 2026
ee8f70a
updaing main branch
DecodeX15 May 18, 2026
e9df2e6
updaing branch
DecodeX15 May 18, 2026
ca9c457
lint fix
DecodeX15 May 18, 2026
44f7014
update main brnach
DecodeX15 May 23, 2026
cf437f0
update branch
DecodeX15 May 23, 2026
b8625ba
suggested changed by rohan
DecodeX15 May 23, 2026
e474658
lint fix
DecodeX15 May 23, 2026
0ebe2ed
updating main branch
DecodeX15 May 25, 2026
7d4a804
updating branch + resizing search bar
DecodeX15 May 25, 2026
bd718e5
lint and formatting
DecodeX15 May 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# ...existing code...
from utils.cache import invalidate_cache


# Add cache reset option when application starts
def initialize_app():
# ...existing code...
# Clear any stale cache data on startup
invalidate_cache()
# ...existing code...


# If there's a refresh functionality, update it to clear relevant caches
def refresh_data():
# ...existing code...
# Clear specific caches that need refreshing
invalidate_cache("albums:get_all_albums")
invalidate_cache("folder_structure:get_folder_structure")
# ...existing code...


# ...existing code...
Loading
Loading