Skip to content

Commit

Permalink
Merge Staging into Main (#151)
Browse files Browse the repository at this point in the history
* Bring Staging up to date with Main (#143)

* Merge Staging into Main (#139)

* news carousel adjustments

* adjust explore and tag pages

* work header fixes

* profile header updates

* adjust profile home page

* sizes down work stats on smaller displays

* adjusting works and blogs lists

* Update +layout.svelte

* adding optimizations to section list

* Update +page.svelte

* Update +page.svelte

* Feat/email and recovery (#136)

* feat: password resets and email confirmations

* updating controllers with confirmation guard

* API routes for features now in place

* password resets are in

* email confirmations are now in

* update readme

* Feat/work and comments features (#138)

* Feat/fixing profile forms (#142)

* chore: add beta badge to nav

* chore: fix display of beta badge

* chore: update about panel and version

* adding placeholder for messages panel

* profile forms now work

* fix: redirect approval/rejection notifications to their intended recipient

* adding links form to profile setitngs

* feat: adding links to profile pages

* fix: address issue with layout of admin badge on mobile

* chore: adds unique constraint to the approval queue (#123)

adds a `UNIQUE` constraint to the approval queue table on `work_id`, guaranteeing that works can only ever be submitted to the queue once.

closes #78

* fix: testing new method of obtaining client IP address

* Update Functions.swift

* Update Functions.swift

* fix: addresses issues with pagination on profile pages

* fix: address issue of width on mobile devices for profile pages

* fix: remove more tags button when less than 2 tags

* fix: one last fix for tags display

* fix: make sure transactions are actually being committed

* fix: pagination on works and blogs pages

* Update version.ts

* Update Paginator.svelte

* Update version.ts
  • Loading branch information
Figments authored Feb 8, 2023
1 parent 1e6722a commit 08285a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Client/src/lib/ui/util/Paginator.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
export let totalItems: number;
export let loading = false;
let totalPages = Math.floor(totalItems / perPage);
let totalPages = Math.ceil(totalItems / perPage);
if (totalPages === 0) {
totalPages = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion Client/src/lib/util/constants/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "v1.0.0-beta.2";
export const VERSION = "v1.0.0-beta.3";

0 comments on commit 08285a1

Please sign in to comment.