0.4.1-alpha
This commit is contained in:
parent
0812d72c93
commit
d6ee596e61
@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
### Changed
|
||||
### Fixed
|
||||
|
||||
## [Winter 0.4.1-alpha] - 2023/01/01
|
||||
|
||||
### Added
|
||||
- Create Invite: Copy full invite URL.
|
||||
|
||||
@ -17,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Fixed
|
||||
- Emails, and passwords salts/hashes are now forgotten when deleting user is deleted.
|
||||
- User now redirects correctly when needed to login.
|
||||
- Themes now apply correctly on built app.
|
||||
|
||||
## [Winter 0.4.0-alpha] - 2022/12/17
|
||||
|
||||
|
4
frontend/env/.env.dev
vendored
4
frontend/env/.env.dev
vendored
@ -2,7 +2,7 @@ PORT=4200
|
||||
REACT_APP_API_URL="http://localhost:3000/v2"
|
||||
REACT_APP_CDN_URL="http://localhost:3000/assets"
|
||||
REACT_APP_WEBSITE_URL="http://localhost:4200"
|
||||
REACT_APP_REPO="https://github.com/acrdapp/app"
|
||||
REACT_APP_REPO_URL="https://github.com/acrdapp/app"
|
||||
REACT_APP_VERSION_NAME="Winter"
|
||||
REACT_APP_VERSION_NUMBER="0.4.1-prerelease"
|
||||
REACT_APP_VERSION_NUMBER="0.4.1-alpha"
|
||||
REACT_APP_ROOT_API_URL="http://localhost:3000"
|
4
frontend/env/.env.prod
vendored
4
frontend/env/.env.prod
vendored
@ -2,7 +2,7 @@ PORT=4200
|
||||
REACT_APP_API_URL="https://api.acrd.app/v2"
|
||||
REACT_APP_CDN_URL="https://api.acrd.app/assets"
|
||||
REACT_APP_WEBSITE_URL="https://acrd.app"
|
||||
REACT_APP_REPO="https://github.com/acrdapp/app"
|
||||
REACT_APP_REPO_URL="https://github.com/acrdapp/app"
|
||||
REACT_APP_VERSION_NAME="Winter"
|
||||
REACT_APP_VERSION_NUMBER="0.4.1-prerelease"
|
||||
REACT_APP_VERSION_NUMBER="0.4.1-alpha"
|
||||
REACT_APP_ROOT_API_URL="https://api.acrd.app"
|
@ -77,7 +77,7 @@ const ChannelSettingsPerms: React.FunctionComponent = () => {
|
||||
<div className="grid grid-cols-12 flex-col pt-14 px-10 pb-20 h-full mt-1">
|
||||
<div className="lg:col-span-3 col-span-12">
|
||||
<nav className="pr-10">
|
||||
{overrideRoles.map(r => (
|
||||
{overrideRoles.reverse().map(r => (
|
||||
<ContextMenuTrigger id={r.id} key={r.id}>
|
||||
<TabLink
|
||||
style={{ color: r.color }}
|
||||
|
@ -60,7 +60,7 @@ const HomePage: React.FunctionComponent = () => {
|
||||
Join <NumberFormat
|
||||
value={userCount}
|
||||
displayType={'text'}
|
||||
thousandSeparator={true} /> Accord users that have simplified their life.
|
||||
thousandSeparator={true} /> Accord users that simplified their life.
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
@ -90,17 +90,19 @@ const HomePage: React.FunctionComponent = () => {
|
||||
Create and customize your own messaging spaces for your friends.
|
||||
</ImageCard>
|
||||
<ImageCard src={Secure} title="Secure Messages">
|
||||
Accord is <a href={process.env.REACT_APP_REPO} target="_blank">open-source on GitHub</a>.
|
||||
Accord is <a href={process.env.REACT_APP_REPO_URL} target="_blank">open-source on GitHub</a>.
|
||||
(work in progress)
|
||||
</ImageCard>
|
||||
</section>
|
||||
|
||||
<footer className="fixed bottom-0 w-full">
|
||||
<p className="float-right p-2">
|
||||
<a href={`${process.env.REACT_APP_REPO_URL}/blob/dev/CHANGELOG.md`}
|
||||
className="float-right p-2"
|
||||
target="none">
|
||||
<strong className="primary">{process.env.REACT_APP_VERSION_NAME}</strong>
|
||||
<span> </span>
|
||||
<span className="secondary">{process.env.REACT_APP_VERSION_NUMBER}</span>
|
||||
</p>
|
||||
</a>
|
||||
</footer>
|
||||
</PageWrapper>
|
||||
);
|
||||
|
@ -1,5 +1,4 @@
|
||||
@import './styles/theme/theme-util.css';
|
||||
@import './styles/theme/accord-theme.css';
|
||||
@import './styles/output.css';
|
||||
@import '~@fortawesome/fontawesome-svg-core/styles.css';
|
||||
|
||||
|
2
frontend/types/dotenv.d.ts
vendored
2
frontend/types/dotenv.d.ts
vendored
@ -5,7 +5,7 @@ declare global {
|
||||
REACT_APP_API_URL: string;
|
||||
REACT_APP_CDN_URL: string;
|
||||
REACT_APP_WEBSITE_URL: string;
|
||||
REACT_APP_REPO: string;
|
||||
REACT_APP_REPO_URL: string;
|
||||
REACT_APP_VERSION_NAME: string;
|
||||
REACT_APP_VERSION_NUMBER: string;
|
||||
REACT_APP_ROOT_API_URL: string;
|
||||
|
Loading…
x
Reference in New Issue
Block a user