Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

Commit 4847480

Browse files
committed
Bump version and updated CHANGELOG.md
Also allow all versions for initial release Signed-off-by: DeathsGun <deathsgun@protonmail.com>
1 parent bf27e90 commit 4847480

File tree

4 files changed

+7
-18
lines changed

4 files changed

+7
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
Bugs fixed:
22

3-
- NullPointerException [#42](https://github.com/DeathsGun/ModManager/issues/42)
4-
- NullPointerException [#61](https://github.com/DeathsGun/ModManager/issues/64)
5-
- Forge versions shown as update [#56](https://github.com/DeathsGun/ModManager/issues/56)
6-
- Old versions not being deleted [#51](https://github.com/DeathsGun/ModManager/issues/51)
7-
- Mods shown outdated but there actually up to date [#52](https://github.com/DeathsGun/ModManager/issues/52)
3+
- Old versions not being deleted (Now really) [#51](https://github.com/DeathsGun/ModManager/issues/51)
4+
- Fix whitespaces producing errors [#70](https://github.com/DeathsGun/ModManager/issues/70)
5+
- Fix tabs producing errors [#67](https://github.com/DeathsGun/ModManager/issues/67)
86

97
Improvements:
108

11-
- Complete rewrite in Kotlin [#44](https://github.com/DeathsGun/ModManager/pull/44)
12-
- Allows mods to specify their Modrinth project id [#8](https://github.com/DeathsGun/ModManager/issues/8)
13-
- Icons are now cached through restarts (Max: 10 MB) [#24](https://github.com/DeathsGun/ModManager/issues/24)
14-
- Restart notification when mods get updated, removed or
15-
installed [#30](https://github.com/DeathsGun/ModManager/issues/30)
16-
- Continue scrolling in the mod list [#38](https://github.com/DeathsGun/ModManager/issues/38)
17-
- Show changelog, current version and target version before
18-
update [#41](https://github.com/DeathsGun/ModManager/issues/41)
19-
- Sort mods by relevance, downloads, updated and newest [#45](https://github.com/DeathsGun/ModManager/issues/45)
20-
- Allows mods to disable update checking for their mod [#62](https://github.com/DeathsGun/ModManager/issues/62)
9+
- Added updated turkish translation (thanks to kuzeeeyk) [#75](https://github.com/DeathsGun/ModManager/pull/75)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ minecraft_version=1.17.1
2323
yarn_mappings=1.17.1+build.39
2424
loader_version=0.11.6
2525
# Mod Properties
26-
mod_version=1.1.0-alpha+1.17
26+
mod_version=1.1.1-alpha+1.17
2727
maven_group=xyz.deathsgun
2828
archives_base_name=modmanager
2929
# Dependencies

src/main/kotlin/xyz/deathsgun/modmanager/config/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ data class Config(
4646
if (e !is NoSuchFileException) {
4747
e.printStackTrace()
4848
}
49-
saveConfig(Config("modrinth", UpdateChannel.STABLE))
49+
saveConfig(Config("modrinth", UpdateChannel.ALL))
5050
}
5151
}
5252

src/main/kotlin/xyz/deathsgun/modmanager/gui/ConfigScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ConfigScreen(private val previousScreen: Screen) : Screen(LiteralText("Con
4242
defaultProvider.active = ModManager.modManager.provider.size > 1
4343

4444
updateChannel = addDrawableChild(CyclingButtonWidget.builder<Config.UpdateChannel> { it.text() }
45-
.values(Config.UpdateChannel.values().toList())
45+
.values(listOf(Config.UpdateChannel.ALL, Config.UpdateChannel.STABLE))
4646
.initially(config.updateChannel)
4747
.build(width - 220, 60, 200, 20, TranslatableText("modmanager.button.updateChannel"))
4848
{ _: CyclingButtonWidget<Any>, channel: Config.UpdateChannel -> config.updateChannel = channel })

0 commit comments

Comments
 (0)