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

file: Add Shortcut metadata parsing on Windows #8143

Merged
merged 6 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Doc fixes
  • Loading branch information
Smjert committed Nov 21, 2023
commit 8056745060530fa94a78247ffe7bf85efe2f480a
2 changes: 1 addition & 1 deletion specs/utility/file.table
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extended_schema(WINDOWS, [
Column("shortcut_target_type", TEXT, "Display name for the target type"),
Column("shortcut_target_location", TEXT, "Folder name where the shortcut target resides"),
Column("shortcut_start_in", TEXT, "Full path to the working directory to use when executing the shortcut target"),
Column("shortcut_run", TEXT, "Window mode the target of the shortcut should be run it"),
Column("shortcut_run", TEXT, "Window mode the target of the shortcut should be run in"),
Column("shortcut_comment", TEXT, "Comment on the shortcut"),
])
extended_schema(DARWIN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/tables/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace {

const std::vector<std::string> kFileNameList{
// In order to test MBCS support, here's a japanese word
// that *should* mean "dictionary"
// that means "dictionary"
"辞書.txt",

"file-table-test.txt",
Expand Down
Loading