Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Unset executable bits & remove !#shebang (#306)
* Unset executable bit from XML and images

I'm not an expert, but those XMLs do not look like any kind of
normally executable scripts. And even if they were -- XML syntax does
not allow shebangs, as far as standard[1] is concerned.

[1]: https://www.w3.org/TR/2008/REC-xml-20081126/#NT-document

* Drop unused global var WINEASIO_PREFIX

It was mis-formatted anyway. Looks like a
copy-paste from wineasio which is broken in the
exact same way[1].

[1] https://github.com/wineasio/wineasio/blob/638ce56a7f872e8556b45949f7dfa734f4bd366c/gui/settings.py#L41

* Unset executable bit

Unset executable bit from all python sources upon installation
  • Loading branch information
ratijas committed Feb 9, 2021
1 parent 9bc418c commit 41ab083
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -159,7 +159,7 @@ install:
install -m 644 resources/scalable/claudia-launcher.svg $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps/

# Install main code
install -m 755 src/*.py $(DESTDIR)$(PREFIX)/share/cadence/src/
install -m 644 src/*.py $(DESTDIR)$(PREFIX)/share/cadence/src/

# Install addtional stuff for Cadence
install -m 644 data/pulse2jack/* $(DESTDIR)$(PREFIX)/share/cadence/pulse2jack/
Expand Down
Empty file modified data/icons/claudia-hicolor/16x16/apps/radium.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified data/icons/claudia-hicolor/48x48/apps/radium.png 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified data/templates/Carla.carxp 100755 → 100644
Empty file.
Empty file modified data/templates/LMMS.mmp 100755 → 100644
Empty file.
Empty file modified resources/scalable/orig/cadence-suite_small.svg 100755 → 100644
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions src/cadence.py
Expand Up @@ -113,8 +113,6 @@
"/usr/local/share/applications"
]

WINEASIO_PREFIX = "HKEY_CURRENT_USER\Software\Wine\WineASIO"

# ---------------------------------------------------------------------

global jackClientIdALSA, jackClientIdPulse
Expand Down

0 comments on commit 41ab083

Please sign in to comment.