Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/lite-ver-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build lite version
permissions:
contents: write
on:
workflow_dispatch:
push:
branches:
- '**'
jobs:
build:
continue-on-error: true # continue even if build failed for some platform
strategy:
fail-fast: false
matrix:
config:
- name: Windows
os: windows-latest
- name: macOS
os: macos-latest
- name: iOS
os: macos-latest
target: iOS
- name: Android64
os: ubuntu-latest
target: Android64
- name: Android32
os: ubuntu-latest
target: Android32
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build the mod
uses: geode-sdk/build-geode-mod@main
with:
combine: true
target: ${{ matrix.config.target }}
path: _lite
upload:
name: Combine and upload builds
runs-on: ubuntu-latest
needs: ['build']
steps:
- name: "Combine builds"
uses: geode-sdk/build-geode-mod/combine@main
id: build
- name: "Upload artifact"
uses: actions/upload-artifact@v4
with:
name: Build Output
path: ${{ steps.build.outputs.build-output }}
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,6 @@ mergemods.py
/build_linux
/build-android32
/build-android64
.VSCodeCounter
.VSCodeCounter
/.vs
/_lite/.vs
30 changes: 30 additions & 0 deletions _lite/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
cmake_minimum_required(VERSION 3.21)
set(CMAKE_TLS_VERIFY 0)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
if ("${CMAKE_SYSTEM_NAME}" STREQUAL "iOS" OR IOS)
set(CMAKE_OSX_ARCHITECTURES "arm64")
else()
set(CMAKE_OSX_ARCHITECTURES "arm64;x86_64")
endif()

project(GDL_Lite VERSION 2.0.0)

if (NOT DEFINED ENV{GEODE_SDK})
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")
else()
message(STATUS "Found Geode: $ENV{GEODE_SDK}")
endif()

add_subdirectory($ENV{GEODE_SDK} ${CMAKE_CURRENT_BINARY_DIR}/geode)

include_directories("${CMAKE_CURRENT_LIST_DIR}/../api/")

add_library(${PROJECT_NAME} SHARED "_main.cpp")
setup_geode_mod(${PROJECT_NAME})

if (PROJECT_IS_TOP_LEVEL)
target_compile_definitions(${PROJECT_NAME} PRIVATE GDLAPI_EXPORTING)
endif()
16 changes: 16 additions & 0 deletions _lite/CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"configurations": [
{
"name": "x64-Clang-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "clang_cl_x64_x64" ],
"variables": []
}
]
}
26 changes: 26 additions & 0 deletions _lite/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# GDL Lite
```bat
Lite version of mod with more easy modify ways.
```

Geometry Dash Localization is a modification that translates game into other languages.

__If you want to translate GD into your language, please message us in our [Discord server](https://discord.gg/CScsGU3N6M) or @jaan2897 in Discord.__

## Authors
- [__@jaan2897__](https://github.com/JaanDev) - project founder, programmer, website creator, texture and font redrawer.
- [__@myemilia__](https://github.com/mye-creator) - game translator, editor manual translator, creator and owner of the [YouTube channel](https://www.youtube.com/channel/UC7oKo9NgkRz39AAz-6Gb78A).
- [__@demisans__](https://github.com/DemiSans) - game translator, editor guide translator.
- [__@kolyah35__](https://github.com/Kolyah35) - programmer.
- [__@lilray7703__](https://youtube.com/channel/UCK2ADfizaRFJzhei_Qubumg) - texture redrawer.
- [__@pixelsuft__](https://github.com/Pixelsuft) - installer creator (2.1), programmer.
- [__@astrajl___](https://www.youtube.com/channel/UCtC8U-f3iRtm601DcfoUEhg) - texture redrawer.
- [__@maximaldash__](https://www.youtube.com/channel/UCb92kWSQ-5NWIcTZnxHKAfg) - texture redrawer, font designer.
- [__@raelc__](https://github.com/NotRaelc) - game translator.
- [__@user95401__](https://github.com/user95401/gdl-geode) - this lite version of original project.

## Links
- [Our GitHub](https://github.com/gdlocalisation)
- [Our website](https://gdlocalisation.netlify.app/)
- [Discord server](https://discord.gg/CScsGU3N6M) ([Backup](https://discord.gg/Vh6G9G9Tk2))
- [Lite version fork on Github](https://github.com/user95401/gdl-geode)
Loading