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

Organize Previews: Add page to sort thumbnail previews #586

Merged
merged 24 commits into from
Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
dbdd4a4
feat(Next > Organize Previews): Add page to sort thumbnail previews
danactive Sep 10, 2023
a67f041
Next > Organize Previews: Move Filesystem to modal
danactive Sep 10, 2023
e5da75e
Next > Organize Previews: Fix background colour
danactive Sep 12, 2023
3d3a680
feat(Next > Organize Previews > Rename): Allow todo photos to be renamed
danactive Oct 29, 2023
5377101
feat(Next > Search): Add country or province to search keyword
danactive Oct 29, 2023
ad0d764
feat(Next > Search): Add search support to gallery search keyword
danactive Nov 5, 2023
a538734
feat(Next > Search): Sort by keyword count then name
danactive Nov 12, 2023
0092097
feat(Next > Today): Fix order of today items so morning to night stil…
danactive Nov 13, 2023
5d7eab2
todo whole word
danactive Nov 13, 2023
9884b4e
todo displays
danactive Nov 13, 2023
f4e00be
rename
danactive Nov 14, 2023
9aef3d5
swap data set
danactive Nov 14, 2023
8a9b775
search based combobox!
danactive Nov 14, 2023
5472556
seems to search fine, best^ is unknown
danactive Nov 15, 2023
3fe6dae
keywords search without special characters, so best^ fails
danactive Nov 16, 2023
23d378e
undo
danactive Nov 17, 2023
2e69ff9
dropdown choices work
danactive Nov 19, 2023
cdd27d3
try types
danactive Feb 16, 2024
b9a8649
Remove types and console logs
danactive Apr 6, 2024
8db35ca
Undo to previous working regex special character
danactive Apr 6, 2024
3c825fd
fix autocomplete clear, still needs submit
danactive Apr 7, 2024
1150e7d
fix free text search
danactive Apr 7, 2024
2e6bced
Dropdown search and free text should produce different results
danactive Apr 7, 2024
1e057bd
oops
danactive Apr 7, 2024
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
2 changes: 1 addition & 1 deletion api/server/plugins/rename/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const filenamer = require('./filenames');
const renamer = require('./rename');
const routes = require('../../../lib/routes');
const validation = require('../../../lib/validation');

// TODO copy to Next
const formatJson = (json) => ({ xml: json.xml, filenames: json.filenames });

const handler = (request) => new Promise((reply) => {
Expand Down
2 changes: 1 addition & 1 deletion api/server/plugins/rename/lib/rename.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path');

const exists = require('../../exists/lib/exists');
const utils = require('../../utils');

// TODO copy to Next
/*
Reassign associated filename based on file without extension

Expand Down
Loading
Loading