Skip to content

Commit

Permalink
Version 2.10.8.
Browse files Browse the repository at this point in the history
Compiler fix.
  • Loading branch information
NyashniyVladya committed Sep 8, 2022
1 parent 3bee60b commit 640fec2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion game/Translator3000Data/scripts/imports.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ init -10 python in _translator3000:
else:
from requests.packages import urllib3

VERSION = (2, 10, 7)
VERSION = (2, 10, 8)

DEBUG = False
parent_logger.setLevel((logging.DEBUG if DEBUG else logging.CRITICAL))
Expand Down
5 changes: 3 additions & 2 deletions game/build_creator/archiver.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ init python in archiver:
import glob
import zlib

from pickle import dumps, HIGHEST_PROTOCOL
from pickle import dumps

PICKLE_PROTOCOL = 2

class Archive(object):
"""
Expand Down Expand Up @@ -77,7 +78,7 @@ init python in archiver:

indexoff = self.f.tell()

self.f.write(zlib.compress(dumps(self.index, HIGHEST_PROTOCOL)))
self.f.write(zlib.compress(dumps(self.index, PICKLE_PROTOCOL)))

self.f.seek(0)
self.f.write(b"RPA-3.0 %016x %08x\n" % (indexoff, self.key))
Expand Down
2 changes: 1 addition & 1 deletion game/options.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ define gui.show_name = True

## Версия игры.

define config.version = "2.10.7"
define config.version = "2.10.8"


## Текст, помещённый в экран "Об игре". Поместите текст между тройными скобками.
Expand Down

0 comments on commit 640fec2

Please sign in to comment.