File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ include(FetchContent)
11
11
FetchContent_Declare (
12
12
bave
13
13
GIT_REPOSITORY https://github.com/karnkaul/bave
14
- GIT_TAG 0a2acfe8ed2de696d71bdf0ccd1f5c14288f26c2 # v0.4.5
14
+ GIT_TAG 5002fc271533a3268592c47c5bc8653ae094dc6b # v0.4.6
15
15
SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR} /ext/bave"
16
16
)
17
17
Original file line number Diff line number Diff line change 10
10
android:label=" @string/app_name"
11
11
android:roundIcon=" @mipmap/ic_launcher_round"
12
12
android:supportsRtl=" true"
13
- android:theme=" @style/Theme.Hog "
13
+ android:theme=" @style/Theme.Spaced "
14
14
tools:targetApi=" 31" >
15
15
16
16
<activity android : name =" android.app.NativeActivity"
Original file line number Diff line number Diff line change 1
1
<resources xmlns : tools =" http://schemas.android.com/tools" >
2
2
<!-- Base application theme. -->
3
- <style name =" Theme.Hog " parent =" Theme.MaterialComponents.DayNight.DarkActionBar" >
3
+ <style name =" Theme.Spaced " parent =" Theme.MaterialComponents.DayNight.DarkActionBar" >
4
4
<!-- Primary brand color. -->
5
5
<item name =" colorPrimary" >@color/purple_200</item >
6
6
<item name =" colorPrimaryVariant" >@color/purple_700</item >
13
13
<item name =" android:statusBarColor" >?attr/colorPrimaryVariant</item >
14
14
<!-- Customize your theme here. -->
15
15
</style >
16
- </resources >
16
+ </resources >
Original file line number Diff line number Diff line change 1
1
<resources xmlns : tools =" http://schemas.android.com/tools" >
2
2
<!-- Base application theme. -->
3
- <style name =" Theme.Hog " parent =" Theme.MaterialComponents.DayNight.DarkActionBar" >
3
+ <style name =" Theme.Spaced " parent =" Theme.MaterialComponents.DayNight.DarkActionBar" >
4
4
<!-- Primary brand color. -->
5
5
<item name =" colorPrimary" >@color/purple_500</item >
6
6
<item name =" colorPrimaryVariant" >@color/purple_700</item >
13
13
<item name =" android:statusBarColor" >?attr/colorPrimaryVariant</item >
14
14
<!-- Customize your theme here. -->
15
15
</style >
16
- </resources >
16
+ </resources >
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ void set_log_max_levels() {
42
42
auto run (int const argc, char const * const * argv) -> int {
43
43
auto create_info = bave::DesktopApp::CreateInfo{
44
44
.args = bave::make_args (argc, argv),
45
- .title = " Hog " ,
45
+ .title = " Spaced " ,
46
46
.mode = bave::Windowed{.extent = {1920 , 1080 }},
47
47
.msaa = vk::SampleCountFlagBits::e4 ,
48
48
.assets_patterns = " assets" ,
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Spaced : public bave::Driver {
27
27
void set_layout ();
28
28
void set_scene ();
29
29
30
- bave::Logger m_log{" Hog " };
30
+ bave::Logger m_log{" Spaced " };
31
31
Services m_services{};
32
32
bave::Ptr<ILayout> m_layout{};
33
33
std::unique_ptr<Scene> m_scene{};
You can’t perform that action at this time.
0 commit comments