packages feed

greenclip 3.1.0 → 3.1.1

raw patch · 3 files changed

+4/−4 lines, 3 files

Files

greenclip.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack  name:           greenclip-version:        3.1.0+version:        3.1.1 synopsis:       Simple clipboard manager to be integrated with rofi description:    Simple clipboard manager to be integrated with rofi - Please see README.md category:       Linux Desktop
src/Clipboard.hs view
@@ -183,8 +183,8 @@      clipboard <- internAtom display "CLIPBOARD" False     selTarget <- internAtom display "GREENCLIP" False-    priorities <- traverse (\atomName -> internAtom display atomName True) ["image/png", "image/jpeg", "image/bmp", "UTF8_STRING", "TEXT"]-    defaultM <- internAtom display "UTF8_STRING" True+    priorities <- traverse (\atomName -> internAtom display atomName False) ["image/png", "image/jpeg", "image/bmp", "UTF8_STRING", "TEXT"]+    defaultM <- internAtom display "UTF8_STRING" False     return XorgContext {         display = display       , ownWindow = window
src/Main.hs view
@@ -253,7 +253,7 @@     -- Should rename COPY into ADVERTISE but as greenclip is already used I don't want to break configs     -- of other people     COPY sel -> runReaderT (advertiseSelection sel) cfg-    HELP     -> putText $ "greenclip v3.0 -- Recyle your clipboard selections\n\n" <>+    HELP     -> putText $ "greenclip v3.1 -- Recyle your clipboard selections\n\n" <>                           "Available commands\n" <>                           "daemon: Spawn the daemon that will listen to selections\n" <>                           "print:  Display all selections history\n" <>