Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(plugin): add managequickcss plugin #1357

Open
wants to merge 35 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
15c53d1
add importquickcss plugin
Jun 27, 2023
9262f56
support multple snippets
Jun 27, 2023
67fb643
arrive in the 21st century
Jun 27, 2023
87f5ac0
improvements
Jun 28, 2023
4654665
add ability to remove snippets
Jun 28, 2023
18252e2
rebrand the plugin, as it does a little more now
Jun 28, 2023
c37152b
clean redundant args
Jun 28, 2023
88e898e
implement caching, performance go vroom
Jun 28, 2023
17487dd
more improvements, because yes
Jun 28, 2023
34ac737
another sheeshload of improvements
Jun 28, 2023
69e8041
implement import all & remove all
Jun 28, 2023
0d17d21
apply suggestion
Jun 28, 2023
d78b88d
apply suggestion
Jun 28, 2023
65561aa
null check
Jun 28, 2023
188a5fe
move from setting to tb action
Jun 29, 2023
3072277
adjust sub menu order
Jun 29, 2023
b24bce7
sync ids instead of clearing
Jun 29, 2023
0059086
automatically sync snippet ids
Jun 29, 2023
5c1b235
thonk
Jun 29, 2023
333ac65
apply suggestion
Jul 14, 2023
3e929b7
apply suggestion
Jul 14, 2023
658e387
apply suggestion
Jul 14, 2023
7044fbf
remove redundant function, thonk
Jul 14, 2023
608f612
use proper settingsstore
Jul 14, 2023
1581cce
atomic datastore updates
Jul 14, 2023
5aa80a9
inline types -> interface
Jul 14, 2023
832db35
use set instead of array
Jul 14, 2023
f615dbe
adjust css listener
Jul 14, 2023
1fbf3c6
apply suggestion
Jul 14, 2023
96f57bd
apply suggestion
Jul 14, 2023
655088f
minor adjustments
Jul 14, 2023
e83782e
update regex
Jul 14, 2023
ccde3d0
more adjusting
Jul 14, 2023
a556e88
couple of improvements
Jul 28, 2023
99a11e6
why won't you work for other people :(
Jul 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
apply suggestion
Co-authored-by: V <vendicated@riseup.net>
  • Loading branch information
Adrian Castro and Vendicated committed Aug 25, 2023
commit 3e929b7b97b5fc1f702386376740109a473eb363
2 changes: 1 addition & 1 deletion src/plugins/manageQuickCss.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ export default definePlugin({
authors: [Devs.castdrian, Devs.Ven],
description: "Allows you to import and remove QuickCSS snippets contained within messages",
settings,
cssListener: undefined as ReturnType<typeof VencordNative.quickCss.addChangeListener> | undefined,
cssListener: null as ReturnType<typeof VencordNative.quickCss.addChangeListener> | null,

async start() {
await fetchSnippetIds();
Expand Down