Compare commits

..

17 Commits

Author SHA1 Message Date
Michael Scire
b4ca7fce9e docs: expand dns_mitm wildcard wording 2021-02-02 11:35:57 -08:00
Michael Scire
7872fc0299 dns.mitm: add documentation 2021-02-02 11:11:06 -08:00
Michael Scire
874f5b22e0 dns.mitm: support % in hosts file as stand-in for environment identifier 2021-02-02 00:38:04 -08:00
Michael Scire
5b0821cb03 dns.mitm: fix ABORT_UNLESS -> ABORT 2021-02-01 13:54:55 -08:00
Michael Scire
b93fd40550 dns.mitm: hint = {} fix in options 2021-02-01 13:43:52 -08:00
Michael Scire
a4d7c90da7 dns.mitm: add GetAddrInfo redir, AtmosphereReloadHostsFile, debug logging control 2021-02-01 13:40:23 -08:00
Michael Scire
4357086181 dns.mitm: fix inverted hostname detection 2021-01-31 09:10:24 -08:00
Michael Scire
ec655069d0 meso: update for new fatal encoding 2021-01-31 09:06:54 -08:00
Michael Scire
2b5e8b5c65 ams: take three tries to edit a structure 2021-01-31 09:02:18 -08:00
Michael Scire
f31ecb5c23 ams: afsr0 -> 32 bits in fatal error 2021-01-31 09:00:22 -08:00
Michael Scire
604f899553 ams: fix fatal error context 2021-01-31 08:57:48 -08:00
Michael Scire
25d7ab88e1 dns.mitm: support wildcards in hosts 2021-01-31 08:27:56 -08:00
Michael Scire
a231d7164b dns.mitm: edit default behavior/hosts filenames 2021-01-31 08:04:25 -08:00
Michael Scire
a804e62293 dns.mitm: fix issue in host file parsing 2021-01-30 20:16:45 -08:00
Michael Scire
6706fa49dc dns.mitm: parse redirections from hosts file 2021-01-30 19:50:49 -08:00
Michael Scire
3fd094436e dns: implement GetHostByName redirection (backend TODO) 2021-01-30 17:23:14 -08:00
Michael Scire
45709aa9cd dns: skeleton passthrough mitm 2021-01-30 13:11:39 -08:00
3 changed files with 4 additions and 19 deletions

View File

@@ -1,19 +1,4 @@
# Changelog # Changelog
## 0.18.0
+ A new mitm module was added (`dns.mitm`).
+ This provides a highly configurable mechanism for redirecting DNS resolution requests.
+ By default atmosphère redirects resolution requests for official telemetry servers to a loopback address.
+ Documentation on how to configure `dns.mitm` to meet your more specific needs may be found [here](https://github.com/Atmosphere-NX/Atmosphere/blob/master/docs/features/dns_mitm.md).
+ The service framework API (`sf`) was refactored to be more accurate to official logic and greatly reduce memory requirements.
+ The comparison of atmosphère module memory usage versus Nintendo's found [here](https://github.com/Atmosphere-NX/Atmosphere/wiki/Memory-Comparisons) was updated to reflect this.
+ **Please Note**: If you are a developer using the libstratosphere service APIs, some updating may be required. Contact SciresM#0524 on discord for assistance if required.
+ A number of deprecations were removed, following a general codebase cleanup:
+ The `sm` extension to not unregister services on connection close was superseded by official opt-in logic in 11.0.0, and has been removed in favor of official logic.
+ This should have zero impact on users.
+ The temporary `hid-mitm` added in 0.9.0 has finally been removed, following over a year of deprecation.
+ There shouldn't be any homebrew in use still affected by this, but the situation will be monitored.
+ If this is somehow still a real issue, an unaffiliated hid mitm sysmodule providing the same functionality can be created and released, separate from atmosphère itself.
+ Several issues were fixed, and usability and stability were improved.
## 0.17.1 ## 0.17.1
+ A number of atmosphère's modules were using more memory than their Nintendo equivalent's in 0.17.0; a number of code generatio tweaks have been applied to fix this across the board. + A number of atmosphère's modules were using more memory than their Nintendo equivalent's in 0.17.0; a number of code generatio tweaks have been applied to fix this across the board.
+ A detailed comparison of atmosphère module memory usage versus Nintendo's was made and can be found [here](https://github.com/Atmosphere-NX/Atmosphere/wiki/Memory-Comparisons). + A detailed comparison of atmosphère module memory usage versus Nintendo's was made and can be found [here](https://github.com/Atmosphere-NX/Atmosphere/wiki/Memory-Comparisons).

View File

@@ -6,7 +6,7 @@
[subrepo] [subrepo]
remote = https://github.com/Atmosphere-NX/Atmosphere-libs remote = https://github.com/Atmosphere-NX/Atmosphere-libs
branch = master branch = master
commit = 90d85295bb9e7917475e3aee13fe20311d73df0e commit = 6c11c07e2a7f03952a4e70eb89b47bf528de39c6
parent = 63440cab18f4a87e602d44d127cb3f70b652d05b parent = 9e104bb83f1302e9f126542fbf57c7f666aae953
method = merge method = merge
cmdver = 0.4.1 cmdver = 0.4.1

View File

@@ -16,8 +16,8 @@
#pragma once #pragma once
#define ATMOSPHERE_RELEASE_VERSION_MAJOR 0 #define ATMOSPHERE_RELEASE_VERSION_MAJOR 0
#define ATMOSPHERE_RELEASE_VERSION_MINOR 18 #define ATMOSPHERE_RELEASE_VERSION_MINOR 17
#define ATMOSPHERE_RELEASE_VERSION_MICRO 0 #define ATMOSPHERE_RELEASE_VERSION_MICRO 1
#define ATMOSPHERE_RELEASE_VERSION ATMOSPHERE_RELEASE_VERSION_MAJOR, ATMOSPHERE_RELEASE_VERSION_MINOR, ATMOSPHERE_RELEASE_VERSION_MICRO #define ATMOSPHERE_RELEASE_VERSION ATMOSPHERE_RELEASE_VERSION_MAJOR, ATMOSPHERE_RELEASE_VERSION_MINOR, ATMOSPHERE_RELEASE_VERSION_MICRO