Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
ICE_ADAPTER_VERSION: 3.3.12
BUILD_VERSION: ${{ github.event.inputs.version }}
PYTHON_VERSION: 3.14
ZIG_VERSION: 0.15.2
ZIG_VERSION: 0.16.0
JAVA_DISTRIBUTION: "oracle"
JAVA_VERSION: 25

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
Write-Host "LIBPY=$LIBPY"
$INCLUDEPY = $(python -c "import sysconfig; print(sysconfig.get_config_var('INCLUDEPY'))")
Write-Host "INCLUDEPY=$INCLUDEPY"
zig build-lib -dynamic -lc -lpython3 -I"$INCLUDEPY" -L"$LIBPY" -O ReleaseSafe --name zigfafreplay src/replays/zigparser/zigfafreplay.zig
zig build-lib -dynamic -lc -lpython3 -I"$INCLUDEPY" -L"$LIBPY" -O ReleaseFast --name zigfafreplay src/replays/zigparser/zigfafreplay.zig
Comment thread
coderabbitai[bot] marked this conversation as resolved.
move zigfafreplay.dll zigfafreplay.pyd


Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
echo "LIBPY=$LIBPY"
INCLUDEPY=$(python3 -c "import sysconfig; print(sysconfig.get_config_var('INCLUDEPY'))")
echo "INCLUDEPY=$INCLUDEPY"
zig build-lib -dynamic -lc -lpython$PYTHON_VERSION -I$INCLUDEPY -L$LIBPY -O ReleaseSafe --name zigfafreplay src/replays/zigparser/zigfafreplay.zig
zig build-lib -dynamic -lc -lpython$PYTHON_VERSION -I$INCLUDEPY -L$LIBPY -O ReleaseFast --name zigfafreplay src/replays/zigparser/zigfafreplay.zig
mv libzigfafreplay.so zigfafreplay.so

- name: Shrink scipy dependency
Expand Down
39 changes: 39 additions & 0 deletions res/client/client.css
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,14 @@ QLineEdit#uploaderInput
background-color: #353535;
}

QLineEdit#mapNameEdit, QLineEdit#cliArgsEdit {
background-color: #18181D;
}

QLineEdit#mapNameEdit:disabled, QLineEdit#cliArgsEdit:disabled {
background-color:#202025;
}

QFrame#rankedFrame
{
border-style:solid;
Expand Down Expand Up @@ -842,6 +850,13 @@ QGroupBox
padding-top: 15px;
}

QGroupBox::indicator
{
width: 13px;
height: 13px;
border: 1px solid black;
}

QGroupBox::indicator:unchecked
{
background: #303035;
Expand Down Expand Up @@ -921,6 +936,30 @@ QCheckBox::indicator:hover {
border-color: gray;
}

QAbstractItemView::indicator
{
width: 13px;
height: 13px;
border: 1px solid black;
}

QAbstractItemView::indicator:hover {
border-color: gray;
}

QAbstractItemView::indicator:disabled {
border-color: #202025;
}

QAbstractItemView::indicator:checked {
image: url('%THEMEPATH%/client/chboxChecked.png');
}

QAbstractItemView::indicator:unchecked
{
background: #303035;
}

/* Used for Ranked Buttons only at the moment*/
QToolButton#rankedPlay
{
Expand Down
102 changes: 102 additions & 0 deletions res/dialogs/information.ui
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>416</width>
<height>363</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QLabel" name="labelIcon">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="labelText">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Orientation::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<widget class="QPlainTextEdit" name="editDetails">
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Orientation::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>Dialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>Dialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>
Loading
Loading