This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from raihan2000/v2-testing
Bump to v4
- Loading branch information
Showing
6 changed files
with
229 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
|
||
{ | ||
"_generated": "Generated by SweetTooth, do not edit", | ||
"description": "A Sound Visualizer Based On Gstreamer", | ||
"_generated": "Generated by SweetTooth, do not edit", | ||
"description": "A Real Time Sound Visualizer Based On Gstreamer", | ||
"name": "Sound Visualizer", | ||
"settings-schema": "org.gnome.shell.extensions.visualizer", | ||
"shell-version": [ "43" ], | ||
"shell-version": [ | ||
"3.36", | ||
"3.38", | ||
"40", | ||
"41", | ||
"42", | ||
"43" | ||
], | ||
"url": "https://github.com/raihan2000/visualizer", | ||
"uuid": "[email protected]", | ||
"version": 1 | ||
"uuid": "[email protected]", | ||
"version": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 31 additions & 22 deletions
53
src/schemas/org.gnome.shell.extensions.visualizer.gschema.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schemalist> | ||
<schema id="org.gnome.shell.extensions.visualizer" path="/org/gnome/shell/extensions/visualizer/"> | ||
<!-- See also: https://docs.gtk.org/glib/gvariant-format-strings.html --> | ||
<schema id="org.gnome.shell.extensions.visualizer" path="/org/gnome/shell/extensions/visualizer/"> | ||
<!-- See also: https://docs.gtk.org/glib/gvariant-format-strings.html --> | ||
<key type="(ii)" name="visualizer-location"> | ||
<default>(400, 100)</default> | ||
<summary>Location of visualizer</summary> | ||
<description>Location of visualizer</description> | ||
<default>(400, 100)</default> | ||
<summary>Location of visualizer</summary> | ||
<description>Location of visualizer</description> | ||
</key> | ||
|
||
<!--Visualizer--> | ||
<key name="visualizer-height" type="i"> | ||
<default>150</default> | ||
<summary>Vertical Size of DrawingArea</summary> | ||
</key> | ||
|
||
<default>150</default> | ||
<summary>Vertical Size of DrawingArea</summary> | ||
</key> | ||
<key name="visualizer-width" type="i"> | ||
<default>720</default> | ||
<summary>Horizontal Size of DrawingArea</summary> | ||
</key> | ||
|
||
<default>720</default> | ||
<summary>Horizontal Size of DrawingArea</summary> | ||
</key> | ||
<key name="spects-line-width" type="i"> | ||
<default>5</default> | ||
<summary>All Spect Bands width</summary> | ||
</key> | ||
|
||
<default>5</default> | ||
<summary>All Spect Bands width</summary> | ||
</key> | ||
<key name="total-spects-band" type="i"> | ||
<default>64</default> | ||
<summary>Count Total Spects Bands</summary> | ||
</key> | ||
|
||
<default>64</default> | ||
<summary>Count Total Spects Bands</summary> | ||
</key> | ||
<key name="flip-visualizer" type="b"> | ||
<default>false</default> | ||
<summary>Flip Visualizer</summary> | ||
</key> | ||
<key type="b" name="spect-over-ride-bool"> | ||
<default>false</default> | ||
<summary>Override Spects Bands Boolean</summary> | ||
<description>Override Spects Bands Boolean</description> | ||
</key> | ||
<key type="i" name="spect-over-ride"> | ||
<default>64</default> | ||
<summary>Override Spects Bands</summary> | ||
<description>Override Spects Bands</description> | ||
</key> | ||
</schema> | ||
</schemalist> |
Oops, something went wrong.