Changeset 104054 in vbox
- Timestamp:
- Mar 26, 2024 8:52:58 AM (8 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Version.kmk
r98445 r104054 45 45 VBOX_RELEASE_EXACT_MATCH = 46 46 47 # darwin.arm64 will remain BETA for quite a while.48 if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), darwin.arm64)49 if $(VBOX_VERSION_BUILD) % 2 == 050 ifeq ($(VBOX_VERSION_PRERELEASE),)51 VBOX_RELEASE_EXACT_MATCH := 152 endif53 endif54 VBOX_VERSION_PRERELEASE := BETA555 endif56 57 47 # Fallback revision when there is no other source. See Config.kmk. 58 48 VBOX_SVN_REV_VERSION_FALLBACK := $(patsubst %:,, $Rev$ ) -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVersion.cpp
r103793 r104054 211 211 bool UIVersionInfo::isBeta() 212 212 { 213 #if defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) 214 return true; 215 #else 213 216 return vboxVersionString().contains(QRegularExpression("BETA|ALPHA", QRegularExpression::CaseInsensitiveOption)); 217 #endif 214 218 } 215 219 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r103793 r104054 677 677 m_pToolBar->setContextMenuPolicy(Qt::CustomContextMenu); 678 678 m_pToolBar->setUseTextLabels(true); 679 #ifdef VBOX_WS_MAC 680 m_pToolBar->emulateMacToolbar(); 679 #if defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) 681 680 /* Branding stuff for Qt6 beta: */ 682 681 if (UIVersionInfo::showBetaLabel()) 682 { 683 # ifdef VBOX_WS_MAC 684 m_pToolBar->emulateMacToolbar(); 685 # endif /* VBOX_WS_MAC */ 683 686 m_pToolBar->enableBranding(UIIconPool::iconSet(":/explosion_hazard_32px.png"), 684 687 "Dev Preview", // do we need to make it NLS? 685 688 QColor(246, 179, 0), 686 689 74 /* width of BETA label */); 687 #endif /* VBOX_WS_MAC */ 690 } 691 #endif /* defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) */ 688 692 689 693 /* Add toolbar into layout: */
Note:
See TracChangeset
for help on using the changeset viewer.