@@ -2,15 +2,13 @@ import { storage } from "@vendetta/plugin"
22import { useProxy } from "@vendetta/storage"
33import { findByName } from "@vendetta/metro" ;
44
5- import VersionChange from "../../lib/components/versionChange" ;
6- import updates from "./update" ;
7-
85import { CustomMentionsSetting , ReplyAlertSetting } from "./pages/utils/replyAlertSetting" ;
96import NoShareSetting from "./pages/utils/NoShareSetting" ;
107import CAT from "./pages/utils/cat" ;
118import QuickIdSetting from "./pages/utils/quickIdSetting" ;
129import CustomUsernameColorPage from "./pages/utils/cuc" ;
1310import CustomRoleIconPage from "./pages/utils/cri" ;
11+ import CustomClanBadge from "./pages/utils/ct" ;
1412import { Forms , General } from "@vendetta/ui/components" ;
1513
1614// const HelpMessage = findByName("HelpMessage");
@@ -39,6 +37,7 @@ export default () => {
3937 createList ( "noshare" , "No Share" , "Toggle No Share" , null , NoShareSetting ) ,
4038 createList ( "customUsernameColor" , "CUC" , "Toggle Custom Username Color" , null , CustomUsernameColorPage ) ,
4139 createList ( "customRoleIcon" , "CRI" , "Toggle Custom Role Icon" , null , CustomRoleIconPage ) ,
40+ createList ( "customClan" , "CCB" , "Toggle Custom Clan Badge" , null , CustomClanBadge ) ,
4241 createList ( "ralert" , "Reply Alert" , "Toggle Settings" , null , ReplyAlertSetting ) ,
4342 createList ( "customMention" , "Custom Mentions" , "Toggle Custom Mentions Settings" , null , CustomMentionsSetting ) ,
4443 createList ( "removeDecor" , "I HATE AVATAR DECORATIONS" , "Toggle Remove Avatar Decoration" , null , null ) ,
@@ -48,9 +47,11 @@ export default () => {
4847 < ScrollView >
4948 < View style = { {
5049 borderRadius : 10 ,
51- backgroundColor : "rgba(0, 12, 46, 0.15)"
50+ backgroundColor : "rgba(0, 12, 46, 0.15)" ,
51+ marginBottom : 50 ,
52+ marginTop : 20
5253 } } >
53- { /*<HelpMessage messageType={0}>"This Plugin development is moved to new Repository "</HelpMessage>*/ }
54+ { /*{ <HelpMessage messageType={0}>"To use a feature, please enable them and their respective setting open. "</HelpMessage> } */ }
5455 < FormRow
5556 label = "Debug"
5657 subLabel = "enable console logging"
@@ -99,28 +100,6 @@ export default () => {
99100 }
100101 </ View >
101102 < FormDivider />
102- {
103- updates && (
104- < View style = { {
105- paddingBottom : 36
106- } } >
107- < FormSection title = "Updates" >
108- < View style = { {
109- margin : 5 ,
110- padding : 5 ,
111- borderRadius : 10 ,
112- backgroundColor : "rgba(59, 30, 55, 0.15)"
113- } } >
114- {
115- updates . map ( ( data , index ) => {
116- return < VersionChange change = { data } index = { index } totalIndex = { updates . length } />
117- } )
118- }
119- </ View >
120- </ FormSection >
121- </ View >
122- )
123- }
124103 </ ScrollView >
125104 </ > )
126105}
0 commit comments