Skip to content

Commit

Permalink
Items (#9)
Browse files Browse the repository at this point in the history
* Add hidden items feature

Items with one or more tags starting with the underscore character '_' are hidden from search results. It is possible to list these items by exploring their respective tags.

* Add item sorting feature

* Dependencies maintenance

* Bump version
  • Loading branch information
achatain authored Oct 16, 2024
1 parent e783169 commit f8b9518
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 224 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'application'
}

version '1.5.1'
version '1.6.10'
group 'com.bonjoursoftware'

repositories {
Expand All @@ -18,17 +18,17 @@ configurations {
dependencies {
compileOnly platform("io.micronaut:micronaut-bom:$micronautVersion")
compileOnly 'io.micronaut:micronaut-inject-groovy'
implementation 'org.mongodb:mongodb-driver-sync:5.1.3'
implementation 'org.mongodb:mongodb-driver-sync:5.2.0'
implementation platform("io.micronaut:micronaut-bom:$micronautVersion")
implementation 'io.micronaut:micronaut-runtime-groovy:1.1.3'
implementation 'io.micronaut:micronaut-validation'
implementation 'javax.annotation:javax.annotation-api'
implementation 'io.micronaut:micronaut-http-server-netty'
implementation 'io.micronaut:micronaut-http-client'
implementation 'io.micronaut.security:micronaut-security:2.5.0'
implementation 'com.sendgrid:sendgrid-java:4.10.2'
implementation 'com.sendgrid:sendgrid-java:4.10.3'
implementation 'org.springframework.security:spring-security-crypto:5.8.14'
runtimeOnly 'ch.qos.logback:logback-classic:1.5.7'
runtimeOnly 'ch.qos.logback:logback-classic:1.5.11'
testCompileOnly platform("io.micronaut:micronaut-bom:$micronautVersion")
testImplementation platform("io.micronaut:micronaut-bom:$micronautVersion")
testImplementation('org.spockframework:spock-core') {
Expand All @@ -37,7 +37,7 @@ dependencies {
testImplementation 'io.micronaut:micronaut-inject-groovy'
testImplementation 'io.micronaut.test:micronaut-test-spock'
testImplementation 'io.micronaut.test:micronaut-test-junit5'
testImplementation 'net.bytebuddy:byte-buddy:1.15.1'
testImplementation 'net.bytebuddy:byte-buddy:1.15.4'
}

test.classpath += configurations.developmentOnly
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ popd || exit
echo 'Building the application...'
docker build --no-cache -t bonjoursoftware/mycollections:local .
CONTAINER_ID=$(docker create docker.io/bonjoursoftware/mycollections:local)
docker cp "$CONTAINER_ID":mycollections.jar ./mycollections-1.5.1-all.jar
docker cp "$CONTAINER_ID":mycollections.jar ./mycollections-1.6.10-all.jar
docker container rm "$CONTAINER_ID"
4 changes: 2 additions & 2 deletions src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>MyCollections 1.5.1 | Bonjour Software Limited</title>
<title>MyCollections 1.6.10 | Bonjour Software Limited</title>
<link rel="stylesheet" href="bulmaswatch.min.css">
<script defer src="fontawesome.all.js"></script>
</head>
Expand All @@ -20,7 +20,7 @@
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>MyCollections 1.5.1</strong> by <a href="https://bonjoursoftware.com/" rel="noopener noreferrer" target="_blank">Bonjour Software Limited</a>.
<strong>MyCollections 1.6.10</strong> by <a href="https://bonjoursoftware.com/" rel="noopener noreferrer" target="_blank">Bonjour Software Limited</a>.
</p>
<p>
<a href="https://github.com/bonjoursoftware/mycollections/" rel="noopener noreferrer" target="_blank">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/mycollections.js

Large diffs are not rendered by default.

Loading

0 comments on commit f8b9518

Please sign in to comment.