-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
369 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
#os: [ubuntu-latest, macos-latest] # for now we drop windows | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
perl-version: ['5.38', '5.40'] | ||
|
||
|
@@ -21,7 +20,9 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: shogo82148/actions-setup-perl@v1 | ||
with: | ||
perl-version: ${{ matrix.perl-version }} | ||
- name: Install System Dependencies (Linux) | ||
if: runner.os == 'Linux' | ||
run: | | ||
|
@@ -38,6 +39,19 @@ jobs: | |
libwayland-dev \ | ||
libxkbcommon-dev | ||
- name: Install Alien-raylib5 | ||
uses: perl-actions/[email protected] | ||
with: | ||
install: https://github.com/perigrin/Alien-raylib5.git | ||
verbose: true | ||
|
||
# as of right now 6.2 doesn't pass tests so we install it by hand | ||
- name: Install Module::Pluggable | ||
uses: perl-actions/[email protected] | ||
with: | ||
install: Module::Pluggable | ||
tests: false | ||
|
||
- name: Build and Test | ||
uses: perl-actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# This Build.PL for Raylib-FFI was generated by mbtiny 0.044. | ||
use 5.008; | ||
# This Build.PL for Raylib-FFI was generated by mbtiny 0.047. | ||
use v5.38.0; | ||
use Module::Build::Tiny 0.039; | ||
Build_PL(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
Revision history for Raylib-FFI | ||
|
||
0.001 2024-06-26 | ||
First release | ||
0.02 2024-11-20 Added support for raylib 5.5 | ||
- Updated validation function names from "Ready" to "Valid" to match | ||
raylib 5.5 | ||
- Added new window management functions (ToggleBorderlessWindowed, | ||
SetWindowIcons, SetWindowFocused, GetWindowScaleDPI) | ||
- Added new clipboard function (GetClipboardImage) | ||
- Added event waiting functions (EnableEventWaiting, DisableEventWaiting) | ||
|
||
0.01 2024-06-26 | ||
First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"Ahmad Fatoum C<< <[email protected]> >>, L<http://a3f.at>" | ||
], | ||
"dynamic_config" : 0, | ||
"generated_by" : "App::ModuleBuildTiny version 0.044", | ||
"generated_by" : "App::ModuleBuildTiny version 0.047", | ||
"license" : [ | ||
"perl_5" | ||
], | ||
|
@@ -23,19 +23,20 @@ | |
}, | ||
"develop" : { | ||
"requires" : { | ||
"App::ModuleBuildTiny" : "0.044" | ||
"App::ModuleBuildTiny" : "0.047" | ||
} | ||
}, | ||
"runtime" : { | ||
"requires" : { | ||
"Alien::raylib" : "0", | ||
"Alien::raylib5" : "0", | ||
"Convert::Color" : "0", | ||
"FFI::C" : "0", | ||
"FFI::CheckLib" : "0", | ||
"FFI::Platypus" : "0", | ||
"FFI::Platypus" : "2.08", | ||
"File::Share" : "0", | ||
"Module::Build::Tiny" : "0", | ||
"builtin::Backport" : "0" | ||
"builtin::Backport" : "0", | ||
"perl" : "v5.38.0" | ||
} | ||
} | ||
}, | ||
|
@@ -48,11 +49,17 @@ | |
}, | ||
"Raylib::FFI" : { | ||
"file" : "lib/Raylib/FFI.pm", | ||
"version" : "0.01" | ||
"version" : "0.02" | ||
}, | ||
"Raylib::FFI::AudioStream" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
"Raylib::FFI::AutomationEvent" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
"Raylib::FFI::AutomationEventList" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
"Raylib::FFI::BoneInfo" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
|
@@ -68,6 +75,9 @@ | |
"Raylib::FFI::Color" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
"Raylib::FFI::FilePathList" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
"Raylib::FFI::Font" : { | ||
"file" : "lib/Raylib/FFI.pm" | ||
}, | ||
|
@@ -160,7 +170,7 @@ | |
} | ||
}, | ||
"release_status" : "stable", | ||
"version" : "0.01", | ||
"version" : "0.02", | ||
"x_serialization_backend" : "JSON::PP version 4.16", | ||
"x_spdx_expression" : "Artistic-1.0-Perl OR GPL-1.0-or-later" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
requires 'perl' => '5.38.0'; | ||
|
||
requires 'Module::Build::Tiny'; | ||
requires 'Alien::raylib'; | ||
requires 'Alien::raylib5'; | ||
requires 'Convert::Color'; | ||
requires 'FFI::C'; | ||
requires 'FFI::CheckLib'; | ||
requires 'FFI::Platypus'; | ||
requires 'FFI::Platypus' => '2.08'; | ||
requires 'File::Share'; | ||
requires 'builtin::Backport'; |
Oops, something went wrong.