mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
mitmproxy 11.1.0
This commit is contained in:
parent
54829b58c1
commit
277bf97930
4 changed files with 40 additions and 33 deletions
|
|
@ -7,6 +7,9 @@
|
|||
|
||||
## Unreleased: mitmproxy next
|
||||
|
||||
|
||||
## 12 January 2025: mitmproxy 11.1.0
|
||||
|
||||
- **Local Capture Mode** is now available on Linux as well.
|
||||
([#7440](https://github.com/mitmproxy/mitmproxy/pull/7440), @mhils)
|
||||
- mitmproxy now requires Python 3.12 or above.
|
||||
|
|
|
|||
62
mitmproxy/tools/web/static/app.js
vendored
62
mitmproxy/tools/web/static/app.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -6,7 +6,11 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="stylesheet" href=".{{ static_url('vendor.css') }}" />
|
||||
<link rel="stylesheet" href=".{{ static_url('app.css') }}" />
|
||||
<link rel="icon" href=".{{ static_url('images/favicon.ico') }}" type="image/x-icon" />
|
||||
<link
|
||||
rel="icon"
|
||||
href=".{{ static_url('images/favicon.ico') }}"
|
||||
type="image/x-icon"
|
||||
/>
|
||||
<script src=".{{ static_url('app.js') }}"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import os
|
|||
import subprocess
|
||||
import sys
|
||||
|
||||
VERSION = "12.0.0.dev"
|
||||
VERSION = "11.1.0"
|
||||
MITMPROXY = "mitmproxy " + VERSION
|
||||
|
||||
# Serialization format version. This is displayed nowhere, it just needs to be incremented by one
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue