aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSoikk2022-08-07 15:41:19 +0200
committerSoikk2022-08-07 15:41:19 +0200
commit5dd0d7700fa98197cdadaa2369d789e092cc0f49 (patch)
tree99d2dd331eb4c887b7895c893b803e34a9c10a77 /TODO
parentf9a7d9cd8a7e603c89d4cc5d98d7f694cc217d85 (diff)
downloadsoikk-DB-5dd0d7700fa98197cdadaa2369d789e092cc0f49.tar.xz
soikk-DB-5dd0d7700fa98197cdadaa2369d789e092cc0f49.tar.zst
Added removing things from db. Ref counts update when removing things. Added changelog.
Diffstat (limited to 'TODO')
-rw-r--r--TODO15
1 files changed, 10 insertions, 5 deletions
diff --git a/TODO b/TODO
index 3ffe276..e7a6030 100644
--- a/TODO
+++ b/TODO
@@ -1,12 +1,17 @@
-TODO Use inttypes.h add, divide and multiply functions
-
-TODO Consider refactoring tables to B-Trees (better performance?)
-
-TODO Add remove* functions, restructure tables functions
+TODO Standarize function names
TODO Get rid of old functionalities (strnatcmp, BM)
----------------------------------------------------------------
+DONE Make it so count of other files/tags gets updated when deleting files/tags
+
+DONE Add remove* functions, restructure tables functions
+
+DONE Add changelog files
+
+DONE Consider refactoring tables to B-Trees (better performance?)
+ NOTE: Ended up using AVL trees instead, only needed for hashes
+
DONE Change DB model from struct row
typedef struct{
char path[MAXPATH];