Skip to content

Commit

Permalink
Update Minigalaxy to version 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkwouter committed Apr 20, 2020
1 parent 6434d5e commit d7e31fb
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**0.9.4 (unreleased)**
**0.9.4**
- Added the following translations:
- Norwegian Nynorsk (thanks to LordPilum)
- Russian (thanks to protheory8)
Expand All @@ -15,7 +15,7 @@
- Fixed game directories being created without any spaces in the name (thanks to larslindq).
- Fixed thumbnails not being downloaded for already installed games.
- Fixed symlinks to libraries not being created correctly upon installation.
- Made preparations for a flathub package.
- Made preparations for a Flathub package.
- Added all contributors and translators to the about window.

**0.9.3**
Expand Down
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minigalaxy

A simple GOG client for Linux that lets you download and play your GOG Linux games
A simple GOG client for Linux

![screenshot](screenshot.jpg?raw=true)

Expand All @@ -21,23 +21,22 @@ In addition to that, Minigalaxy also allows you to:
- View the error message if a game fails to launch
- Enable displaying the FPS in games
- Use the system's Scummvm or Dosbox installation

Features **not** in Minigalaxy:

- Installing games meant for other platforms
- Install Windows games using Wine

## Supported languages

Currently Minigalaxy can be displayed in the following languages:
- Brazilian Portuguese
- English
- Dutch
- French
- German
- Norwegian Bokmål
- Norwegian Nynorsk
- Polish
- Russian
- Taiwanese Mandarin
- Turkish
- Brazilian Portuguese (incomplete)
- Norwegian Bokmål (incomplete)

## System requirements

Expand Down Expand Up @@ -157,14 +156,19 @@ Expect to see the following issues:
Special thanks goes out to all contributors:

- Odelpasso for multiple code contributions
- tim77 for packaging Minigalaxy for Fedora, Flathub and multiple code contributions
- larslindq for multiple code contributions
- BlindJerobine for translating to German and adding the support option
- JoshuaFern for packaging Minigalaxy for NixOS and for contributing code
- s8321414 for translating to Taiwanese Mandarin
- fuzunspm for translating to Turkish
- thomansb22 for translating to French
- ArturWroblewski for translating to Polish
- kimmalmo for translating to Norwegian Bokmål
- EsdrasTarsis for translating to Brazilian Portuguese
- protheory8 for translating to Russian
- LordPilum for translating to Norwegian Nynorsk
- jubalh for packaging Minigalaxy for openSUSE
- tim77 for packaging Minigalaxy for Fedora
- gasinvein for packaging Minigalaxy for flathub
- metafarion for packaging Minigalaxy for Gentoo
- SwampRabbit and Steven Pusser for packaging Minigalaxy for MX Linux
22 changes: 22 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
minigalaxy (0.9.4) buster; urgency=medium
* Added the following translations:
* Norwegian Nynorsk (thanks to LordPilum)
* Russian (thanks to protheory8)
* Updated the following translations:
* Brazilian Portuguese (thanks to EsdrasTarsis)
* French (thanks to Thomasb22)
* German (thanks to BlindJerobine)
* Norwegian Bokmål (thanks to kimmalmo)
* Polish (thanks to ArturWroblewski)
* Taiwanese Mandarin (thanks to s8321414)
* Turkish (thanks to fuzunspm)
* Added support for installing Windows games (with help from Odelpasso).
* Added store page link to game menus (thanks to larslindq).
* Fixed game directories being created without any spaces in the name (thanks to larslindq).
* Fixed thumbnails not being downloaded for already installed games.
* Fixed symlinks to libraries not being created correctly upon installation.
* Made preparations for a Flathub package.
* Added all contributors and translators to the about window.

-- Wouter Wijsman <wwijsman@live.nl> Mon, 20 Apr 2020 20:51:08 +0200

minigalaxy (0.9.3) buster; urgency=medium
* Added the following translations:
* German (thanks to BlindJerobine)
Expand Down
2 changes: 1 addition & 1 deletion minigalaxy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_library(self):
else:
continue
if not product["url"]:
print("{} has no store page url".format(product["title"]))
print("{} ({}) has no store page url".format(product["title"], product['id']))
game = Game(name=product["title"], url=product["url"], game_id=product["id"], image_url=product["image"], platform=platform)
games.append(game)
if current_page == total_pages:
Expand Down
2 changes: 1 addition & 1 deletion minigalaxy/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION="0.9.3"
VERSION="0.9.4"

0 comments on commit d7e31fb

Please sign in to comment.