Browse Source

add message when no projects are found in a search, and bump to version 0.3.23

master
Trent Larson 3 weeks ago
parent
commit
f5cbeafd5b
  1. 3
      CHANGELOG.md
  2. 4
      package-lock.json
  3. 2
      package.json
  4. 6
      src/views/DiscoverView.vue

3
CHANGELOG.md

@ -6,10 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.3.22] - 2024.08.30
## [0.3.23] - 2024.08.30
### Added
- Sections in Help for different kinds of users
- Discovery page parameters so that links with search text work
- Message when no projects are found
## [0.3.21] - 2024.08.24

4
package-lock.json

@ -1,12 +1,12 @@
{
"name": "TimeSafari",
"version": "0.3.22",
"version": "0.3.23",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "TimeSafari",
"version": "0.3.22",
"version": "0.3.23",
"dependencies": {
"@dicebear/collection": "^5.4.1",
"@dicebear/core": "^5.4.1",

2
package.json

@ -1,6 +1,6 @@
{
"name": "TimeSafari",
"version": "0.3.22",
"version": "0.3.23",
"scripts": {
"dev": "vite",
"serve": "vite preview",

6
src/views/DiscoverView.vue

@ -93,6 +93,12 @@
>
<fa icon="spinner" class="fa-spin-pulse"></fa>
</div>
<div v-else-if="projects.length === 0" class="text-center mt-8">
<p class="text-lg text-slate-500">
No projects were found with that search.
<span v-if="isLocalActive">Try looking Anywhere.</span>
</p>
</div>
<!-- Results List -->
<InfiniteScroll @reached-bottom="loadMoreData">

Loading…
Cancel
Save