Skip to content

Commit

Permalink
Bump version v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdbai committed Dec 2, 2023
1 parent 3495eba commit 0e930b1
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 52 deletions.
102 changes: 51 additions & 51 deletions Maple.App/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp rescap">
<Identity
Name="56263bdbai.Maple"
Publisher="CN=bdbai"
Version="0.9.0.0" />
<mp:PhoneIdentity PhoneProductId="b18d4afd-fd70-4477-8391-d605077b7858" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>Maple</DisplayName>
<PublisherDisplayName>bdbai</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Maple_App">
<uap:VisualElements DisplayName="Maple" Description="Maple flowers are green, yellow, orange or red."
Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Assets\SmallTile.png" Square310x310Logo="Assets\LargeTile.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo"/>
<uap:ShowOn Tile="wide310x150Logo"/>
<uap:ShowOn Tile="square310x310Logo"/>
</uap:ShowNameOnTiles>
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
<Extensions>
<Extension Category="windows.backgroundTasks" Executable="$targetnametoken$.exe" EntryPoint="Maple_Task.VpnTask" ResourceGroup="tunnel">
<BackgroundTasks>
<uap:Task Type="vpnClient" />
</BackgroundTasks>
</Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<Capability Name="privateNetworkClientServer" />
<Capability Name="internetClientServer" />
<rescap:Capability Name="networkingVpnProvider" />
</Capabilities>
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp rescap">
<Identity
Name="56263bdbai.Maple"
Publisher="CN=bdbai"
Version="0.9.1.0" />
<mp:PhoneIdentity PhoneProductId="b18d4afd-fd70-4477-8391-d605077b7858" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>Maple</DisplayName>
<PublisherDisplayName>bdbai</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Maple_App">
<uap:VisualElements DisplayName="Maple" Description="Maple flowers are green, yellow, orange or red."
Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Assets\SmallTile.png" Square310x310Logo="Assets\LargeTile.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo"/>
<uap:ShowOn Tile="wide310x150Logo"/>
<uap:ShowOn Tile="square310x310Logo"/>
</uap:ShowNameOnTiles>
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
<Extensions>
<Extension Category="windows.backgroundTasks" Executable="$targetnametoken$.exe" EntryPoint="Maple_Task.VpnTask" ResourceGroup="tunnel">
<BackgroundTasks>
<uap:Task Type="vpnClient" />
</BackgroundTasks>
</Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<Capability Name="privateNetworkClientServer" />
<Capability Name="internetClientServer" />
<rescap:Capability Name="networkingVpnProvider" />
</Capabilities>
</Package>
2 changes: 1 addition & 1 deletion leaf
Submodule leaf updated 75 files
+2 −2 .github/workflows/ci.yml
+2 −2 .github/workflows/release.yml
+3,038 −0 Cargo.lock
+1 −0 Cargo.toml
+5 −0 Makefile
+1 −1 leaf-bin/Cargo.toml
+1 −1 leaf-bin/src/main.rs
+4 −0 leaf-ffi/Cargo.toml
+4 −4 leaf-ffi/src/lib.rs
+53 −51 leaf/Cargo.toml
+2 −1 leaf/src/app/api/api_server.rs
+23 −21 leaf/src/app/dispatcher.rs
+14 −10 leaf/src/app/dns_client.rs
+8 −6 leaf/src/app/fake_dns.rs
+2 −2 leaf/src/app/inbound/cat_listener.rs
+16 −5 leaf/src/app/inbound/network_listener.rs
+94 −129 leaf/src/app/logger.rs
+11 −2 leaf/src/app/nat_manager.rs
+60 −19 leaf/src/app/outbound/manager.rs
+7 −2 leaf/src/app/outbound/mod.rs
+2 −1 leaf/src/app/outbound/selector.rs
+4 −4 leaf/src/app/outbound/selector_cache.rs
+4 −4 leaf/src/app/router.rs
+19 −1 leaf/src/app/stat_manager.rs
+13 −8 leaf/src/common/sniff.rs
+29 −0 leaf/src/config/conf/config.rs
+17 −7 leaf/src/config/geosite.rs
+3 −0 leaf/src/config/internal/config.proto
+105 −38 leaf/src/config/internal/config.rs
+2 −0 leaf/src/config/json/config.rs
+33 −22 leaf/src/lib.rs
+8 −8 leaf/src/mobile/callback.rs
+16 −0 leaf/src/option/mod.rs
+84 −14 leaf/src/proxy/amux/mod.rs
+39 −10 leaf/src/proxy/amux/outbound/stream.rs
+10 −8 leaf/src/proxy/chain/inbound/mod.rs
+3 −3 leaf/src/proxy/chain/outbound/datagram.rs
+7 −1 leaf/src/proxy/chain/outbound/stream.rs
+1 −0 leaf/src/proxy/direct/stream.rs
+1 −0 leaf/src/proxy/drop/stream.rs
+53 −17 leaf/src/proxy/failover/datagram.rs
+3 −2 leaf/src/proxy/failover/mod.rs
+40 −14 leaf/src/proxy/failover/stream.rs
+213 −68 leaf/src/proxy/http/inbound/stream.rs
+23 −14 leaf/src/proxy/mod.rs
+1 −0 leaf/src/proxy/obfs/http.rs
+1 −0 leaf/src/proxy/obfs/tls.rs
+55 −104 leaf/src/proxy/quic/inbound/datagram.rs
+38 −68 leaf/src/proxy/quic/outbound/stream.rs
+1 −0 leaf/src/proxy/redirect/stream.rs
+1 −1 leaf/src/proxy/shadowsocks/inbound/stream.rs
+52 −2 leaf/src/proxy/shadowsocks/outbound/stream.rs
+43 −44 leaf/src/proxy/shadowsocks/shadow.rs
+1 −1 leaf/src/proxy/socks/inbound/stream.rs
+7 −5 leaf/src/proxy/socks/outbound/datagram.rs
+3 −2 leaf/src/proxy/socks/outbound/stream.rs
+13 −3 leaf/src/proxy/static/stream.rs
+16 −21 leaf/src/proxy/tls/outbound/stream.rs
+29 −36 leaf/src/proxy/trojan/inbound/stream.rs
+22 −24 leaf/src/proxy/trojan/outbound/datagram.rs
+20 −2 leaf/src/proxy/trojan/outbound/stream.rs
+1 −0 leaf/src/proxy/tryall/datagram.rs
+3 −1 leaf/src/proxy/tryall/stream.rs
+32 −19 leaf/src/proxy/tun/inbound.rs
+1 −0 leaf/src/proxy/vmess/outbound/stream.rs
+6 −7 leaf/src/proxy/ws/inbound/stream.rs
+17 −14 leaf/src/proxy/ws/outbound/stream.rs
+5 −0 leaf/src/proxy/ws/stream.rs
+3 −4 leaf/src/session.rs
+1 −1 leaf/src/util.rs
+28 −23 leaf/tests/common.rs
+6 −0 leaf/tests/test_in_chain_1.rs
+2 −0 leaf/tests/test_quic_trojan.rs
+6 −0 leaf/tests/test_ws_trojan.rs
+14 −3 scripts/build_apple_xcframework.sh

0 comments on commit 0e930b1

Please sign in to comment.