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

Add Entry Tags #202

Open
wants to merge 34 commits into
base: v3
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3a2350b
Added baseplate, will require much more changes
selectdev Mar 19, 2022
af5f4c8
Formatted code because ugly
selectdev Mar 19, 2022
298e0dc
Made some mini design changes
selectdev Mar 19, 2022
92a94b7
db search for tags now supported, also in api
stjet Mar 19, 2022
9bf26a6
api accepts query param, added search bar
stjet Mar 20, 2022
6d9a650
Fixed some mini bugs
selectdev Mar 21, 2022
a3efbfc
Added space into CONTRIBUTING.md to trigger Vercel
selectdev Mar 21, 2022
f98fe33
uhh, fixed search and broke database
selectdev Mar 21, 2022
81f9e34
bug fix
stjet Mar 21, 2022
07c595c
another fix?
stjet Mar 21, 2022
e894c4c
bug fix for reals
stjet Mar 21, 2022
081969b
add basic api docs
stjet Mar 22, 2022
62c5017
Made .replit automatically format files before starting
selectdev Mar 23, 2022
39d03f6
you can now add tags to entries
stjet Mar 24, 2022
413c4f9
Made it so the register-commands actually ends rather than stays runn…
selectdev Mar 26, 2022
95e4672
clicking on tags search - does not work completely (onclicks overlap)
stjet Mar 28, 2022
1fe6935
Merge branch 'v3' into add-entry-tags
selectdev Apr 8, 2022
d555303
fixed tag search with extensive help of select, fixed the actual db s…
stjet Jun 18, 2022
242f601
Replaced div with a
selectdev Jun 19, 2022
d9ed894
Update src/routes/edit/[slug].svelte
selectdev Jun 19, 2022
4d6505e
Update src/lib/EntryPreview.svelte
selectdev Jun 19, 2022
12dfe1c
Update src/lib/database/entries.ts
selectdev Jun 19, 2022
e5e63de
Update src/lib/discord/scripts/registerCommands.ts
selectdev Jun 19, 2022
a1dd1b5
Update src/routes/entry/[slug].svelte
selectdev Jun 19, 2022
1759533
Update src/routes/index.svelte
stjet Jun 19, 2022
360e4bb
updates
stjet Jun 19, 2022
dfe3fcf
Merge branch 'v3' into add-entry-tags
stjet Jun 19, 2022
5189b5d
Formatted
selectdev Jun 19, 2022
dcd088f
mat review compliance thing
stjet Jun 19, 2022
d3c90e2
Update src/lib/discord/scripts/registerCommands.ts
selectdev Jul 7, 2022
1ffc71d
Update src/routes/edit/[slug].svelte
selectdev Jul 7, 2022
54e5f5e
Update src/routes/api/entries.json.ts
selectdev Jul 7, 2022
271549f
Formatted
selectdev Jul 7, 2022
558ebed
Merge branch 'v3' into add-entry-tags
stjet Nov 13, 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
Prev Previous commit
Next Next commit
Merge branch 'v3' into add-entry-tags
  • Loading branch information
stjet authored Jun 19, 2022
commit dfe3fcf3c35422cc9f8008d7ec574641aaf6f7ba
2 changes: 1 addition & 1 deletion src/lib/database/entries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export interface Entry {
slug: string
visibility: Visibility
createdAt: Date
tags: string[]
editedAt: Date
tags: string[]
}

let triedCreatingSearchIndex = false
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.