From 3da12ca2d31fd57537efbc6640fae98c14ee52c8 Mon Sep 17 00:00:00 2001 From: wackymalton Date: Tue, 24 Dec 2024 05:46:48 +0000 Subject: [PATCH 1/5] main --- .devcontainer/devcontainer.json | 39 +++++++++++++++++++++++++++++++++ readme | 11 ++++++++++ 2 files changed, 50 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 readme diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..96950a1096 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,39 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/powershell +{ + "name": "PowerShell", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/powershell:lts-debian-11", + "features": { + "ghcr.io/devcontainers/features/common-utils:2": { + "installZsh": "true", + "username": "vscode", + "upgradePackages": "false", + "nonFreePackages": "true" + } + }, + + "postCreateCommand": "sudo chsh vscode -s \"$(which pwsh)\"", + + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + // Set *default* container specific settings.json values on container create. + "settings": { + "terminal.integrated.defaultProfile.linux": "pwsh" + }, + + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "ms-vscode.powershell" + ] + } + } + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} diff --git a/readme b/readme new file mode 100644 index 0000000000..27779abeae --- /dev/null +++ b/readme @@ -0,0 +1,11 @@ +#### High Performance DAC + +#### - This module enables the "High Performance DAC" mode of Qualcomm's WCD9xx DAC to maximize its power and achieve the best audio quality possible. + +##### • `Every phone powered by a Qualcomm processor has a built-in WCD9xx Audio DAC, but it is rarely configured to be used to its full potential by OEMs. By enabling High-Performance Mode, the audio quality of Qualcomm-powered devices will not only receive a boost in volume but will also sound clearer and crisper.` + +##### • `Requires Kernel Support` + +##### - INSTALLATION: Simply flash via any module manager and reboot. + +###### Disclaimer: Naturally, you take all the responsibility for what happens to your device when you start messing around with things. I (Akera) will not be responsible for ANY damage caused to anyone's devices due to the use of this module. \ No newline at end of file From 797dc2209dbf6f04679929d951444119d6fd8e08 Mon Sep 17 00:00:00 2001 From: wackymalton Date: Tue, 24 Dec 2024 11:26:57 +0000 Subject: [PATCH 2/5] main --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 96950a1096..d53fc76caf 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,7 @@ "image": "mcr.microsoft.com/powershell:lts-debian-11", "features": { "ghcr.io/devcontainers/features/common-utils:2": { - "installZsh": "true", + "installZsh": "true" "username": "vscode", "upgradePackages": "false", "nonFreePackages": "true" From b5416c81a0782a5cbf2f7559ddd2faab6c93a612 Mon Sep 17 00:00:00 2001 From: wackymalton Date: Tue, 24 Dec 2024 11:47:33 +0000 Subject: [PATCH 3/5] TY --- .devcontainer/devcontainer.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d53fc76caf..23e128d769 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,10 +6,13 @@ "image": "mcr.microsoft.com/powershell:lts-debian-11", "features": { "ghcr.io/devcontainers/features/common-utils:2": { - "installZsh": "true" - "username": "vscode", - "upgradePackages": "false", - "nonFreePackages": "true" + "installZsh": true, + "installOhMyZsh": true, + "installOhMyZshConfig": true, + "upgradePackages": true, + "username": "automatic", + "userUid": "automatic", + "userGid": "automatic" } }, From e9d5f635ce64aacca8adeca45b0b03a8a83db6d6 Mon Sep 17 00:00:00 2001 From: wackymalton Date: Tue, 24 Dec 2024 13:37:09 +0000 Subject: [PATCH 4/5] main --- .devcontainer/devcontainer.json | 2 +- .devcontainer/wackymalton | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 160000 .devcontainer/wackymalton diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 23e128d769..054978e3e9 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,7 +1,7 @@ // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/powershell { - "name": "PowerShell", + "name": "codr", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/powershell:lts-debian-11", "features": { diff --git a/.devcontainer/wackymalton b/.devcontainer/wackymalton new file mode 160000 index 0000000000..b81ee247d5 --- /dev/null +++ b/.devcontainer/wackymalton @@ -0,0 +1 @@ +Subproject commit b81ee247d5ba6792092453cda6dee76e24f1f948 From 5286215f77144459be601b009cb69741d732f991 Mon Sep 17 00:00:00 2001 From: wackymalton Date: Tue, 24 Dec 2024 14:04:09 +0000 Subject: [PATCH 5/5] good --- .vscode/tasks.json | 26 ++++++++++++++++++++++++++ wackymalton | 1 + 2 files changed, 27 insertions(+) create mode 100644 .vscode/tasks.json create mode 160000 wackymalton diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000..f97e9e6b2c --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "type": "shell", + "command": "msbuild", + "args": [ + // Ask msbuild to generate full paths for file names. + "/property:GenerateFullPaths=true", + "/t:build", + // Do not generate summary otherwise it leads to duplicate errors in Problems panel + "/consoleloggerparameters:NoSummary" + ], + "group": "build", + "presentation": { + // Reveal the output only if unrecognized errors occur. + "reveal": "silent" + }, + // Use the standard MS compiler pattern to detect errors, warnings and infos + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/wackymalton b/wackymalton new file mode 160000 index 0000000000..b81ee247d5 --- /dev/null +++ b/wackymalton @@ -0,0 +1 @@ +Subproject commit b81ee247d5ba6792092453cda6dee76e24f1f948