Skip to content

Commit

Permalink
Upgrade to v2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alanpeng committed Jan 20, 2024
1 parent cad6297 commit ff01465
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 4 deletions.
1 change: 1 addition & 0 deletions build-harbor-aarch64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ cd harbor-arm
git clone --branch ${GIT_BRANCH} https://github.com/goharbor/harbor.git src/github.com/goharbor/harbor
cp -f ../harbor/Makefile src/github.com/goharbor/harbor/
cp -f ../harbor/make/photon/Makefile src/github.com/goharbor/harbor/make/photon/
cp -f ../harbor/src/portal/src/app/shared/components/about-dialog/about-dialog.component.html src/github.com/goharbor/harbor/src/portal/src/app/shared/components/about-dialog/

# compile redis
make compile_redis
Expand Down
6 changes: 2 additions & 4 deletions harbor/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
GIT_BRANCH="v2.10.0"

# Makefile for Harbor project
#
# Targets:
Expand Down Expand Up @@ -88,7 +86,7 @@ GEN_TLS=

# version prepare
# for docker image tag
VERSIONTAG=${GIT_BRANCH}
VERSIONTAG=dev
# for base docker image tag
BUILD_BASE=true
PUSHBASEIMAGE=false
Expand All @@ -100,7 +98,7 @@ BASEIMAGENAMESPACE=goharbor
PULL_BASE_FROM_DOCKERHUB=true

# for harbor package name
PKGVERSIONTAG=${GIT_BRANCH}
PKGVERSIONTAG=dev

PREPARE_VERSION_NAME=versions

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<clr-modal
[(clrModalOpen)]="opened"
[clrModalClosable]="false"
[clrModalStaticBackdrop]="false">
<div class="modal-body dialog-body">
<div class="harbor-logo-black">
<img
[src]="
customLogo
? 'images/' + customLogo
: 'images/harbor-logo.svg'
"
class="harbor-icon" />
</div>
<div class="content" tabindex="1">
<div>
{{ customName ? customName : ('APP_TITLE.HARBOR' | translate) }}
</div>
<div>
<span class="p5 about-version"
>{{ 'ABOUT.VERSION' | translate }} v2.10.0-aarch64 built by Alan Peng.</span
>
</div>
<div *ngIf="!customIntroduction">
<p class="p5">{{ 'ABOUT.COPYRIGHT' | translate }}</p>
<p class="p5">
<a
routerLink="/license"
target="_blank"
rel="noopener noreferrer"
>{{ 'ABOUT.OPEN_SOURCE_LICENSE' | translate }}</a
>
</p>
</div>
<div *ngIf="customIntroduction">
<p class="p5">{{ customIntroduction }}</p>
</div>
</div>
</div>
<div class="modal-footer margin-left-override">
<button type="button" class="btn btn-primary" (click)="close()">
{{ 'BUTTON.CLOSE' | translate }}
</button>
</div>
</clr-modal>

0 comments on commit ff01465

Please sign in to comment.