Skip to content

Commit 12b8062

Browse files
authored
improvements (#662)
* improvements * address pr comments * update checkout * u * fix windows * zip writer * fix some sht * fix windows * wip * fix AForEachUI was not inflating if children has size changed * added aui::reactive::Expr constructor for APropertyPrecomputed * aui::archive::zip: use AStringView * add file count * wip * address PR comments
1 parent 691ae28 commit 12b8062

28 files changed

+717
-117
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: "Documentation"
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
submodules: true
2929

@@ -56,7 +56,7 @@ jobs:
5656
name: "Android"
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060
with:
6161
submodules: true
6262
- uses: actions/setup-java@v1
@@ -89,7 +89,7 @@ jobs:
8989
name: "iOS Debug"
9090
runs-on: macos-latest
9191
steps:
92-
- uses: actions/checkout@v5
92+
- uses: actions/checkout@v6
9393
with:
9494
submodules: true
9595

@@ -128,7 +128,7 @@ jobs:
128128
shared_or_static: [shared, static]
129129
generator: ["Ninja"]
130130
steps:
131-
- uses: actions/checkout@v5
131+
- uses: actions/checkout@v6
132132
with:
133133
submodules: true
134134

@@ -212,7 +212,7 @@ jobs:
212212
generator: "Ninja"
213213

214214
steps:
215-
- uses: actions/checkout@v5
215+
- uses: actions/checkout@v6
216216
with:
217217
submodules: true
218218

@@ -335,7 +335,7 @@ jobs:
335335
generator: "Ninja"
336336

337337
steps:
338-
- uses: actions/checkout@v5
338+
- uses: actions/checkout@v6
339339
with:
340340
submodules: true
341341

@@ -429,7 +429,7 @@ jobs:
429429
shared_or_static: [shared, static]
430430

431431
steps:
432-
- uses: actions/checkout@v5
432+
- uses: actions/checkout@v6
433433
with:
434434
submodules: true
435435

@@ -490,7 +490,7 @@ jobs:
490490
build_type: [Debug, Release]
491491
shared_or_static: [shared, static]
492492
steps:
493-
- uses: actions/checkout@v5
493+
- uses: actions/checkout@v6
494494

495495
- name: Download artifact
496496
uses: actions/download-artifact@v4
@@ -537,7 +537,7 @@ jobs:
537537
steps:
538538
- name: Checkout
539539
if: ${{ !contains(github.ref, 'tags/v') }}
540-
uses: actions/checkout@v5
540+
uses: actions/checkout@v6
541541

542542
# Remove old release drafts
543543
- name: Remove Old Release Drafts

.run/All UI tests.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration default="false" name="All UI tests" type="CMakeGoogleTestRunConfigurationType" factoryName="Google Test" PROGRAM_PARAMS="--gtest_catch_exceptions=0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" EMULATE_TERMINAL="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="AUI" TARGET_NAME="Tests" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="AUI" RUN_TARGET_NAME="Tests" TEST_PATTERN="UI*" TEST_MODE="PATTERN">
2+
<configuration default="false" name="All UI tests" type="CMakeGoogleTestRunConfigurationType" factoryName="Google Test" PROGRAM_PARAMS="--gtest_catch_exceptions=0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" EMULATE_TERMINAL="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="hackers-mc-launcher" TARGET_NAME="Tests" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="hackers-mc-launcher" RUN_TARGET_NAME="Tests" TEST_PATTERN="UI*" TEST_MODE="PATTERN">
33
<method v="2">
44
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
55
<option name="BeforeTestRunTask" enabled="true" />

.run/All tests.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration default="false" name="All tests" type="CMakeGoogleTestRunConfigurationType" factoryName="Google Test" PROGRAM_PARAMS="--gtest_catch_exceptions=0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" EMULATE_TERMINAL="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="AUI" TARGET_NAME="Tests" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="AUI" RUN_TARGET_NAME="Tests" TEST_MODE="SUITE_TEST">
2+
<configuration default="false" name="All tests" type="CMakeGoogleTestRunConfigurationType" factoryName="Google Test" PROGRAM_PARAMS="--gtest_catch_exceptions=0" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" EMULATE_TERMINAL="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="hackers-mc-launcher" TARGET_NAME="Tests" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="hackers-mc-launcher" RUN_TARGET_NAME="Tests" TEST_MODE="SUITE_TEST">
33
<method v="2">
44
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
55
<option name="BeforeTestRunTask" enabled="true" />

aui.core/src/AUI/Common/AMap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ class ABaseMap: public Parent
4444

4545
const ValueType& operator[](KeyType&& k) const
4646
{
47-
return Parent::at(std::move(k));
47+
return at(std::move(k));
4848
}
4949

5050
const ValueType& operator[](const KeyType& k) const
5151
{
52-
return Parent::at(k);
52+
return at(k);
5353
}
5454

5555
// ================

0 commit comments

Comments
 (0)