Skip to content

Commit

Permalink
bump version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
3ddelano committed Apr 19, 2024
1 parent 2828faf commit e5223cd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-${{ matrix.identifier }}-${{ github.sha }}
name: ${{ github.event.repository.name }}-${{ matrix.platform }}-${{ matrix.arch }}-${{ github.sha }}
path: |
${{ github.workspace }}/artifact-${{ matrix.platform }}-${{ matrix.arch }}/
retention-days: 14
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Epic Online Services Godot
Epic Online Services Godot (EOSG)
=========================================
<img alt="Project Logo" src="./_media/logo.png" height="150">

Expand Down Expand Up @@ -59,7 +59,7 @@ This is a regular plugin for `Godot 4.2`. To install the plugin follow the steps

1. Goto the Releases section and download the [latest release](https://github.com/3ddelano/epic-online-services-godot/releases/latest)
2. Extract the zip file and copy the `addons/epic-online-services-godot` folder into the `res://addons/` folder of your project. If the `res://addons` does not exist, create it.
3. In the Godot editor, goto `Project->Project Settings->Plugins` and enable the `Epic Online Services Godot 4.2` plugin.
3. In the Godot editor, goto `Project->Project Settings->Plugins` and enable the `Epic Online Services Godot 4.2 (EOSG)` plugin.
4. Restart the godot editor.
5. You can now use the plugin. Head to the [Documentation](#) for more information on how to use the plugin. Use the below starter script.
```GDScript
Expand Down
4 changes: 1 addition & 3 deletions sample/addons/epic-online-services-godot/export_plugin.gd
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
@tool
extends EditorExportPlugin


func _get_name() -> String:
return "Epic Online Services Godot 4.2"

return "Epic Online Services Godot 4.2 (EOSG)"

func _export_begin(features: PackedStringArray, is_debug: bool, path: String, flags: int):
var target_platform = features[2]
Expand Down
4 changes: 2 additions & 2 deletions sample/addons/epic-online-services-godot/plugin.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[plugin]

name="Epic Online Services Godot 4.2"
name="Epic Online Services Godot 4.2 (EOSG)"
description="Unofficial Epic Online Services for Godot 4.2 (includes demo project)"
author="3ddelano"
version="2.1.0"
version="2.1.1"
script="plugin.gd"
16 changes: 8 additions & 8 deletions sample/components/StyledPopupWindow/StyledPopupWindowTheme.tres

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sample/project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ config_version=5

[application]

config/name="Epic Online Services Godot 4.2"
config/name="Epic Online Services Godot 4.2 (EOSG)"
run/main_scene="res://Main.tscn"
config/features=PackedStringArray("4.2")
config/icon="res://logo.png"
Expand All @@ -27,7 +27,7 @@ window/stretch/mode="canvas_items"

[dotnet]

project/assembly_name="Epic Online Services Godot 4.2"
project/assembly_name="Epic Online Services Godot 4.2 (EOSG)"

[editor_plugins]

Expand Down
4 changes: 2 additions & 2 deletions sample/scenes/LobbiesView/LobbiesView.gd
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ func _on_create_lobby_callback(data: Dictionary):

modify_lobby(current_lobby)

if current_lobby.is_rtc_room_enabled():
_subscribe_to_rtc_events()
#if current_lobby.is_rtc_room_enabled():
#_subscribe_to_rtc_events()


func _on_update_lobby_callback(data: Dictionary):
Expand Down

0 comments on commit e5223cd

Please sign in to comment.