File tree Expand file tree Collapse file tree 4 files changed +1
-29
lines changed
webviews/apps/shared/components Expand file tree Collapse file tree 4 files changed +1
-29
lines changed Original file line number Diff line number Diff line change 18791
18791
"contents": "Limited-time sale: Save 33% or more on your 1st seat of Pro.",
18792
18792
"when": "gitlens:plus:required && gitlens:plus:state == 4 && (gitlens:promo == pro50 || !gitlens:promo)"
18793
18793
},
18794
- {
18795
- "view": "gitlens.views.worktrees",
18796
- "contents": "Launchpad sale: Save 75% or more on GitLens Pro",
18797
- "when": "gitlens:plus:required && gitlens:plus:state == 4 && gitlens:promo == launchpad-extended"
18798
- },
18799
18794
{
18800
18795
"view": "gitlens.views.worktrees",
18801
18796
"contents": "Limited-time sale: Save up to 80% on GitLens Pro",
Original file line number Diff line number Diff line change 1
1
export const proPreviewLengthInDays = 3 ;
2
2
export const proTrialLengthInDays = 7 ;
3
3
4
- export type PromoKeys = 'devexdays' | 'launchpad-extended' | ' pro50';
4
+ export type PromoKeys = 'devexdays' | 'pro50' ;
5
5
6
6
export const enum SubscriptionPlanId {
7
7
Community = 'community' ,
Original file line number Diff line number Diff line change @@ -20,24 +20,6 @@ export interface Promo {
20
20
21
21
// Must be ordered by applicable order
22
22
const promos : Promo [ ] = [
23
- {
24
- key : 'launchpad-extended' ,
25
- code : 'GLLAUNCHPAD24' ,
26
- states : [
27
- SubscriptionState . Community ,
28
- SubscriptionState . ProPreview ,
29
- SubscriptionState . ProPreviewExpired ,
30
- SubscriptionState . ProTrial ,
31
- SubscriptionState . ProTrialExpired ,
32
- SubscriptionState . ProTrialReactivationEligible ,
33
- ] ,
34
- startsOn : new Date ( '2024-09-27T06:59:00.000Z' ) . getTime ( ) ,
35
- expiresOn : new Date ( '2024-10-14T06:59:00.000Z' ) . getTime ( ) ,
36
- command : { tooltip : 'Launchpad sale: Save 75% or more on GitLens Pro' } ,
37
- quickpick : {
38
- detail : '$(rocket) Launchpad sale: Save 75% or more on GitLens Pro' ,
39
- } ,
40
- } ,
41
23
{
42
24
key : 'devexdays' ,
43
25
code : 'DEVEXDAYS24' ,
Original file line number Diff line number Diff line change @@ -84,11 +84,6 @@ export class GlPromo extends LitElement {
84
84
> Limited-Time sale: < b > Save 33% or more</ b > on your 1st seat of Pro</ span
85
85
> ` ;
86
86
87
- case 'launchpad-extended' :
88
- return html `< span class ="content ${ this . type === 'link' ? nothing : ' muted' } "
89
- > Launchpad sale: < b > Save 75% or more</ b > on GitLens Pro</ span
90
- > ` ;
91
-
92
87
case 'devexdays' :
93
88
return html `< span class ="content ${ this . type === 'link' ? nothing : ' muted' } "
94
89
> Limited-time sale: < b > Save up to 80%</ b > on GitLens Pro</ span
You can’t perform that action at this time.
0 commit comments