Skip to content

Commit 15b74f1

Browse files
committed
Initial Commit - Closed Alpha 0.1.a
1 parent 11b3df9 commit 15b74f1

File tree

17 files changed

+21
-912
lines changed

17 files changed

+21
-912
lines changed

.idea/dictionaries/sc4le.xml

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/runtime/CHANGELOG.txt renamed to resources/CHANGELOG.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ Added:
2424
- Cleaned up directory
2525
- Added .oi file ending
2626

27+
in 0.1.a (Hotfix)
28+
- Basic log functionality (Don't expect anything)
29+
- Log Button works
30+
- Changelog Button works
31+
32+
- less files to handle
33+
- small bugfixes
34+
2735
See you in 0.1.1 - no more devalpha woohoo
2836

2937

resources/ChangeDialog.ui

Lines changed: 0 additions & 138 deletions
This file was deleted.

resources/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def __init__(self):
4141

4242
# Basic loading and startup operations
4343

44-
4544
self.ui = uic.loadUi('main.ui')
4645
window = self.ui
4746
window.setWindowIcon(QIcon("images\\icon.png"))
@@ -105,6 +104,11 @@ def __init__(self):
105104
window.actionLoad.triggered.connect(lambda: loadConfig(self, newFilePath))
106105

107106
window.updateButton.clicked.connect(lambda: getTextOfItem(self, oldFilePath, newFilePath))
107+
108+
window.actionLog.triggered.connect(lambda: webbrowser.open(standardFilePath + "\\StreamLog.log"))
109+
110+
window.actionVersion_Changes.triggered.connect(lambda: webbrowser.open("CHANGELOG.txt"))
111+
108112
else:
109113
ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, " ".join(sys.argv), None, 1)
110114

resources/config.dat

-82 Bytes
Binary file not shown.

resources/list.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

resources/main.py

Whitespace-only changes.

resources/main.ui

Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -386,39 +386,6 @@
386386
<zorder>addright</zorder>
387387
</widget>
388388
</widget>
389-
<widget class="QWidget" name="tab_2">
390-
<attribute name="title">
391-
<string>Chrono's</string>
392-
</attribute>
393-
<widget class="QGroupBox" name="chronodown">
394-
<property name="geometry">
395-
<rect>
396-
<x>10</x>
397-
<y>10</y>
398-
<width>761</width>
399-
<height>201</height>
400-
</rect>
401-
</property>
402-
<property name="title">
403-
<string>Chrono Down</string>
404-
</property>
405-
</widget>
406-
</widget>
407-
<widget class="QWidget" name="tab_3">
408-
<attribute name="title">
409-
<string>Tree View</string>
410-
</attribute>
411-
<widget class="QTreeView" name="treeView">
412-
<property name="geometry">
413-
<rect>
414-
<x>0</x>
415-
<y>0</y>
416-
<width>401</width>
417-
<height>521</height>
418-
</rect>
419-
</property>
420-
</widget>
421-
</widget>
422389
</widget>
423390
</item>
424391
</layout>
@@ -450,6 +417,7 @@
450417
<addaction name="separator"/>
451418
<addaction name="actionAboutStreamHelper"/>
452419
<addaction name="actionCredits"/>
420+
<addaction name="actionVersion_Changes"/>
453421
<addaction name="separator"/>
454422
<addaction name="actionLog"/>
455423
</widget>
@@ -513,6 +481,11 @@
513481
<string>Set main file path</string>
514482
</property>
515483
</action>
484+
<action name="actionVersion_Changes">
485+
<property name="text">
486+
<string>Version Changes</string>
487+
</property>
488+
</action>
516489
</widget>
517490
<tabstops>
518491
<tabstop>tabWidget</tabstop>

resources/mainwindow.py

Lines changed: 0 additions & 29 deletions
This file was deleted.

resources/message.log

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)