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

Undiscord v5 #351

Merged
merged 30 commits into from
May 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e072ea9
new UI
victornpb May 1, 2022
b7abddd
looking good
victornpb May 1, 2022
2cb9e9d
finished UI prototype
victornpb May 1, 2022
abacf1c
implemented metadata block generator
victornpb May 1, 2022
7123175
UI files
victornpb May 1, 2022
4de03b5
added rollup to project
victornpb May 1, 2022
b9b986b
rollup strings plugin as template string
victornpb May 1, 2022
78ed0d6
added js files
victornpb May 1, 2022
c7c9f33
moving files
victornpb May 1, 2022
e5879eb
replacing placeholders
victornpb May 1, 2022
60d1f91
moved utils
victornpb May 1, 2022
de11232
fixed author guild channel buttons
victornpb May 1, 2022
e3cc5f8
dev mode metadata
victornpb May 1, 2022
ad2e688
fix interpolations and a few buttons
victornpb May 1, 2022
8e9a00a
project stuff
victornpb May 1, 2022
34d9554
get ids module
victornpb May 1, 2022
aa35765
almost working
victornpb May 1, 2022
d37b52f
changes a few messages
victornpb May 1, 2022
62a14df
Allowed to move and resize the window
victornpb May 1, 2022
00b3772
updated help links
victornpb May 1, 2022
8f3d0b6
mutation observer throttling
victornpb May 1, 2022
5f54284
implemented message picker
victornpb May 1, 2022
78227e7
final fixes
victornpb May 2, 2022
a5f6204
improved message picker style
victornpb May 2, 2022
7642049
build
victornpb May 2, 2022
f1d996a
discontinuing popup version
victornpb May 2, 2022
6da4524
lint css, remove -webkit and -ms
victornpb May 2, 2022
c18273c
comb css
victornpb May 2, 2022
3ffccc2
fix code factor issue
victornpb May 2, 2022
581b897
build
victornpb May 2, 2022
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
33 changes: 33 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": ["error", 2],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-unused-vars": [
"warn",
{
"args": "none"
}
],
"no-console": "off",
"no-debugger": "warn",
"no-unused-expressions": "error",
"no-trailing-spaces": "error",
"no-undef": "error"

}
}
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Post here instead 👉 https://github.com/victornpb/undiscord/discussions
title: '🛑 DO NOT USE THIS FORM FOR REQUESTS / IDEAS! 🛑'
labels: ''
assignees: ''

---

👇 PLEASE POST YOUR IDEA OR REQUEST HERE INSTEAD 👇
Expand Down
Loading