Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Anish-M-code/Metadata-Remover
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1
Choose a base ref
...
head repository: Anish-M-code/Metadata-Remover
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 3,796 additions and 722 deletions.
  1. +0 −4 C Source code/README.md
  2. +0 −300 C Source code/run.c
  3. BIN C Source code/run.c.sig
  4. +0 −4 Python Source Code/Fix/__init__.py
  5. +0 −2 Python Source Code/Fix/__main__.py
  6. +0 −120 Python Source Code/Fix/commons.py
  7. +0 −38 Python Source Code/Fix/emrt.py
  8. +0 −178 Python Source Code/Fix/mrt.py
  9. +0 −66 Python Source Code/Fix/v9.py
  10. +0 −1 Python Source Code/Readme.md
  11. +29 −9 README.md
  12. +25 −0 SECURITY.md
  13. BIN Screen Shots/Results.JPG
  14. BIN Screen Shots/Scan.JPG
  15. +12 −0 Source Code/C Source code/Install.md
  16. +55 −0 Source Code/C Source code/Instructions.txt
  17. +4 −0 Source Code/C Source code/Makefile
  18. +6 −0 Source Code/C Source code/README.md
  19. +12 −0 Source Code/C Source code/common.h
  20. +396 −0 Source Code/C Source code/run.c
  21. BIN Source Code/C Source code/run.c.sig
  22. +75 −0 Source Code/GUI_Qt6_Source_Code/CMakeLists.txt
  23. +435 −0 Source Code/GUI_Qt6_Source_Code/CMakeLists.txt.user
  24. +28 −0 Source Code/GUI_Qt6_Source_Code/backgroundwidget.h
  25. +86 −0 Source Code/GUI_Qt6_Source_Code/contentreader.cpp
  26. +45 −0 Source Code/GUI_Qt6_Source_Code/contentreader.h
  27. +31 −0 Source Code/GUI_Qt6_Source_Code/downloadprogress.cpp
  28. +26 −0 Source Code/GUI_Qt6_Source_Code/downloadprogress.h
  29. +77 −0 Source Code/GUI_Qt6_Source_Code/downloadprogress.ui
  30. +32 −0 Source Code/GUI_Qt6_Source_Code/icon.svg
  31. +16 −0 Source Code/GUI_Qt6_Source_Code/main.cpp
  32. +532 −0 Source Code/GUI_Qt6_Source_Code/mainwindow.cpp
  33. +67 −0 Source Code/GUI_Qt6_Source_Code/mainwindow.h
  34. +159 −0 Source Code/GUI_Qt6_Source_Code/mainwindow.ui
  35. +10 −0 Source Code/Python Source Code/MRT/.gitignore
  36. +136 −0 Source Code/Python Source Code/MRT/commons.py
  37. +53 −0 Source Code/Python Source Code/MRT/libmat2/__init__.py
  38. +47 −0 Source Code/Python Source Code/MRT/libmat2/abstract.py
  39. +448 −0 Source Code/Python Source Code/MRT/libmat2/archive.py
  40. +90 −0 Source Code/Python Source Code/MRT/libmat2/audio.py
  41. +60 −0 Source Code/Python Source Code/MRT/libmat2/parser_factory.py
  42. +128 −0 Source Code/Python Source Code/MRT/libmat2/torrent.py
  43. +125 −0 Source Code/Python Source Code/MRT/libmat2/web.py
  44. +273 −0 Source Code/Python Source Code/MRT/mat2.py
  45. +147 −0 Source Code/Python Source Code/MRT/mrt.py
  46. +128 −0 Source Code/Python Source Code/MRT/runme.py
  47. +3 −0 Source Code/Python Source Code/Readme.md
4 changes: 0 additions & 4 deletions C Source code/README.md

This file was deleted.

300 changes: 0 additions & 300 deletions C Source code/run.c

This file was deleted.

Binary file removed C Source code/run.c.sig
Binary file not shown.
4 changes: 0 additions & 4 deletions Python Source Code/Fix/__init__.py

This file was deleted.

2 changes: 0 additions & 2 deletions Python Source Code/Fix/__main__.py

This file was deleted.

Loading