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: AppleWin/AppleWin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: FujiNetWIFI/AppleWin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
Loading
Showing with 4,934 additions and 1,249 deletions.
  1. +3 −0 .gitignore
  2. +733 −644 AppleWin-VS2022.vcxproj
  3. +43 −0 AppleWin-VS2022.vcxproj.filters
  4. +10 −0 firmware/SPoverSLIP/build.bat
  5. +9 −0 firmware/SPoverSLIP/build.sh
  6. BIN firmware/SPoverSLIP/spoverslip.bin
  7. +131 −0 firmware/SPoverSLIP/spoverslip.s
  8. +13 −3 resource/Applewin.rc
  9. +5 −0 resource/resource.h
  10. BIN resource/spoverslip.bin
  11. +30 −0 source/.clang-format
  12. +7 −0 source/Card.cpp
  13. +1 −0 source/Card.h
  14. +4 −0 source/CardManager.cpp
  15. +5 −0 source/CmdLine.cpp
  16. +4 −0 source/Common.h
  17. +1 −0 source/Configuration/Config.h
  18. +57 −13 source/Configuration/PageAdvanced.cpp
  19. +3 −12 source/Configuration/PageDisk.cpp
  20. +1 −0 source/Configuration/PageSound.cpp
  21. +20 −1 source/Configuration/PropertySheetHelper.cpp
  22. +1 −0 source/Configuration/PropertySheetHelper.h
  23. +1 −0 source/Core.h
  24. +660 −0 source/SmartPortOverSlip.cpp
  25. +116 −0 source/SmartPortOverSlip.h
  26. +96 −3 source/Utilities.cpp
  27. +5 −0 source/Utilities.h
  28. +1 −0 source/Windows/WinFrame.cpp
  29. +52 −0 source/devrelay/commands/Close.cpp
  30. +26 −0 source/devrelay/commands/Close.h
  31. +68 −0 source/devrelay/commands/Control.cpp
  32. +35 −0 source/devrelay/commands/Control.h
  33. +50 −0 source/devrelay/commands/Format.cpp
  34. +26 −0 source/devrelay/commands/Format.h
  35. +51 −0 source/devrelay/commands/Init.cpp
  36. +26 −0 source/devrelay/commands/Init.h
  37. +52 −0 source/devrelay/commands/Open.cpp
  38. +26 −0 source/devrelay/commands/Open.h
  39. +81 −0 source/devrelay/commands/Read.cpp
  40. +45 −0 source/devrelay/commands/Read.h
  41. +81 −0 source/devrelay/commands/ReadBlock.cpp
  42. +42 −0 source/devrelay/commands/ReadBlock.h
  43. +51 −0 source/devrelay/commands/Reset.cpp
  44. +26 −0 source/devrelay/commands/Reset.h
  45. +92 −0 source/devrelay/commands/Status.cpp
  46. +42 −0 source/devrelay/commands/Status.h
  47. +79 −0 source/devrelay/commands/Write.cpp
  48. +43 −0 source/devrelay/commands/Write.h
  49. +79 −0 source/devrelay/commands/WriteBlock.cpp
  50. +39 −0 source/devrelay/commands/WriteBlock.h
  51. +67 −0 source/devrelay/service/COMConnection.cpp
  52. +41 −0 source/devrelay/service/COMConnection.h
  53. +55 −0 source/devrelay/service/Connection.cpp
  54. +43 −0 source/devrelay/service/Connection.h
  55. +347 −0 source/devrelay/service/Listener.cpp
  56. +98 −0 source/devrelay/service/Listener.h
  57. +36 −0 source/devrelay/service/Requestor.cpp
  58. +20 −0 source/devrelay/service/Requestor.h
  59. +141 −0 source/devrelay/service/TCPConnection.cpp
  60. +25 −0 source/devrelay/service/TCPConnection.h
  61. +149 −0 source/devrelay/slip/SLIP.cpp
  62. +19 −0 source/devrelay/slip/SLIP.h
  63. +32 −0 source/devrelay/types/Command.h
  64. +120 −0 source/devrelay/types/Request.cpp
  65. +41 −0 source/devrelay/types/Request.h
  66. +10 −0 source/devrelay/types/Response.cpp
  67. +18 −0 source/devrelay/types/Response.h
  68. +18 −0 source/devrelay/util.cpp
  69. +9 −0 source/devrelay/util.h
  70. +299 −299 zlib/zutil.c
  71. +274 −274 zlib/zutil.h
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -183,3 +183,6 @@ UpgradeLog*.htm

# Microsoft Fakes
FakesAssemblies/

# Editor settings
.vscode/*
Loading