Commit graph

5666 commits

Author SHA1 Message Date
Leandro Stanger 7dac1d6d8b
Update net.lutris.Lutris.metainfo.xml 2019-11-01 16:50:01 -03:00
Leandro Stanger eefd26b542
.appdata rename to .metainfo 2019-11-01 08:11:21 -03:00
Manuel Vögele b548bc4a9c Disconnect game hook after game has stopped 2019-10-24 11:17:50 +02:00
vahtos ce62cdaf34 Fixes #1999
Game was added to PGA database, but is never returned here when uninstalled, as the runner is left empty. This change should fix the issue in #1999, and continue to respect when a game is installed using a different runner.
2019-10-22 12:44:32 -04:00
vahtos 89e1503035 Merge branch 'master' of https://github.com/lutris/lutris 2019-10-22 12:38:16 -04:00
Mathieu Comandon 90e34ec2f2 Check for libstrangle presence at runtime (Closes #2381) 2019-10-16 06:53:49 -07:00
Mathieu Comandon 0913ae694c Silence some pylint warnings 2019-10-16 06:50:43 -07:00
Mathieu Comandon 542a69527a
Merge pull request #2366 from DarkWingMcQuack/patch-1
fix UnicodeDecodeError on startup
2019-10-16 06:27:59 -07:00
Mathieu Comandon 1359ec198a
Merge pull request #2373 from sonicpp/nine-detection
GalliumNine: fix itering shared lib folders (Fixes #2332)
2019-10-16 06:27:11 -07:00
Mathieu Comandon 96cc4e1b13
Merge pull request #2384 from G4E/fix_2320
Fixed #2320
2019-10-16 06:26:36 -07:00
Mathieu Comandon 36e72e3933 Remove fallback locale 2019-10-16 06:25:00 -07:00
Mathieu Comandon 32b1e33d5b
Merge pull request #2392 from manuelVo/2341-fallback-locale
Use fallback locale if locale is configured incorrectly (fixes #2341)
2019-10-16 06:23:20 -07:00
Mathieu Comandon 9f019d54bf
Merge pull request #2393 from Adehom/master
Fix Issues #2358 and Issues#2376
2019-10-16 06:22:14 -07:00
Mathieu Comandon 56ff52d96b
Merge pull request #2403 from manuelVo/slug-refresh-ui
Refresh right panel when a game is started
2019-10-16 06:20:52 -07:00
Mathieu Comandon c777fae131 Remove forced centering in the Glade file 2019-10-16 06:18:35 -07:00
aTosser 5b95b91b77 Add alacritty as a terminal 2019-10-15 17:13:38 +03:00
CartoonFan 5e54d73183 Fix a small typo 2019-10-15 17:12:49 +03:00
Manuel Vögele bc8d1d355c Refresh right panel when a game is started 2019-10-15 12:13:44 +02:00
Adehom 8709a01ac5
Issues lutris#2376
Change X-Python-Version: >= 3.4  ====> X-Python3-Version: >= 3.4 in line 23
2019-10-09 15:47:46 +02:00
Adehom f85e459672
Update INSTALL.rst 2019-10-09 15:46:55 +02:00
Manuel Vögele fefe47521c Use fallback locale if locale is configured incorrectly (fixes #2341) 2019-10-09 15:23:35 +02:00
G4E a136c4cda1 Default to showing side panels 2019-10-06 17:22:04 +03:00
G4E 1fd9599849 Fixed #2320 by resetting the old attribute sidebar_visible when it is still true in lutris.conf 2019-10-06 00:52:43 +02:00
Jan Havran 93c0bf64b5 GalliumNine: fix itering shared lib folders (Fixes #2332)
iter_lib_folders() return strings instead of lists, so we have to
find other way how to distinguish between 32 and 64 bit libraries
2019-10-01 01:34:51 +02:00
DarkWingMcQuack f28772bbd7
fix UnicodeDecodeError on startup 2019-09-26 12:23:22 +02:00
Mathieu Comandon ab24c7812e
Merge pull request #2322 from G4E/wine_sandbox_fix
Fetching user's folder by using wine's registery
2019-09-23 21:51:26 -07:00
gasinvein 323339ae37 Simplify get_vk_icd_choices() function 2019-09-23 21:46:54 -07:00
gasinvein f0d8848785 Add more Vulkan data dirs
Put them into a separate constant and use Vulkan-spec-compliant order
2019-09-23 21:46:54 -07:00
gasinvein 7b280973cc Add Flatpak-specific Vulkan ICD paths 2019-09-23 21:46:54 -07:00
Medath 5c82e6a65b fix installation of local install scripts 2019-09-23 21:45:32 -07:00
matoro 81fbe58a68 Add symbolic icons for additional platforms and fix some existing ones
Fix:
MS-DOS
Nintendo DS
Nintendo 3DS
Nintendo Gamecube
Sony Playstation
Sony Playstation 2
Sony Playstation Portable

Add:
MSX/MSX2/MSX2+
NEC PC-98
Nintendo Game Boy
Nintendo Game Boy Color
Nintendo NES
Nintendo SNES
Sega Dreamcast
2019-09-23 21:44:49 -07:00
Christian Clauss 3584dcacdd Use ==/!= to compare str, bytes, and int literals
Use ==/!= to compare str, bytes, and int literals because identity is not the same thing as equality in Python. These instances will raise SyntaxWarnings on Python >= 3.8 so it is best to fix them now. https://docs.python.org/3.8/whatsnew/3.8.html#porting-to-python-3-8

[flake8](http://flake8.pycqa.org) testing of https://github.com/lutris/lutris on Python 3.7.1

$ __flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics__
```
./lutris/runners/pico8.py:95:16: F632 use ==/!= to compare str, bytes, and int literals
        return self.runner_config.get("runner_executable", "") is not ""
               ^
./lutris/runners/pico8.py:129:16: F632 use ==/!= to compare str, bytes, and int literals
            if len(size) is 2:
               ^
2     F632 use ==/!= to compare str, bytes, and int literals
2
```
2019-09-23 21:41:43 -07:00
Esdras Tarsis f6c4fe58c3 [wine] Fix regedit button 2019-09-23 21:40:22 -07:00
Mathieu Comandon 2f7c3b1aef Remove useless information from user agent string 2019-09-23 18:04:07 -07:00
Mathieu Comandon 58c56c0006
Merge branch 'master' into wine_sandbox_fix 2019-09-22 20:55:43 -07:00
G4E 630fd7e60e Added symlinks restoration when disabling wine sandbox
Restored xdg keys order to match folder one
2019-09-22 20:54:51 -07:00
G4E 5089f199fa Reordered the keys to be sainer and compatible with #2316 2019-09-11 18:15:19 +02:00
Maximiliano Sandoval R 7fc20413df Change to libgamemodeauto.so path
- This fixes #2248, and possibly #1304
2019-09-08 10:04:53 -07:00
Rob Loach 046ca63d75 Fix prelaunch_beat referencing no prelaunch_extractor
```
File "/home/rob/Documents/lutris/lutris/game.py", line 578, in prelaunch_beat
    if self.prelaunch_executor.is_running:
AttributeError: 'NoneType' object has no attribute 'is_running'
```
2019-09-08 10:03:20 -07:00
Mario Ortiz Manero a37d3a417e Fixes inside installers.rst 2019-09-08 10:02:47 -07:00
Mario Ortiz Manero 5c2c4a1281 More small typos 2019-09-08 10:02:47 -07:00
Mario Ortiz Manero ba160ef0b0 Fixed very small typo 2019-09-08 10:02:47 -07:00
Mathieu Comandon 7ac11f14be Merge branch 'sonicpp-wine-nine' 2019-09-08 10:01:24 -07:00
Mathieu Comandon fc22a59539 Merge branch 'wine-nine' of https://github.com/sonicpp/lutris into sonicpp-wine-nine 2019-09-08 10:01:09 -07:00
G4E 45d6378903 Restored a newline 2019-09-08 02:34:03 +02:00
G4E 1f9953e9bc Fetching user's folder by using wine's registery.
Added a function to correctly parse unicode paths in registry.py
2019-09-08 02:32:14 +02:00
Mathieu Comandon 06afbc4ce4 Mention logo update in changelog 2019-09-07 14:28:29 -07:00
Mathieu Comandon ecb426d248 Fix case of opengl renderer option in ResidualVM 2019-09-06 20:54:43 -07:00
Mathieu Comandon 1b1e623228 Fix 'My Documents' name in DESKTOP_FOLDERS 2019-09-06 19:37:25 -07:00
Roger b86c3c7b33 Add liberapay and the donate page to the sponsor button 2019-09-06 19:31:30 -07:00