Skip to content

Releases: yak1ex/privoxy-enhanced

privoxy-3.0.34-stable_y2

23 Jul 08:43
Compare
Choose a tag to compare

There should be no functional changes.

  • Fix minor merge issues.
  • Fix minor style issues.
  • Bump version, missing for y1.

privoxy-3.0.34-stable_y1

22 Jul 05:33
Compare
Choose a tag to compare
  • Feature: Add win32 message handling to query/update configuration status, which can be changed by GUI (GH-5)

The message ID can be gotten by calling RegisterWindowMessage("PrivoxyEnhancedQueryMessage").
wParam represents query/update target and command. lParam is used for +2 update commands.

  • ID_FORWARD_CLASS(6000): returns MAX_FORWARD_CLASSES(defaults to 10)
  • ID_FORWARD_CLASS+1(6001): returns the current forward class status. LSB represents ID 0, so 0b110 represents that ID 0 is disabled and ID 1 and 2 are enabled.
  • ID_FORWARD_CLASS+2(6002): updates status by lParam and returns updated forward class status
  • ID_MANUAL_TAGGER(7000): returns MAX_FORWARD_CLASSES(defaults to 10)
  • ID_MANUAL_TAGGER+1(7001): returns the current manual tagger status. LSB represents ID 0, so 0b011 represents that ID 0 and 1 are enabled and ID 2 is disabled.
  • ID_MANUAL_TAGGER+2(7002): updates status by lParam and returns updated manual tagger status

privoxy-3.0.34-stable_y0

15 Jul 09:54
Compare
Choose a tag to compare
  • Sync with privoxy 3.0.34.
  • From this release, it is included not only modified files but also unmodified files from official distribution.
    • Modified files from official win32 package are privoxy.exe, templates/{edit-actions-for-url,forward-class*,show-status}.
  • Along with official distribution, static linking is used.
  • Feature configuation is also sync with official distribution. Options specified for configure are shown in the following build procedure.
autoheader
autoconf
env CC=i686-w64-mingw32-gcc ./configure --enable-mingw32 --disable-pthread --enable-static-linking --enable-extended-statistics --enable-pcre-host-patterns --enable-strptime-sanity-checks --with-mbedtls --with-brotli
make
  • official feature with the above enable options
    • FEATURE_BROTLI
    • FEATURE_EXTENDED_STATISTICS
    • FEATURE_HTTPS_INSPECTION
    • FEATURE_PCRE_HOST_PATTERNS
    • FEATURE_STRPTIME_SANITY_CHECKS
  • feature added by this patch series
    • FEATURE_ADD_REFERER
    • FEATURE_FORWARD_CLASS
    • FEATURE_MANUAL_TAGGER
    • FEATURE_REQUIRED_TAG