Skip to content

Commit

Permalink
add NoDragDrop on pictures and add screenshots for readme
Browse files Browse the repository at this point in the history
  • Loading branch information
noisecode3 committed Jul 5, 2024
1 parent b2f0436 commit 0872923
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 4 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,15 @@ python3 getData.py https://www.trle.net/sc/levelfeatures.php?lid=3379
python3 addData.py data.json

```
# Screenshots
![screenshot1](https://raw.githubusercontent.com/noisecode3/TombRaiderLinuxLauncher/main/doc/screenshot1.jpg)
![screenshot1](https://raw.githubusercontent.com/noisecode3/TombRaiderLinuxLauncher/main/doc/screenshot2.jpg)
![screenshot1](https://raw.githubusercontent.com/noisecode3/TombRaiderLinuxLauncher/main/doc/screenshot3.jpg)
![screenshot1](https://raw.githubusercontent.com/noisecode3/TombRaiderLinuxLauncher/main/doc/screenshot4.jpg)

# Guide

How to play Tomb Raider 3
How to play Tomb Raider 3 (need to update)

# Patches
The game uses old API and old optimizations..
Expand All @@ -65,8 +70,9 @@ With wine you need a minimum
It's a bit demanding on the memory, try use gallium nine if you have nouveau
No special graphics card, but if you gonna play mods you could need
One 2010+ card that has about 2-4 Gb for some Tomb Raider 4 mods with enhanced graphics
recommend patches, on steam proton 7
recommend patches, on steam proton 7 (old)
* https://github.com/Trxyebeep/tomb3

* https://github.com/dege-diosg/dgVoodoo2 (use Lutris, not manual)
* https://tombraiders.net/stella/downloads/widescreen.html
* https://core-design.com/community_tr3withoutcrystals.html
Expand Down
Binary file added doc/screenshot1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/screenshot2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/screenshot3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/screenshot4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/TombRaiderLinuxLauncher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@ void TombRaiderLinuxLauncher::infoClicked()
ui->infoWebEngineView->setHtml(info.body);
ui->infoListWidget->setViewMode(QListView::IconMode);
ui->infoListWidget->setIconSize(QSize(502, 377));
ui->infoListWidget->setDragEnabled(false);
ui->infoListWidget->setAcceptDrops(false);
ui->infoListWidget->setDragDropMode(QAbstractItemView::NoDragDrop);
ui->infoListWidget->setDefaultDropAction(Qt::IgnoreAction);
ui->infoListWidget->setSelectionMode(QAbstractItemView::NoSelection);
ui->infoListWidget->clear();
for (const QIcon &icon : info.imageList)
{
Expand Down
10 changes: 8 additions & 2 deletions src/TombRaiderLinuxLauncher.ui
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>927</width>
<height>596</height>
<width>538</width>
<height>70</height>
</rect>
</property>
<layout class="QHBoxLayout" name="horizontalLayout_7">
Expand Down Expand Up @@ -234,6 +234,12 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>532</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>532</width>
Expand Down

0 comments on commit 0872923

Please sign in to comment.