Skip to content

Commit

Permalink
v2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler authored May 21, 2024
1 parent 5de4131 commit 3380ba8
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/module.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Make
shell: bash
run: |
zip -r "module.zip" * -x ".git" -x "README.md"
zip -r "module.zip" * -x ".git" -x "README.md" -x "CHANGELOG.md"
- name: Publish
uses: softprops/action-gh-release@v1
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<divider textAlign="left"><h1>2.2.2</h1></divider>

- Fixed missing components
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id=mmrl_wpd
name=WiFi Password Viewer for MMRL
version=2.2.1
versionCode=221
version=2.2.2
versionCode=222
author=Der_Googler, veez21 @ xda-developers
description=View all your WiFi passwords inside MMRL
19 changes: 19 additions & 0 deletions system/usr/share/mmrl/config/mmrl_wpd/components/CenterBox.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from "react";
import { Box } from "@mui/material";

export default (props) => {
return (
<Box
component="h4"
sx={{
position: "absolute",
left: "50%",
top: "calc(50% - 56px)",
textAlign: "center",
WebkitTransform: "translate(-50%, -50%)",
transform: "translate(-50%, -50%)",
}}
children={props.children}
/>
);
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Toolbar } from "@mmrl/ui";
import React from "react";

const useBackHandler = include("hooks/useBackHandler.js")

Expand Down
9 changes: 5 additions & 4 deletions system/usr/share/mmrl/config/mmrl_wpd/index.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import React from "react";
import { Page, CodeBlock } from "@mmrl/ui";
import { useNativeStorage } from "@mmrl/hooks";
import { withRequireNewVersion } from "@mmrl/hoc";
import { List, ListItem, ListSubheader, Switch, ListItemText, Divider, Typography, Stack } from "@mui/material";
import { useNativeStorage } from "@mmrl/hooks";
import { CodeBlock, Page } from "@mmrl/ui";
import { Divider, List, ListItem, ListItemText, ListSubheader, Switch, Typography } from "@mui/material";
import React from "react";

const RenderToolbar = include("components/RenderToolbar.jsx");
const CenterBox = include("components/CenterBox.jsx");

const useNetworks = include("hooks/useNetworks.js");
const useBackHandler = include("hooks/useBackHandler.js")
Expand Down

0 comments on commit 3380ba8

Please sign in to comment.