Shell icon indicating copy to clipboard operation
Shell copied to clipboard

Feedback

Open jairocontreras opened this issue 2 years ago • 7 comments

✅ right click drag and drop zip file find="extract" not working

✅ assign image from cmd property using path environment variable image cmd="notepad" vs @sys.bin\notepad.exe

⚠️ program files path not working e.g. notepad++

✅ removes separators where=window.is_tree find="properties" vis=hidden

return multiple file names sel(quote=false, separator="\n", title=true) or sel.title(quote=false, separator="\n")

when you create new file, set focus to rename io.file.create("file", "")

menu added to all types item(find=".txt" menu="more options" title="test")

eject removable drive command.eject

app crashes: where=this.id==id.play_with_windows_media_player type=type.desktop (selection type enumerations)

not working: id.open_as_portable system function (variant of sys) e.g. system.name

add to docs: id.burn_disc_image id.add_to_favorites

remove from docs: shell section reg.lm and reg.cr sys.beep (use msg.beep)

edit docs: add multi type to mode property (variant of multiple) invoke property is of type string

jairocontreras avatar May 02 '23 21:05 jairocontreras

eject drive cmd=command.eject run as administrator cmd=command.runas or admin cmd=command.open

Most of the commands are used to return titles, identifiers, and icons only. However, the implementation of most of the system's commands will be developed later.

when you create a new file, set focus to rename cmd=io.file.create('file','')

OK

right click drag and drop zip file find='extract' not working

This should be added type='*' to work with drag and drop menu

assign image from admin property, i.e. icon.run_as_administrator image admin

You mean to add a overlay admin icon? I will work on it

assign image from cmd property using path environment variable image cmd='notepad++' vs @sys.prog\Notepad++\notepad++.exe

cmd='%environment variable%\Notepad++\notepad++.exe'

moudey avatar May 06 '23 15:05 moudey

image cmd='@sys.bin\notepad.exe' works but image cmd='notepad' does not

jairocontreras avatar May 06 '23 20:05 jairocontreras

app crashes where=this.id==id.play_with_windows_media_player

Undefined

removes separators where=window.is_tree find='properties' vis='remove'

Explain more

common window handles where=window.handle==handle.desktop vs window.is_desktop test multiple values where=this.title('a','b') or title=='a|b' vs this.title=='a' || this.title=='b' count number of items in the submenu where=this.submenu.count missing from docs id.burn_disc_image title.id, e.g. title.send_to find=['title','new'] vis='remove'

It will be worked on

moudey avatar May 07 '23 13:05 moudey

image cmd='@sys.bin\notepad.exe' works but image cmd='notepad' does not

Sorry, I did not notice the image property.

This issue has been fixed.

moudey avatar May 07 '23 13:05 moudey

what's undefined?

where=window.is_tree && this.title=='manage onedrive backup' vis='remove' works normally but where=window.is_tree find='manage onedrive backup' vis='remove' removes all the separators

fixed for the next release?

jairocontreras avatar May 08 '23 04:05 jairocontreras

what's undefined?

play_with_windows_media_player not added to ids

fixed for the next release?

Latest updated build for testing at this link

moudey avatar May 08 '23 08:05 moudey

@jairocontreras Try this build 31

Fixed

  • [x] image cmd='notepad'
  • [x] where=window.is_tree find='manage onedrive backup' vis='remove' removes all the separators

New

  • [x] this.title('a','b') and this.name('a','b')

moudey avatar May 08 '23 09:05 moudey