Skip to content

Commit

Permalink
fix zoom out transition being stuck
Browse files Browse the repository at this point in the history
update settxi
add changelog for 2.2.0
re-save when upgrading from single zoom transition
fix spanish translation files being wrong format
add native languages on translation credits
  • Loading branch information
isXander committed Aug 17, 2022
1 parent e433841 commit 6aa4f85
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 13 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,17 @@ Instead of some stupid arbitrary value such as zoom speed, you can pick
the exact amount of seconds it will take to zoom in, with a separate setting for zooming out.

### Credits
- [Xander](https://github.com/isXander) - Founder
- [Xander](https://github.com/isXander) - Developer
- [MoonTidez](https://github.com/MoonTidez) - Logo designer

#### Translators
Languages in alphabetical order
- [Xander](https://github.com/isXander) - British English
- [神枪968](https://github.com/GodGun968) - Chinese
- [Madis0](https://github.com/Madis0) - Estonian
- [Rodrigo Appelt](https://github.com/Agentew04) - Portuguese
- [SyberiaK](https://github.com/SyberiaK) - Russian
- [Felix14-v2](https://github.com/Felix14-v2) - Russian
- [localfossa](https://github.com/localfossa) - Turkish
- [Xander](https://github.com/isXander) - English (Britain)
- [神枪968](https://github.com/GodGun968) - 简体中文 / Chinese (Simplified)
- [Madis0](https://github.com/Madis0) - eestlane / Estonian
- [Rodrigo Appelt](https://github.com/Agentew04) - Português / Portuguese
- [SyberiaK](https://github.com/SyberiaK) - Русский / Russian
- [Felix14-v2](https://github.com/Felix14-v2) - Русский / Russian
- [Zetsphiron](https://github.com/Zetsphiron) - Español (mexicano) / Spanish (Mexico)
- [Zetsphiron](https://github.com/Zetsphiron) - Español (españa) / Spanish (Spain)
- [localfossa](https://github.com/localfossa) - Türkçe / Turkish
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
}

group = "dev.isxander"
version = "2.1.0"
version = "2.2.0"

repositories {
mavenCentral()
Expand Down
12 changes: 12 additions & 0 deletions changelogs/2.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Features

- You can now independently change the zoom in and out transitions.

![](https://raw.githubusercontent.com/isXander/Zoomify/1.19/screenshots/independent-zoom-transition.png)

## Translation Updates

- Add Spanish (Spain) Translation - [Zetsphiron](https://github.com/isXander/Zoomify/pull/73)
- Add Spanish (Mexico) Translation - [Zetsphiron](https://github.com/isXander/Zoomify/pull/73)
- Update Chinese (Simplified) Translation - [神枪968](https://github.com/isXander/Zoomify/pull/67)
- Update Portuguese Translation - [Rodrigo Appelt](https://github.com/isXander/Zoomify/pull/69)
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ systemProp.kotlinVersion=1.7.10
# https://fabricmc.net/develop
minecraftVersion=1.19.2
loaderVersion=0.14.+
fabricVersion=0.59.0+1.19.2
fabricVersion=0.60.0+1.19.2
fabricKotlinVersion=1.8.2
settxiVersion=2.7.1
settxiVersion=2.7.3

modrinthId=zoomify
curseforgeId=574741
Expand Down
Binary file modified screenshots/behaviour-settings-page.png
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 screenshots/independent-zoom-transition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ object ZoomifySettings : SettxiConfigKotlinx(FabricLoader.getInstance().configDi
category = BEHAVIOUR
defaultSerializedValue = { _, category ->
if (category?.containsKey("zoomify_gui_zoomtransition_name") == true) {
category["zoomify_gui_zoomtransition_name"]!!.primitive
needsSaving = true
category["zoomify_gui_zoomtransition_name"]!!
} else {
PrimitiveType.of(default.ordinal)
}
Expand All @@ -67,7 +68,8 @@ object ZoomifySettings : SettxiConfigKotlinx(FabricLoader.getInstance().configDi
category = BEHAVIOUR
defaultSerializedValue = { _, category ->
if (category?.containsKey("zoomify_gui_zoomtransition_name") == true) {
category["zoomify_gui_zoomtransition_name"]!!.primitive
needsSaving = true
category["zoomify_gui_zoomtransition_name"]!!
} else {
PrimitiveType.of(default.ordinal)
}
Expand Down

0 comments on commit 6aa4f85

Please sign in to comment.