Skip to content

Commit 442b921

Browse files
committed
2.7.2 prerelease
1 parent 1603f93 commit 442b921

2 files changed

Lines changed: 20 additions & 23 deletions

File tree

stores/firmwareStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const useFirmwareStore = defineStore('firmware', {
5656
isConnected: false,
5757
port: <SerialPort | undefined>{},
5858
couldntFetchFirmwareApi: false,
59-
prereleaseUnlocked: true,//useSessionStorage('prereleaseUnlocked', false),
59+
prereleaseUnlocked: useSessionStorage('prereleaseUnlocked', false),
6060
}
6161
},
6262
getters: {

types/resources.ts

Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,29 @@ import type { FirmwareResource } from './api';
33
// Remove the OfflineHardwareList since it's now in /public/data/hardware-list.json
44

55
const markdownContent = `
6-
## 🛠️ Enhancements
7-
8-
* Add new hardware: Heltec MeshPocket by @Heltec-Aaron-Lee in https://github.com/meshtastic/firmware/pull/6533
9-
* Switch to actually maintained thingsboard pubsubclient by @thebentern in https://github.com/meshtastic/firmware/pull/5204
10-
* Make startup screen show the short ID by @Heltec-Aaron-Lee in https://github.com/meshtastic/firmware/pull/6591
11-
* Update platformio.ini to exclude unused modules from t1000-e by @benkyd in https://github.com/meshtastic/firmware/pull/6584
12-
* Debian: use native-tft compile target by @vidplace7 in https://github.com/meshtastic/firmware/pull/6580
13-
* Create lora-piggystick-lr1121.yaml by @markbirss in https://github.com/meshtastic/firmware/pull/6600
14-
* Add TFT docker builds (for CI) by @vidplace7 in https://github.com/meshtastic/firmware/pull/6614
15-
16-
## 🐛 Bug fixes and enhancements
17-
* Fix Ublox GPS for Heltec T114 by @todd-herbert in https://github.com/meshtastic/firmware/pull/6497
18-
* Portduino: Set C standard to 17 by @vidplace7 in https://github.com/meshtastic/firmware/pull/6561
19-
* Fix: Correct underlying cause of T-Watch not functioning when set to a 16MB filesystem by @Kealper in https://github.com/meshtastic/firmware/pull/6563
20-
* Trunk fixes for heltec mesh pocket. by @fifieldt in https://github.com/meshtastic/firmware/pull/6588
21-
* Fix T-Echo display light blink on LoRa TX by @todd-herbert in https://github.com/meshtastic/firmware/pull/6590
22-
23-
## 👥 New Contributors
24-
* @benkyd made their first contribution in https://github.com/meshtastic/firmware/pull/6584
25-
* @Nivek-domo made their first contribution in https://github.com/meshtastic/firmware/pull/6622
266
7+
## 🚀 Enhancements
8+
* Fast fix, remove saving tx power inside limitPower() by @mrekin in https://github.com/meshtastic/firmware/pull/7255
9+
* Show user which Clock Face option is currently elected by @Xaositek in https://github.com/meshtastic/firmware/pull/7271
10+
* Heltec Wireless Paper, VM-E213 Hardware Revisions by @todd-herbert in https://github.com/meshtastic/firmware/pull/7258
11+
12+
## 🐛 Bug fixes and maintenance
13+
* Add HWIDs for T1000-E in DFU mode by @thebentern in https://github.com/meshtastic/firmware/pull/7235
14+
* chore(deps): update meshtastic/device-ui digest to 8c7092c by @renovate in https://github.com/meshtastic/firmware/pull/7238
15+
* Automatically bail user out of displaymode_color when not HAS_TFT by @jp-bennett in https://github.com/meshtastic/firmware/pull/7248
16+
* Don't run bluetooth gerFromRadio() unless the phone has requested a packet by @jp-bennett in https://github.com/meshtastic/firmware/pull/7231
17+
* Try-fix: L76K spamming bad times can crash nodes by @thebentern in https://github.com/meshtastic/firmware/pull/7261
18+
* Fix install script by @Pitel in https://github.com/meshtastic/firmware/pull/7259
19+
* Modules and favorite screen fix by @HarukiToreda in https://github.com/meshtastic/firmware/pull/7264
20+
* TFT_MESH Fixes Across Various Devices by @Xaositek in https://github.com/meshtastic/firmware/pull/7247
21+
* Update Bluetooth Toggle to match other variants by @Xaositek in https://github.com/meshtastic/firmware/pull/7269
22+
* Make PacketHistory logging less chatty by @thebentern in https://github.com/meshtastic/firmware/pull/7272
23+
* GitHub Actions faster!! (again) by @vidplace7 in https://github.com/meshtastic/firmware/pull/7268
2724
`;
2825

29-
const currentPrereleaseId = '2.6.6.54c1423';
26+
const currentPrereleaseId = '2.7.2.f6d3782';
3027

31-
export const showPrerelease = false;
28+
export const showPrerelease = true;
3229

3330
export const currentPrerelease = <FirmwareResource>{
3431
id: `v${currentPrereleaseId}`,

0 commit comments

Comments
 (0)