From 6ed03f3c9c2795f65523a3d15b58a29a1d8495a4 Mon Sep 17 00:00:00 2001 From: Robert Borghese <28355157+SomeRanDev@users.noreply.github.com> Date: Tue, 26 Sep 2023 06:15:27 -0400 Subject: [PATCH] Fix references to old username RobertBorghese --- .github/workflows/test_newproject.yml | 2 +- .github/workflows/test_runtime.yml | 2 +- .github/workflows/test_script.yml | 2 +- README.md | 26 +++++++++++++------------- documentation/GenSite.bat | 2 +- haxelib.json | 6 +++--- newproject/haxelib.json | 2 +- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test_newproject.yml b/.github/workflows/test_newproject.yml index 959f6ed..a46410c 100644 --- a/.github/workflows/test_newproject.yml +++ b/.github/workflows/test_newproject.yml @@ -22,7 +22,7 @@ jobs: run: haxe -version - name: Install Reflaxe - run: haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git + run: haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git - name: Test newproject working-directory: newproject diff --git a/.github/workflows/test_runtime.yml b/.github/workflows/test_runtime.yml index 2618e74..4ad9e7e 100644 --- a/.github/workflows/test_runtime.yml +++ b/.github/workflows/test_runtime.yml @@ -39,7 +39,7 @@ jobs: run: haxe -version - name: Install Reflaxe - run: haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git + run: haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git - name: Test DevEnv.hxml working-directory: newproject diff --git a/.github/workflows/test_script.yml b/.github/workflows/test_script.yml index 125ba5e..e37978e 100644 --- a/.github/workflows/test_script.yml +++ b/.github/workflows/test_script.yml @@ -22,7 +22,7 @@ jobs: run: haxe -version - name: Install Reflaxe - run: haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git + run: haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git - name: Make New Folder run: mkdir _Temp diff --git a/README.md b/README.md index a2953e1..dbaa5c2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ I made a reflaxe logo thingy look at it LOOK AT IT -[![Test Workflow](https://github.com/RobertBorghese/reflaxe/actions/workflows/test.yml/badge.svg)](https://github.com/RobertBorghese/reflaxe/actions) +[![Test Workflow](actions/workflows/test.yml/badge.svg)](https://github.com/SomeRanDev/reflaxe/actions) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) Reflaxe Thread @@ -17,16 +17,16 @@ All you need to worry about is programming the conversion from Haxe's typed AST | Topic | Description | | --- | --- | -| [Automatic Installation](https://github.com/RobertBorghese/reflaxe#automatic-installation) | How to generate a Reflaxe project using the "new" command. | -| [Manual Installation](https://github.com/RobertBorghese/reflaxe#manual-installation) | How to install into your library manually. | -| [Building](https://github.com/RobertBorghese/reflaxe#building) | How to build for library for submission. | -| [Reflaxe Properties](https://github.com/RobertBorghese/reflaxe#reflaxe-properties) | How to configure unique properties for your Reflaxe project. | -| [Compiler Code Sample](https://github.com/RobertBorghese/reflaxe/#compiler-code-sample) | How to code the compiler. | -| [CompilerInit Code Sample](https://github.com/RobertBorghese/reflaxe/#compiler-init-code-sample) | How to code the init macro call. | -| [extraParams.hxml Sample](https://github.com/RobertBorghese/reflaxe/#extraparamshxml-sample) | How to configure your library. | -| [compile.hxml Sample](https://github.com/RobertBorghese/reflaxe/#compilerhxml-sample) | How to use your library on other Haxe projects. | -| [BaseCompiler Functions](https://github.com/RobertBorghese/reflaxe/#basecompiler-functions) | The functions used to configure your compiler's behavior and code output. | -| [BaseCompiler Options](https://github.com/RobertBorghese/reflaxe/#basecompiler-options) | Various options passed to Reflaxe for controlling your compiler's input/output. | +| [Automatic Installation](#automatic-installation) | How to generate a Reflaxe project using the "new" command. | +| [Manual Installation](#manual-installation) | How to install into your library manually. | +| [Building](#building) | How to build for library for submission. | +| [Reflaxe Properties](#reflaxe-properties) | How to configure unique properties for your Reflaxe project. | +| [Compiler Code Sample](/#compiler-code-sample) | How to code the compiler. | +| [CompilerInit Code Sample](/#compiler-init-code-sample) | How to code the init macro call. | +| [extraParams.hxml Sample](/#extraparamshxml-sample) | How to configure your library. | +| [compile.hxml Sample](/#compilerhxml-sample) | How to use your library on other Haxe projects. | +| [BaseCompiler Functions](/#basecompiler-functions) | The functions used to configure your compiler's behavior and code output. | +| [BaseCompiler Options](/#basecompiler-options) | Various options passed to Reflaxe for controlling your compiler's input/output. |     @@ -41,7 +41,7 @@ First install Reflaxe using one of the commands below: haxelib install reflaxe # install nightly (recommended!) -haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git +haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git ``` Then run the following command to generate a new Reflaxe project: @@ -62,7 +62,7 @@ haxelib run reflaxe test ## Manual Installation | # | What to do | What to write | | - | ------ | ------ | -| 1 | Install via haxelib git. |
haxelib git reflaxe https://github.com/RobertBorghese/reflaxe.git
| +| 1 | Install via haxelib git. |
haxelib git reflaxe https://github.com/SomeRanDev/reflaxe.git
| | 2 | Add the lib to your `.hxml` file or compile command. |
-lib reflaxe
| | 3 | Extend your compiler class from `BaseCompiler`. |
class MyLangCompiler extends reflaxe.BaseCompiler
| diff --git a/documentation/GenSite.bat b/documentation/GenSite.bat index 583b51d..698402a 100644 --- a/documentation/GenSite.bat +++ b/documentation/GenSite.bat @@ -1,2 +1,2 @@ -haxelib run dox -i . --title Reflaxe -D description "The ultimate framework for creating your own Haxe targets!" --toplevel-package reflaxe -D textColor "0x3d3d3d" -D source-path "https://github.com/RobertBorghese/reflaxe/tree/main/src/" +haxelib run dox -i . --title Reflaxe -D description "The ultimate framework for creating your own Haxe targets!" --toplevel-package reflaxe -D textColor "0x3d3d3d" -D source-path "https://github.com/SomeRanDev/reflaxe/tree/main/src/" :: -theme "./reflaxe-theme" \ No newline at end of file diff --git a/haxelib.json b/haxelib.json index 39fa99b..0a0c709 100644 --- a/haxelib.json +++ b/haxelib.json @@ -2,7 +2,7 @@ "name": "reflaxe", "version": "3.0.0", "description": "A framework for creating Haxe language compilation targets using macros.", - "url": "https://github.com/RobertBorghese/reflaxe", + "url": "https://github.com/SomeRanDev/reflaxe", "license": "MIT", "tags": [ "macro", @@ -14,6 +14,6 @@ "extension" ], "classPath": "src/", - "releasenote": "17 new features + bug fixes. https://github.com/RobertBorghese/reflaxe/releases/tag/v2.0.0", - "contributors": ["RobertBorghese"] + "releasenote": "17 new features + bug fixes. https://github.com/SomeRanDev/reflaxe/releases/tag/v2.0.0", + "contributors": ["SomeRanDev"] } \ No newline at end of file diff --git a/newproject/haxelib.json b/newproject/haxelib.json index d8f99e6..00932f3 100644 --- a/newproject/haxelib.json +++ b/newproject/haxelib.json @@ -5,7 +5,7 @@ "url": "http://example.com", "tags": [], "dependencies": { - "reflaxe": "git:https://github.com/RobertBorghese/reflaxe" + "reflaxe": "git:https://github.com/SomeRanDev/reflaxe" }, "classPath": "src/", "releasenote": "Initial release.",