Browse Source

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] 638ce56a7f/gui/settings.py (L41)

* Unset executable bit

Unset executable bit from all python sources upon installation
tags/v0.9.2
ratijas GitHub 3 years ago
parent
commit
41ab083ccc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 1 additions and 3 deletions
  1. +1
    -1
      Makefile
  2. +0
    -0
      data/icons/claudia-hicolor/16x16/apps/radium.png
  3. +0
    -0
      data/icons/claudia-hicolor/48x48/apps/radium.png
  4. +0
    -0
      data/templates/Carla.carxp
  5. +0
    -0
      data/templates/LMMS.mmp
  6. +0
    -0
      resources/scalable/orig/cadence-suite_small.svg
  7. +0
    -2
      src/cadence.py

+ 1
- 1
Makefile View File

@@ -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/


+ 0
- 0
data/icons/claudia-hicolor/16x16/apps/radium.png View File

Before After
Width: 16  |  Height: 16  |  Size: 740B Width: 16  |  Height: 16  |  Size: 740B

+ 0
- 0
data/icons/claudia-hicolor/48x48/apps/radium.png View File

Before After
Width: 48  |  Height: 48  |  Size: 4.9KB Width: 48  |  Height: 48  |  Size: 4.9KB

+ 0
- 0
data/templates/Carla.carxp View File


+ 0
- 0
data/templates/LMMS.mmp View File


+ 0
- 0
resources/scalable/orig/cadence-suite_small.svg View File


+ 0
- 2
src/cadence.py View File

@@ -113,8 +113,6 @@ XDG_APPLICATIONS_PATH = [
"/usr/local/share/applications"
]

WINEASIO_PREFIX = "HKEY_CURRENT_USER\Software\Wine\WineASIO"

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

global jackClientIdALSA, jackClientIdPulse


Loading…
Cancel
Save