1
1

ToDo.txt 1.7 KB

123456789101112131415161718192021222324
  1. 30April20
  2. 2) Debugger only seems to work if we use the -g command when compiling to include debug inside of executable. Find out if we can do this another way or if we need to
  3. turn that on and off, manually. This may lead to another task of addding this to all other targets in the makefile.
  4. 2May20
  5. 1) Continue with PDF Hummus, get text and image to work on same page using the Shutdown & Continue function.
  6. 2) make the text on page code into one function vs all the separate parts it is in currently.
  7. 5May20
  8. 1) When using modifyPage we found a segment fault - line 104. - will need to figure that out next time.
  9. 2) pdfWriter can be used with multiple pdfPage(s) - we don't seem to need shutdown and continue to get mutliple different pages launched.
  10. 19May20
  11. 1) in ..\PDFHummus-minGW-tools\Readme.txt there are notes describing why Msft implemented the VirtualStore, unfortunately there is unpredictable behavior.
  12. Some people at StackOverFLOW have a suggestion on how to deal with it.
  13. Microsoft does not gurantee that a file will be written and be able to be read. To undo this and figure out where a file is being written/read
  14. the link below may have a possible solution. Since Msft writes files "randomly", when trying to read or modify the same file the program is unable
  15. to access the file. The below link will potentially help in detection of Msft's read write redirect (Msft claims that they do it both directions...).
  16. https://stackoverflow.com/questions/14005081/how-to-detect-file-redirection-to-the-windows-virtualstore
  17. 11JUN20
  18. results/analysis (still doesnt link source files however...)
  19. Have a release and a debug version of executables -> change Makefile
  20. maybe go over Linux? maybe use Valgrind at a later date?