Skip to content

Commit

Permalink
Release 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsivaramanneo committed Dec 31, 2017
1 parent f828068 commit 58a582d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Files/About.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from gi.repository import Gtk, Gdk, Pango
from Common import setBackgroundColor, createScrollbar, setColumns, fetchImageFromUrl, getLinkButtonImg

Title1 = ["About GPU-Viewer v1.3"]
Title1 = ["About GPU-Viewer v1.4"]
Title2 = ["Change Log"]


Expand Down
8 changes: 4 additions & 4 deletions Files/GPUViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ def main():
# T1 = time.time()
setting = Gtk.Settings.get_default()

if Const.THEME1:
setting.set_property("gtk-theme-name","Adapta")
elif Const.THEME2:
if Const.THEME2:
setting.set_property("gtk-theme-name","Adapta")
elif Const.THEME1:
setting.set_property("gtk-theme-name","FlatPlat")
elif Const.THEME3:
setting.set_property("gtk-theme-name","Numix")

gtk = MyGtk("GPU-Viewer v1.3")
gtk = MyGtk("GPU-Viewer v1.4")
setScreenSize(gtk, Const.WIDTH_RATIO, Const.HEIGHT_RATIO1)

openGlTab = gtk.createTab(Const.OPEN_GL_PNG, Const.ICON_WIDTH, Const.ICON_HEIGHT, True)
Expand Down
2 changes: 1 addition & 1 deletion Files/OpenGLViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def refresh_filter(self):
frame5 = Gtk.Frame()
grid3.attach(frame5,0,0,1,1)
entry = Gtk.SearchEntry()
entry.set_placeholder_text("Type here to filter.....")
entry.set_placeholder_text("Type here to filter extensions.....")
entry.connect("search-changed",refresh_filter)
frame5.add(entry)
scrollable_treelist2 = createScrollbar(TreeGLExt)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ A front-end to glxinfo, vulkaninfo and clinfo.

This project aims to capture all the important details of glxinfo, vulkaninfo and clinfo in a GUI. The project is being developed using python 3 pygobject with GTK3. All the important details are extracted using glxinfo/vulkaninfo with the combination of grep, CAT , AWK commands and displayed in the front-end. There is no hard OpenGL Programming involved, until glxinfo, vulkaninfo and clinfo works the GPU-viewer will also work

![screenshot_20171225_224901](https://user-images.githubusercontent.com/30646692/34341850-377e9e3a-e9c6-11e7-8c83-2b6f62f2c334.png)
![screenshot_20171231_112430](https://user-images.githubusercontent.com/30646692/34459687-8801a9aa-ee1d-11e7-9753-e1e128acf3f2.png)

![screenshot_20171225_224833](https://user-images.githubusercontent.com/30646692/34341852-40922b0e-e9c6-11e7-97c0-e5d186edc474.png)
![screenshot_20171231_112502](https://user-images.githubusercontent.com/30646692/34459688-9577d85c-ee1d-11e7-965b-822f2992045b.png)

![screenshot_20171225_224947](https://user-images.githubusercontent.com/30646692/34341854-48156ae4-e9c6-11e7-8273-f7e793618de4.png)
![screenshot_20171231_112533](https://user-images.githubusercontent.com/30646692/34459695-a526d79e-ee1d-11e7-8109-2187105e2558.png)

![screenshot_20171225_225014](https://user-images.githubusercontent.com/30646692/34341855-4bb1233c-e9c6-11e7-8fc2-ea78e416cc3d.png)
![screenshot_20171231_112601](https://user-images.githubusercontent.com/30646692/34459696-b014fad2-ee1d-11e7-97b3-7c9fd7c6a8b1.png)

* Please note that the above images solely depends on the Theme being used on the system. Recommended themes are Flat-Plat and Adapta

Expand All @@ -23,7 +23,7 @@ This project aims to capture all the important details of glxinfo, vulkaninfo an
* sudo apt-get update
* sudo apt-get install gpu-viewer

Please note the dependencies vulkan-utils,clinfo needs to be installed seperately. Work in progress to have the dependencies installed using PPA
Please note all the dependencies python, vulkan-utils,clinfo will be installed seperately.

4. **Debian based distro** users should be able to install the application by just running the .deb file https://github.com/arunsivaramanneo/GPU-Viewer/blob/master/gpu-viewer-stable-1.3.deb
5. **Arch based distro** users should be able to grab the application at https://aur.archlinux.org/packages/gpu-viewer/ or by running command **yaourt -s gpu-viewer** from the terminal . This should automatically take care of the dependencies.
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ file1="/usr/share/gpu-viewer"
file4="/usr/bin/vulkaninfo"
file5="/home/$user/Desktop/gpu-viewer.desktop"
file6="/usr/bin/gpu-viewer"
echo "************************GPU Viewer 1.3 - copyright (c) 2017-2018 - Arun Sivaraman****************************"
echo "************************GPU Viewer 1.4 - copyright (c) 2017-2018 - Arun Sivaraman****************************"
if [ ! -d "$file1" ]
then

Expand Down

0 comments on commit 58a582d

Please sign in to comment.